/*
Theme Name:   Saludprime
Theme URI:    https://saludprime.cl
Description:  Child theme de Divi para Saludprime.cl. Contiene la landing de captacion implementada segun el handoff de diseno (mobile first, radius 0, reglas de 2px, todo flush-left).
Author:       UPA Agencia
Template:     Divi
Version:      1.0.0
Text Domain:  saludprime
*/

/* ==========================================================================
   Tokens de marca — seccion "Design Tokens" del handoff
   ========================================================================== */
:root {
  --sp-bg:            #ffffff;
  --sp-surface:       #f1f4f7;
  --sp-text:          #1b2733;
  --sp-text-2:        #4a5560;
  --sp-text-3:        #7d8894;
  --sp-accent:        #0e4a80;
  --sp-accent-100:    #e8f0f7;
  --sp-accent-200:    #cfe0ef;
  --sp-accent-300:    #9dbfdc;
  --sp-accent-600:    #0b3b67;
  --sp-accent-700:    #082c4e;
  --sp-accent-2:      #17a3a8;
  --sp-accent-2-100:  #e6f5f6;
  --sp-accent-2-600:  #128288;
  --sp-teal-text:     #0f6f74;   /* turquesa legible sobre blanco (4.5:1) */
  --sp-font:          "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --sp-divider:       rgba(27, 39, 51, 0.28);
  --sp-pad:           16px;      /* padding lateral de seccion */
}
@supports (color: color-mix(in srgb, red 28%, transparent)) {
  :root { --sp-divider: color-mix(in srgb, #1b2733 28%, transparent); }
}

/* ==========================================================================
   Base — todo scopeado a .sp-landing para no tocar el resto del sitio
   ========================================================================== */
.sp-landing {
  font-family: var(--sp-font);
  color: var(--sp-text);
  background: var(--sp-bg);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.sp-landing *,
.sp-landing *::before,
.sp-landing *::after { box-sizing: border-box; }

/* Los resets van en :where() para que aporten especificidad cero: cualquier
   regla de componente les gana sin necesidad de !important. Sin esto,
   `.sp-landing a` (0,1,1) pisaba el color de `.sp-btn--primary` (0,1,0) y los
   botones quedaban con el texto heredado — blanco sobre blanco en el cierre. */
:where(.sp-landing) :where(h1, h2, h3) {
  font-family: var(--sp-font);
  font-weight: 800;
  color: var(--sp-text);
  margin: 0;
  padding: 0;
}
:where(.sp-landing) :where(p) { margin: 0; text-wrap: pretty; }
:where(.sp-landing) :where(img) { max-width: 100%; display: block; }
:where(.sp-landing) :where(a) { color: inherit; }
:where(.sp-landing) :where(ul) { list-style: none; margin: 0; padding: 0; }

/* Radius 0 y cero sombras: el sistema organiza con reglas, no con elevacion */
.sp-landing *,
.sp-landing input,
.sp-landing select,
.sp-landing button { border-radius: 0 !important; box-shadow: none !important; }

/* Foco de teclado de marca — nunca el azul del navegador */
.sp-landing a:focus-visible,
.sp-landing button:focus-visible,
.sp-landing input:focus-visible,
.sp-landing select:focus-visible,
.sp-landing summary:focus-visible {
  outline: 2px solid var(--sp-accent-2);
  outline-offset: 2px;
}
.sp-landing input:focus,
.sp-landing select:focus { border-color: var(--sp-accent); }

.sp-skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--sp-accent); color: #fff; padding: 12px 16px;
  font-weight: 800; text-decoration: none;
}
.sp-skip:focus { left: 0; }

.sp-vh {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Contenedor y secciones
   ========================================================================== */
.sp-wrap { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 var(--sp-pad); }
.sp-sec { padding: 32px 0; border-top: 2px solid var(--sp-divider); }
.sp-sec--flush { border-top: 0; }
.sp-sec--surface { background: var(--sp-surface); }
.sp-sec--accent { background: var(--sp-accent); color: #fff; }

.sp-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sp-text-3); margin-bottom: 10px;
}
.sp-h2 { font-size: 26px; line-height: 1.1; letter-spacing: -0.015em; margin-bottom: 20px; }
.sp-h3 { font-size: 17px; line-height: 1.2; letter-spacing: -0.015em; }
.sp-lead { font-size: 15px; line-height: 1.6; color: var(--sp-text-2); }
.sp-note { font-size: 11px; line-height: 1.5; color: var(--sp-text-3); }

/* ==========================================================================
   Botones
   ========================================================================== */
.sp-btn {
  display: flex; align-items: center; justify-content: flex-start; gap: 10px;
  width: 100%; min-height: 52px; padding: 14px 16px;
  font-family: var(--sp-font); font-weight: 800; font-size: 16px; line-height: 1.2;
  text-decoration: none; border: 0; cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.sp-btn--primary { background: var(--sp-accent); color: #fff; padding: 16px; }
.sp-btn--primary:hover { background: var(--sp-accent-600); color: #fff; }
.sp-btn--primary:active { background: var(--sp-accent-700); }
.sp-btn--wa { background: transparent; color: var(--sp-teal-text); border: 2px solid var(--sp-accent-2); }
.sp-btn--wa:hover { background: var(--sp-accent-2-100); color: var(--sp-teal-text); }
.sp-btn--light { background: #fff; color: var(--sp-teal-text); padding: 16px; }
.sp-btn--light:hover { background: var(--sp-accent-2-100); color: var(--sp-teal-text); }
.sp-btn svg { flex: 0 0 auto; }

/* ==========================================================================
   Header sticky
   ========================================================================== */
.sp-header {
  position: sticky; top: 0; z-index: 30;
  background: var(--sp-bg); border-bottom: 2px solid var(--sp-divider);
}
.sp-header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px var(--sp-pad); max-width: 430px; margin: 0 auto;
}
.sp-header__logo { display: block; flex: 0 0 auto; line-height: 0; }
.sp-header__logo img { height: 44px; width: auto; }
.sp-burger {
  width: 44px; height: 44px; flex: 0 0 auto;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  background: transparent; border: 2px solid var(--sp-divider);
  cursor: pointer; padding: 0 9px;
}
.sp-burger span { display: block; height: 2px; background: var(--sp-text); }
.sp-header__cta,
.sp-nav--desktop { display: none; }

/* Menu desplegable (movil) */
.sp-nav { border-bottom: 2px solid var(--sp-divider); background: var(--sp-surface); }
.sp-nav[hidden] { display: none; }
.sp-nav__inner { max-width: 430px; margin: 0 auto; width: 100%; display: flex; flex-direction: column; }
.sp-nav a {
  padding: 14px var(--sp-pad); border-bottom: 1px solid var(--sp-divider);
  text-decoration: none; color: var(--sp-text); font-weight: 600; font-size: 15px;
}
.sp-nav a:hover { background: var(--sp-accent-100); }
.sp-nav__cta {
  margin: var(--sp-pad); background: var(--sp-accent); color: #fff !important;
  font-weight: 800 !important; border-bottom: 0 !important;
}
.sp-nav__cta:hover { background: var(--sp-accent-600) !important; }

/* ==========================================================================
   Hero
   ========================================================================== */
.sp-hero { padding: 28px 0 24px; }
.sp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--sp-accent-2); color: var(--sp-teal-text);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 10px; margin-bottom: 18px;
}
.sp-hero h1 { font-size: 34px; line-height: 1.06; letter-spacing: -0.02em; margin-bottom: 14px; }
.sp-hero h1 span { color: var(--sp-accent); }
.sp-hero__p { margin-bottom: 20px; }
.sp-hero .sp-btn--primary { margin-bottom: 10px; }
.sp-hero .sp-btn--wa { margin-bottom: 20px; }

.sp-figure { border: 2px solid var(--sp-divider); overflow: hidden; background: var(--sp-surface); margin: 0; }
.sp-figure img { width: 100%; object-fit: cover; }
.sp-hero__img img { height: 300px; object-position: center 20%; }

/* Franja de confianza */
.sp-trust { border-top: 2px solid var(--sp-divider); border-bottom: 2px solid var(--sp-divider); background: var(--sp-accent-100); }
.sp-trust__list { max-width: 430px; margin: 0 auto; }
.sp-trust__list li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px var(--sp-pad); font-size: 13px; font-weight: 600; line-height: 1.4;
}
.sp-trust__list li + li { border-top: 1px solid var(--sp-accent-200); }
.sp-trust__list svg { flex: 0 0 auto; color: var(--sp-accent-2); margin-top: 2px; }

/* ==========================================================================
   El problema
   ========================================================================== */
.sp-porque p + p { margin-top: 14px; }
.sp-porque strong { color: var(--sp-text); font-weight: 700; }
.sp-porque__img { margin-top: 20px; }
.sp-porque__img img { width: 100%; height: 200px; object-fit: cover; border: 2px solid var(--sp-divider); }

/* ==========================================================================
   Que analizamos — las reglas SON el gap
   ========================================================================== */
.sp-cards { display: grid; gap: 2px; background: var(--sp-divider); }
.sp-card { background: var(--sp-bg); padding: 20px var(--sp-pad); }
.sp-card__num { font-weight: 800; font-size: 13px; color: var(--sp-accent-2); margin-bottom: 8px; }
.sp-card h3 { margin-bottom: 8px; }
.sp-card p { font-size: 14px; line-height: 1.55; color: var(--sp-text-2); }

/* ==========================================================================
   Como funciona
   ========================================================================== */
.sp-steps { display: flex; flex-direction: column; }
.sp-step { display: flex; gap: 14px; padding-bottom: 22px; }
.sp-step + .sp-step { border-top: 1px solid var(--sp-divider); padding-top: 22px; }
.sp-step:last-child { padding-bottom: 0; }
.sp-step__n {
  flex: 0 0 40px; height: 40px; background: var(--sp-accent); color: #fff;
  font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.sp-step h3 { margin-bottom: 6px; }
.sp-step p { font-size: 14px; line-height: 1.55; color: var(--sp-text-2); }
.sp-steps__img { margin-top: 32px; }
/* Foco alto: la asesora tiene los ojos al 22% de la altura del original y un
   recorte centrado se los come en desktop, donde la banda visible es solo la
   mitad de la foto. Con 8% la cara queda holgada en ambos tamanos. */
.sp-steps__img img {
  width: 100%; height: 210px; object-fit: cover; object-position: center 8%;
  border: 2px solid var(--sp-divider);
}

/* ==========================================================================
   Beneficios (bloque azul)
   ========================================================================== */
.sp-sec--accent .sp-kicker { color: var(--sp-accent-300); }
.sp-sec--accent .sp-h2 { color: #fff; }
.sp-benefits { display: flex; flex-direction: column; gap: 18px; }
.sp-benefit { border-top: 2px solid rgba(255,255,255,0.35); padding-top: 14px; }
.sp-benefit h3 { font-size: 16px; color: #fff; margin-bottom: 6px; }
.sp-benefit p { font-size: 14px; line-height: 1.55; color: #dce7f1; }

/* ==========================================================================
   Isapres
   ========================================================================== */
.sp-isapres .sp-kicker { margin-bottom: 14px; }
.sp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sp-chips li {
  border: 2px solid var(--sp-divider); padding: 8px 12px;
  font-weight: 800; font-size: 13px; color: var(--sp-text-2);
}
.sp-isapres .sp-note { margin-top: 14px; }

/* ==========================================================================
   Testimonios
   ========================================================================== */
.sp-quotes { display: grid; gap: 2px; background: var(--sp-divider); }
.sp-quote { background: var(--sp-bg); padding: 20px var(--sp-pad); margin: 0; }
.sp-quote blockquote { margin: 0 0 14px; font-size: 15px; line-height: 1.55; }
.sp-quote figcaption { display: flex; align-items: center; gap: 10px; font-size: 12px; line-height: 1.3; }
.sp-quote img { width: 40px; height: 40px; object-fit: cover; flex: 0 0 auto; }
.sp-quote strong { display: block; font-weight: 700; }
.sp-quote figcaption span { color: var(--sp-text-3); }
.sp-testimonios .sp-note { margin-top: 14px; }

/* ==========================================================================
   Formulario
   ========================================================================== */
.sp-form { display: flex; flex-direction: column; gap: 16px; }
.sp-field { display: block; border: 0; padding: 0; margin: 0; min-width: 0; }
.sp-label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 6px; padding: 0;
}
fieldset.sp-field > .sp-label { margin-bottom: 8px; }
.sp-req { color: var(--sp-accent-2); }

.sp-input {
  width: 100%; min-height: 48px; padding: 12px 14px;
  font-family: var(--sp-font); font-size: 15px; color: var(--sp-text);
  background: var(--sp-bg); border: 2px solid var(--sp-divider);
  appearance: none; -webkit-appearance: none;
}
.sp-input::placeholder { color: var(--sp-text-3); }
select.sp-input {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231b2733' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.sp-input--error { border-color: #b3261e; }

/* Chips de seleccion: radios reales, funcionan sin JS */
.sp-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sp-opt { position: relative; display: block; }
.sp-opt input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.sp-opt span {
  display: flex; align-items: center; min-height: 48px; padding: 10px 12px;
  border: 2px solid var(--sp-divider); background: transparent;
  font-weight: 800; font-size: 14px; color: var(--sp-text); text-align: left;
  transition: background-color .12s ease, border-color .12s ease;
}
.sp-opt:hover span { background: var(--sp-accent-100); }
.sp-opt input:focus-visible + span { outline: 2px solid var(--sp-accent-2); outline-offset: 2px; }
.sp-opt input:checked + span,
.sp-opt.is-on span {
  border-color: var(--sp-accent); background: var(--sp-accent-100); color: var(--sp-accent-700);
}

.sp-cargas-qty { margin-top: 8px; }
.sp-cargas-qty[hidden] { display: none; }

.sp-form .sp-btn--primary { min-height: 54px; }

.sp-alert {
  border: 2px solid var(--sp-accent-2); background: var(--sp-accent-2-100);
  padding: 14px 16px; font-size: 14px; font-weight: 600; color: var(--sp-teal-text);
}
.sp-alert p { margin: 0; }
.sp-alert .sp-btn { margin-top: 14px; }
.sp-alert--error { border-color: #b3261e; background: #fdecea; color: #8c1d18; }
.sp-alert--error ul { margin: 8px 0 0; padding-left: 18px; font-weight: 500; list-style: disc; }
.sp-privacy { font-size: 12px; line-height: 1.5; color: var(--sp-text-3); }
.sp-hp { position: absolute !important; left: -9999px !important; }

/* ==========================================================================
   FAQ — details/summary nativo, accesible y sin JS
   ========================================================================== */
.sp-faq__list { background: var(--sp-bg); border-top: 2px solid var(--sp-divider); }
.sp-faq details { border-bottom: 2px solid var(--sp-divider); }
.sp-faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  min-height: 56px; padding: 16px; cursor: pointer;
  font-weight: 800; font-size: 15px; line-height: 1.25; color: var(--sp-text);
  list-style: none;
}
.sp-faq summary::-webkit-details-marker { display: none; }
.sp-faq summary::after { content: "+"; color: var(--sp-accent-2); font-size: 20px; line-height: 1; flex: 0 0 auto; }
.sp-faq details[open] summary::after { content: "\2013"; }
.sp-faq summary:hover { background: var(--sp-accent-100); }
.sp-faq details p { font-size: 14px; line-height: 1.6; color: var(--sp-text-2); padding: 0 16px 18px; }

/* ==========================================================================
   Cierre
   ========================================================================== */
.sp-cierre { border-top: 2px solid var(--sp-divider); }
/* Mismo caso que la foto de los pasos: las caras estan arriba (los ojos del
   doctor al 19%) y en movil el recorte centrado empieza al 21%. */
.sp-cierre__img img { width: 100%; height: 220px; object-fit: cover; object-position: center 10%; }
.sp-cierre__box { background: var(--sp-accent-2); color: #fff; padding: 28px 0; }
.sp-cierre__box h2 { font-size: 26px; line-height: 1.1; letter-spacing: -0.015em; color: #fff; margin-bottom: 12px; }
.sp-cierre__box p { font-size: 15px; line-height: 1.6; color: #e2f4f5; margin-bottom: 20px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.sp-footer { background: var(--sp-text); color: #fff; padding: 28px 0 100px; }
.sp-footer__mark { font-weight: 800; font-size: 20px; letter-spacing: -0.01em; margin-bottom: 4px; }
.sp-footer__mark span { color: var(--sp-accent-2); }
.sp-footer__tag { font-size: 13px; color: #a9b3bd; margin-bottom: 20px; }
.sp-footer__contact {
  border-top: 2px solid rgba(255,255,255,0.25); padding-top: 16px; margin-bottom: 16px;
  display: flex; flex-direction: column; gap: 8px; font-size: 14px;
}
.sp-footer__contact a { color: #fff; text-decoration: none; font-weight: 600; }
.sp-footer__contact a:hover { text-decoration: underline; }
.sp-footer__contact a.sp-wa { color: var(--sp-accent-2); }
.sp-footer__contact span { color: #a9b3bd; }
.sp-footer__legal { font-size: 12px; line-height: 1.55; color: #a9b3bd; margin-bottom: 16px; }
.sp-footer__links { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; }
.sp-footer__links a { color: #a9b3bd; }
.sp-footer__links a:hover { color: #fff; }

/* ==========================================================================
   Barra fija inferior — solo movil
   ========================================================================== */
.sp-bottombar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 30;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--sp-divider); border-top: 2px solid var(--sp-divider);
}
.sp-bottombar a {
  display: flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 0 12px; text-decoration: none; color: #fff;
  font-weight: 800; font-size: 14px;
}
.sp-bottombar__plan { background: var(--sp-accent); }
.sp-bottombar__plan:hover { background: var(--sp-accent-600); color: #fff; }
.sp-bottombar__wa { background: var(--sp-accent-2); }
.sp-bottombar__wa:hover { background: var(--sp-accent-2-600); color: #fff; }

/* Anclas por debajo del header sticky */
.sp-landing [id] { scroll-margin-top: 72px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

/* ==========================================================================
   Desktop — misma jerarquia, grid de 12 columnas
   ========================================================================== */
@media (min-width: 768px) {
  :root { --sp-pad: 40px; }

  .sp-wrap,
  .sp-header__bar,
  .sp-nav__inner,
  .sp-trust__list { max-width: 1160px; }

  .sp-sec { padding: 64px 0; }
  .sp-h2 { font-size: 34px; margin-bottom: 28px; }
  .sp-kicker { font-size: 12px; }

  /* Header: nav inline + CTA, sin hamburguesa */
  .sp-burger { display: none; }
  .sp-nav--mobile { display: none !important; }
  .sp-nav--desktop { display: flex; align-items: center; gap: 28px; }
  .sp-nav--desktop a {
    padding: 0; border: 0; background: none; font-size: 15px;
    font-weight: 600; text-decoration: none; color: var(--sp-text);
  }
  .sp-nav--desktop a:hover { color: var(--sp-accent); background: none; }
  .sp-header__cta {
    display: flex; align-items: center; width: auto; min-height: 44px;
    padding: 12px 20px; font-size: 15px; background: var(--sp-accent);
    color: #fff; font-weight: 800; text-decoration: none;
  }
  .sp-header__cta:hover { background: var(--sp-accent-600); color: #fff; }
  .sp-header__bar { padding-top: 12px; padding-bottom: 12px; }
  .sp-header__logo img { height: 48px; }

  /* Hero a dos columnas: texto izquierda, foto derecha */
  .sp-hero { padding: 56px 0; }
  .sp-hero__grid { display: grid; grid-template-columns: 6fr 6fr; gap: 48px; align-items: center; }
  .sp-hero h1 { font-size: 52px; }
  .sp-hero__p { font-size: 17px; max-width: 46ch; }
  .sp-hero__actions { display: flex; gap: 12px; }
  .sp-hero .sp-btn { width: auto; min-width: 250px; margin-bottom: 0; }
  .sp-hero__img { margin: 0; height: 100%; }
  .sp-hero__img img { height: 100%; min-height: 460px; }

  .sp-trust__list { display: grid; grid-template-columns: repeat(3, 1fr); }
  .sp-trust__list li { font-size: 14px; padding: 16px var(--sp-pad); }
  .sp-trust__list li + li { border-top: 0; border-left: 1px solid var(--sp-accent-200); }

  /* Problema a dos columnas */
  .sp-porque__grid { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: center; }
  .sp-porque .sp-lead { font-size: 16px; }
  .sp-porque__img { margin-top: 0; }
  .sp-porque__img img { height: 340px; }

  /* Tarjetas y pasos en 4 columnas */
  .sp-cards { grid-template-columns: repeat(4, 1fr); }
  .sp-card { padding: 28px 24px; }
  .sp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--sp-divider); }
  .sp-step { flex-direction: column; gap: 14px; background: var(--sp-bg); padding: 28px 24px !important; border-top: 0 !important; }
  .sp-steps__img img { height: 360px; }

  .sp-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

  .sp-quotes { grid-template-columns: 1fr 1fr; }
  .sp-quote { padding: 28px 24px; }

  /* Formulario en columna de ~560px */
  .sp-formulario__inner { max-width: 560px; }

  /* FAQ en columna legible */
  .sp-faq__inner { max-width: 760px; }
  .sp-faq summary { font-size: 17px; padding: 20px; }
  .sp-faq details p { font-size: 15px; padding: 0 20px 22px; }

  /* Cierre a dos columnas */
  .sp-cierre__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
  .sp-cierre__img img { height: 100%; min-height: 420px; }
  .sp-cierre__box { display: flex; flex-direction: column; justify-content: center; padding: 56px var(--sp-pad); }
  .sp-cierre__box .sp-wrap { max-width: none; padding: 0; }
  .sp-cierre__box h2 { font-size: 34px; }
  .sp-cierre__box .sp-btn { width: auto; align-self: flex-start; min-width: 300px; }

  /* Footer */
  .sp-footer { padding: 48px 0; }
  .sp-footer__grid { display: grid; grid-template-columns: 5fr 4fr 3fr; gap: 48px; align-items: start; }
  .sp-footer__contact { border-top: 0; padding-top: 0; }
  .sp-footer__mark { font-size: 24px; }

  /* La barra fija se oculta en >=768px: el CTA vive en el header */
  .sp-bottombar { display: none; }
  .sp-landing [id] { scroll-margin-top: 96px; }
}

@media (min-width: 1024px) {
  .sp-hero h1 { font-size: 60px; }
}

@media print {
  .sp-header, .sp-bottombar, .sp-nav { display: none !important; }
  .sp-landing { font-size: 12px; }
}
