/* =========================================================================
   ZONA CONTACTO — style.css
   Sistema de diseño · "El pin sobre el mapa".
   Stack: HTML5 + CSS moderno (custom properties, grid, flexbox). Sin frameworks.
   Premium · ritmo de contraste (oscuro/cálido/claro) · profundidad 3D sutil.
   ========================================================================= */

/* Fuentes locales: los archivos variables cubren únicamente los pesos usados. */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* -------------------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Oscuros (alternan para dar ritmo) */
  --ink:         #0E0E10;   /* carbón principal */
  --ink-warm:    #16120D;   /* oscuro con matiz cálido */
  --negro:       #0A0A0B;   /* base más profunda (footer) */

  /* Claros (cortan la monotonía) */
  --hueso:       #F4F0E8;   /* crema/hueso */
  --hueso-2:     #ECE6D9;   /* hueso un punto más cálido */
  --blanco-puro: #FFFFFF;
  --tinta:       #15120E;   /* texto sobre claro */
  --tinta-soft:  #5C5648;   /* texto secundario sobre claro */

  /* Marca */
  --amarillo:    #FBBA3A;
  --amarillo-lt: #FFC24B;
  --amarillo-dp: #C97E12;   /* ámbar profundo para texto sobre claro */
  --blanco:      #FFFFFF;

  /* Texto sobre oscuro */
  --texto:       #ACA69C;   /* secundario (entibiado) */
  --texto-soft:  #7E786E;

  /* Bordes y superficies (sobre oscuro) */
  --borde:       rgba(255, 255, 255, 0.08);
  --borde-hov:   rgba(251, 186, 58, 0.38);
  --surface:     rgba(255, 255, 255, 0.04);
  --surface-2:   rgba(255, 255, 255, 0.07);
  /* Sobre claro */
  --borde-lt:    rgba(21, 18, 14, 0.10);
  --borde-lt-hov:rgba(201, 126, 18, 0.45);

  /* Compat (clases heredadas de otras páginas) */
  --color-bg:          var(--ink);
  --color-bg-alt:      var(--ink-warm);
  --color-surface:     var(--surface);
  --color-surface-2:   var(--surface-2);
  --color-amarillo:    var(--amarillo);
  --color-amarillo-lt: var(--amarillo-lt);
  --color-blanco:      var(--blanco);
  --color-texto:       var(--texto);
  --color-texto-soft:  var(--texto-soft);
  --color-borde:       var(--borde);
  --color-borde-hov:   var(--borde-hov);

  /* Gradientes / glows */
  --grad-amarillo: linear-gradient(135deg, #FFC24B 0%, #FBBA3A 100%);
  --grad-texto:    linear-gradient(120deg, #FFFFFF 0%, #C9C4BA 100%);

  /* Grilla de mapa (firma) */
  --map-line:      rgba(251, 186, 58, 0.055);
  --map-line-lt:   rgba(21, 18, 14, 0.045);
  --map-size:      46px;

  /* Tipografía */
  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Escala fluida */
  --fs-display: clamp(2rem, 5.2vw, 4rem);
  --fs-h1:      clamp(1.75rem, 4.1vw, 2.9rem);
  --fs-h2:      clamp(1.5rem, 3.2vw, 2.35rem);
  --fs-h3:      clamp(1rem, 1.58vw, 1.22rem);
  --fs-lead:    clamp(0.95rem, 1.42vw, 1.13rem);
  --fs-body:    1rem;
  --fs-sm:      0.92rem;
  --fs-xs:      0.78rem;

  /* Espaciado */
  --space-section: clamp(4.5rem, 9.5vw, 8rem);
  --container:     1200px;
  --container-narrow: 760px;
  --gutter:        clamp(1.1rem, 4vw, 2rem);

  /* Radios */
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Sombras */
  --shadow-sm:  0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-md:  0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-lg:  0 34px 80px rgba(0, 0, 0, 0.58);
  --shadow-glow: 0 8px 18px rgba(251, 186, 58, 0.18);
  --shadow-lt:  0 14px 36px rgba(21, 18, 14, 0.10);

  /* Transiciones — una sola curva estándar para todo el sitio */
  --ease:   cubic-bezier(0.32, 0.72, 0, 1);
  --t-fast: 0.15s var(--ease);   /* press / feedback inmediato */
  --t:      0.25s var(--ease);   /* hover, acordeón, UI general  */
  --t-slow: 0.45s var(--ease);   /* entradas poco frecuentes (banner cookies) */
  --t-reveal: 0.5s var(--ease);  /* reveals de scroll */

  --nav-h: 74px;
}

/* -------------------------------------------------------------------------
   2. RESET / BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--texto);
  background-color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, button { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--blanco);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.02em;
}

strong { color: var(--blanco); font-weight: 600; }

::selection { background: var(--amarillo); color: #0A0A0B; }

:focus-visible {
  outline: 2px solid var(--amarillo-lt);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  background: var(--amarillo);
  color: #0A0A0B;
  padding: 0.7rem 1.3rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  z-index: 2000;
  transition: top var(--t);
}
.skip-link:focus { top: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* -------------------------------------------------------------------------
   3. LAYOUT + RITMO DE SECCIONES
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* Variantes de fondo — la alternancia es lo que rompe la "pared larga" */
.section--warm  { background: var(--ink-warm); }
.section--alt   { background: var(--ink-warm); }        /* compat */
.section--light {
  background: var(--hueso);
  color: var(--tinta);
}
.section--light h1, .section--light h2,
.section--light h3, .section--light h4 { color: #100D09; }
.section--light p { color: var(--tinta-soft); }
.section--light strong { color: #100D09; }

/* Grilla de mapa (firma) como textura de fondo */
.has-map { position: relative; isolation: isolate; }
.has-map::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--map-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--map-line) 1px, transparent 1px);
  background-size: var(--map-size) var(--map-size);
  -webkit-mask: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 80%);
          mask: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 80%);
  pointer-events: none;
}
.section--light.has-map::before {
  background-image:
    linear-gradient(var(--map-line-lt) 1px, transparent 1px),
    linear-gradient(90deg, var(--map-line-lt) 1px, transparent 1px);
}

/* Cabeceras */
.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* Eyebrow con el pin de marca como glifo (firma) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--amarillo-lt);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: none;
}
.section--light .eyebrow { color: var(--amarillo-dp); }

.section-head h2 { font-size: var(--fs-h2); margin-bottom: 0.9rem; }
.section-head p { font-size: var(--fs-lead); color: var(--texto); max-width: 58ch; }
.section--light .section-head p { color: var(--tinta-soft); }
.section-head--center p { margin-inline: auto; }

.text-grad {
  background: var(--grad-amarillo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* -------------------------------------------------------------------------
   4. BOTONES
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
  white-space: nowrap;
  border: 1px solid transparent;
}
.icon { display: inline-block; width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; }
.btn svg, .btn i { width: 1.15em; height: 1.15em; flex-shrink: 0; font-size: 1.1em; }
.btn i { display: inline-flex; align-items: center; }
/* Feedback de press: gana también sobre el transform del hover */
.btn:active { transform: scale(0.97); }
@media (hover: hover) {
  .btn:active:hover { transform: scale(0.97); }
}

.btn--primary {
  background: var(--amarillo);
  color: #0A0A0B;
  box-shadow: var(--shadow-glow);
}
@media (hover: hover) {
  .btn--primary:hover {
    transform: translateY(-2px);
    background: var(--amarillo-lt);
    box-shadow: 0 10px 24px rgba(251, 186, 58, 0.24);
  }
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--blanco);
  border-color: var(--borde);
}
@media (hover: hover) {
  .btn--ghost:hover {
    border-color: var(--borde-hov);
    background: var(--surface-2);
    transform: translateY(-2px);
  }
}
/* Ghost sobre fondo claro */
.section--light .btn--ghost {
  background: transparent;
  color: var(--tinta);
  border-color: var(--borde-lt);
  backdrop-filter: none;
}
@media (hover: hover) {
  .section--light .btn--ghost:hover { border-color: var(--borde-lt-hov); background: rgba(21,18,14,0.04); }
}

.btn--lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--wa { gap: 0.45rem; }

/* -------------------------------------------------------------------------
   5. NAV
   ------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background var(--t), backdrop-filter var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.74);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--borde);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 32px; width: auto; }

.nav__links { display: flex; align-items: center; gap: 0.35rem; }
.nav__link {
  position: relative;
  padding: 0.55rem 0.9rem;
  font-size: 1.125rem;             /* 18px */
  font-weight: 500;
  color: var(--texto);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.3rem;
  height: 2px;
  background: var(--grad-amarillo);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
@media (hover: hover) {
  .nav__link:hover { color: var(--blanco); }
}
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
@media (hover: hover) {
  .nav__link:hover::after { transform: scaleX(1); }
}
.nav__link[aria-current="page"] { color: var(--blanco); }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.nav__cta-mobile { display: none; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--borde);
  background: var(--surface);
}
.nav__toggle span { position: relative; width: 20px; height: 2px; background: var(--blanco); border-radius: 2px; transition: background var(--t-fast); }
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 20px; height: 2px; background: var(--blanco); border-radius: 2px; transition: transform var(--t);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   6. HERO  (contenido a la izquierda · imagen real a la derecha)
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 4.2rem));
  padding-bottom: clamp(3rem, 7vw, 5.8rem);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(251,186,58,0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #11100E 0%, var(--ink) 58%, #17120B 100%);
  background-size: 100% 100%, auto;
}

.hero__scene {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__content { max-width: 650px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0 0 0.65rem;
  border-bottom: 1px solid rgba(251,186,58,0.55);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--amarillo-lt);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.35rem, 5.8vw, 5.25rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
  max-width: 10.5ch;
  text-wrap: balance;
}
.hero__sub { font-size: var(--fs-lead); max-width: 52ch; margin-bottom: 1.8rem; color: #D0C8BA; text-wrap: pretty; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  margin-top: clamp(1.6rem, 4vw, 2.2rem);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: #D0C8BA;
}
.hero__proof span {
  position: relative;
  padding-left: 1rem;
  font-size: var(--fs-sm);
}
.hero__proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amarillo);
}

/* Imagen real del hero, sobria y protagonista */
.hero__media {
  position: relative;
}
.hero__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #201913;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}
.hero__frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.hero__frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(14,14,16,0.18));
  pointer-events: none;
}
.hero__caption {
  width: min(86%, 360px);
  margin: -2.15rem auto 0;
  position: relative;
  z-index: 2;
  padding: 1rem 1.15rem;
  background: var(--amarillo);
  color: #211503;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  line-height: 1.35;
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* -------------------------------------------------------------------------
   7. MARQUEE  (sello de marca en movimiento)
   ------------------------------------------------------------------------- */
.marquee {
  background: var(--amarillo);
  color: #2A1B05;
  overflow: hidden;
  border-block: 1px solid rgba(0,0,0,0.12);
  padding-block: 0.85rem;
  position: relative;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 0;
  will-change: transform;
  animation: marquee 32s linear infinite;
}
@media (hover: hover) {
  .marquee:hover .marquee__track { animation-play-state: paused; }
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding-inline: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
}
.marquee__track span::after {
  content: "";
  width: 16px; height: 20px;
  background: #2A1B05;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 32'%3E%3Cpath fill-rule='evenodd' d='M12 0C5.9 0 1 4.9 1 11c0 8 11 21 11 21s11-13 11-21C23 4.9 18.1 0 12 0Zm0 15a4 4 0 1 1 0-8 4 4 0 0 1 0 8Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 32'%3E%3Cpath fill-rule='evenodd' d='M12 0C5.9 0 1 4.9 1 11c0 8 11 21 11 21s11-13 11-21C23 4.9 18.1 0 12 0Zm0 15a4 4 0 1 1 0-8 4 4 0 0 1 0 8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.55;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------------------------------------------------------------------------
   8. GRIDS / TARJETAS
   ------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

/* will-change solo durante la interacción: lo aplica el cursor, no una capa permanente */
.tilt { transform-style: preserve-3d; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }

.card {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--borde);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(130% 110% at 0% 0%, rgba(255,255,255,0.05), transparent 50%);
  pointer-events: none; opacity: 0; transition: opacity var(--t);
}
@media (hover: hover) {
  .card:hover { border-color: var(--borde-hov); box-shadow: var(--shadow-md); }
}
@media (hover: hover) {
  .card:hover::before { opacity: 1; }
}

.card__ico {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(251,186,58,0.12);
  border: 1px solid rgba(251,186,58,0.25);
  color: var(--amarillo-lt);
  margin-bottom: 1.2rem;
}
.card__ico svg { width: 26px; height: 26px; }
.card h3 { font-size: var(--fs-h3); margin-bottom: 0.6rem; }
.card p { font-size: var(--fs-sm); color: var(--texto); }

/* Tarjetas sobre fondo claro */
.section--light .card {
  background: var(--blanco-puro);
  border-color: var(--borde-lt);
  box-shadow: var(--shadow-lt);
}
@media (hover: hover) {
  .section--light .card:hover { border-color: var(--borde-lt-hov); box-shadow: 0 20px 50px rgba(21,18,14,0.12); }
}
.section--light .card p { color: var(--tinta-soft); }
.section--light .card__ico {
  background: rgba(251,186,58,0.16);
  border-color: rgba(201,126,18,0.3);
  color: var(--amarillo-dp);
}

/* -------------------------------------------------------------------------
   9. CÓMO FUNCIONA (pasos — timeline)
   ------------------------------------------------------------------------- */
.steps {
  list-style: none;               /* (cambio #3) sin numeritos laterales del <ol> */
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  counter-reset: none;
}
.step {
  position: relative;
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius);
  background: var(--blanco-puro);
  border: 1px solid var(--borde-lt);
  box-shadow: var(--shadow-lt);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
@media (hover: hover) {
  .step:hover { border-color: var(--borde-lt-hov); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(21,18,14,0.12); }
}
.step__num {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
  color: var(--amarillo-dp);
  margin-bottom: 0.9rem;
  display: block;
  letter-spacing: -0.03em;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.45rem; color: #100D09; }
.step p { font-size: var(--fs-sm); color: var(--tinta-soft); }

/* -------------------------------------------------------------------------
   10. CONTADORES (números que suben en viewport)
   ------------------------------------------------------------------------- */
.counters__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.6rem, 4vw, 2.5rem);
  text-align: center;
}
.counter__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad-amarillo);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: inline-flex;
  align-items: baseline;
}
.counter__num .suf { font-size: 0.5em; margin-left: 0.05em; -webkit-text-fill-color: var(--amarillo); }
.counter__lbl { margin-top: 0.6rem; font-size: var(--fs-sm); color: var(--texto); max-width: 22ch; margin-inline: auto; }

/* -------------------------------------------------------------------------
   11. CTA FINAL (banda)
   ------------------------------------------------------------------------- */
.cta-band { position: relative; background: var(--ink-warm); }
.cta-band__box {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(2.8rem, 6vw, 4.8rem) clamp(1.5rem, 5vw, 4rem);
  text-align: left;
  background: var(--amarillo);
  color: #241701;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.cta-band__box::before {
  content: none;
}
.cta-band__box::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: #20140A;
  pointer-events: none;
  opacity: 0.95;
}
.cta-band .eyebrow { color: #724707; margin-bottom: 0; }
.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3.9rem);
  margin-bottom: 0;
  max-width: 13ch;
  color: #211503;
  letter-spacing: -0.035em;
}
.cta-band p {
  font-size: var(--fs-lead);
  max-width: 45ch;
  margin: 0 0 1.4rem;
  color: #5A3D0A;
}
.cta-band .hero__cta {
  justify-content: flex-start;
  transform: none;
}
.cta-band .btn--primary {
  background: #15100A;
  color: var(--blanco);
  box-shadow: none;
}
@media (hover: hover) {
  .cta-band .btn--primary:hover { background: #241A10; box-shadow: none; }
}
.cta-band .btn--ghost {
  background: rgba(255,255,255,0.20);
  color: #211503;
  border-color: rgba(33,21,3,0.18);
}
@media (min-width: 860px) {
  .cta-band__box { grid-template-columns: 0.95fr 1.05fr; }
  .cta-band .hero__cta { justify-content: flex-end; }}

/* -------------------------------------------------------------------------
   12. PÁGINA INTERIOR — encabezado
   ------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 5.5rem));
  padding-bottom: clamp(2rem, 5vw, 3rem);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 520px; height: 320px;
  border-radius: 50%;
  background: rgba(251,186,58,0.12);
  filter: blur(90px);
  top: -80px; left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.page-hero h1 { font-size: var(--fs-h1); margin-bottom: 1rem; }
.page-hero p { font-size: var(--fs-lead); max-width: 58ch; margin-inline: auto; }

/* -------------------------------------------------------------------------
   13. NOSOTROS — prosa + features
   ------------------------------------------------------------------------- */
.prose-block { display: grid; gap: clamp(2rem, 5vw, 3rem); }
.prose-block h2 { font-size: var(--fs-h3); margin-bottom: 0.7rem; }
.prose-block p { font-size: var(--fs-body); max-width: 68ch; }

.why-list { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.why-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--borde);
  font-size: var(--fs-sm);
  color: var(--blanco);
}
.why-list li svg { width: 22px; height: 22px; color: var(--amarillo); flex-shrink: 0; margin-top: 1px; }
.section--light .why-list li { background: var(--blanco-puro); border-color: var(--borde-lt); color: var(--tinta); box-shadow: var(--shadow-lt); }

/* -------------------------------------------------------------------------
   14. PLANES
   ------------------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: 1fr; gap: 1.3rem; align-items: stretch; }
.plan {
  position: relative;
  display: flex; flex-direction: column;
  padding: clamp(1.8rem, 3vw, 2.3rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--borde);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
@media (hover: hover) {
  .plan:hover { transform: translateY(-4px); border-color: var(--borde-hov); box-shadow: var(--shadow-md); }
}
.plan--featured {
  border-color: rgba(251,186,58,0.45);
  background: linear-gradient(170deg, rgba(251,186,58,0.10), rgba(255,255,255,0.02));
  box-shadow: var(--shadow-glow);
}
.plan__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-amarillo); color: #0A0A0B;
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-xs);
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: var(--radius-pill); white-space: nowrap;
}
.plan__name { font-family: var(--font-display); font-size: 1.4rem; color: var(--blanco); font-weight: 700; }
.plan__tag { font-size: var(--fs-sm); color: var(--amarillo-lt); margin-bottom: 1.3rem; }
.plan__price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.25rem; }
.plan__price .amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--blanco); }
.plan__price .per { font-size: var(--fs-sm); color: var(--texto-soft); }
.plan__activation {
  font-size: var(--fs-sm); color: var(--texto);
  padding-bottom: 1.3rem; margin-bottom: 1.3rem;
  border-bottom: 1px solid var(--borde);
}
.plan__activation strong { color: var(--amarillo-lt); }
.plan__features { display: grid; gap: 0.7rem; margin-bottom: 1.8rem; flex: 1; }
.plan__features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: var(--fs-sm); }
.plan__features li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; }
.plan__features .yes { color: var(--blanco); }
.plan__features .yes svg { color: var(--amarillo); }
.plan__features .no { color: var(--texto-soft); }
.plan__features .no svg { color: var(--texto-soft); opacity: 0.6; }

.plan-note { text-align: center; margin-top: 2.4rem; font-size: var(--fs-sm); color: var(--texto); }
.plan-note a { color: var(--amarillo-lt); font-weight: 600; }
@media (hover: hover) {
  .plan-note a:hover { text-decoration: underline; }
}

/* Planes sobre fondo claro (contraste de sección) */
.section--light .plan { background: var(--blanco-puro); border-color: var(--borde-lt); box-shadow: var(--shadow-lt); }
@media (hover: hover) {
  .section--light .plan:hover { border-color: var(--borde-lt-hov); box-shadow: 0 22px 50px rgba(21,18,14,0.12); }
}
.section--light .plan--featured {
  background: linear-gradient(170deg, #fff, #fdf4e4);
  border-color: rgba(251,186,58,0.5);
  box-shadow: 0 22px 55px rgba(251,186,58,0.20);
}
.section--light .plan__name { color: #100D09; }
.section--light .plan__tag { color: var(--amarillo-dp); }
.section--light .plan__price .amount { color: #100D09; }
.section--light .plan__price .per { color: var(--tinta-soft); }
.section--light .plan__activation { color: var(--tinta-soft); border-bottom-color: var(--borde-lt); }
.section--light .plan__activation strong { color: var(--amarillo-dp); }
.section--light .plan__features .yes { color: var(--tinta); }
.section--light .plan__features .yes svg { color: var(--amarillo-dp); }
.section--light .plan__features .no { color: #9a9488; }
.section--light .plan__features .no svg { color: #9a9488; }
.section--light .plan-note { color: var(--tinta-soft); }
.section--light .plan-note a { color: var(--amarillo-dp); }

/* -------------------------------------------------------------------------
   15. FAQ (acordeón)
   ------------------------------------------------------------------------- */
.faq { display: grid; gap: 0.7rem; max-width: 820px; margin-inline: auto; }
.faq__item {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--borde);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq__item.is-open { border-color: var(--borde-hov); }
@media (hover: hover) {
  .faq__item:hover { border-color: var(--borde-hov); }
}
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; padding: 1.2rem 1.4rem;
  text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: var(--blanco); cursor: pointer; list-style: none;
}
.faq__q::marker { content: ""; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q .ico {
  flex-shrink: 0; width: 26px; height: 26px;
  display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--borde); position: relative;
  transition: transform var(--t), background var(--t), border-color var(--t);
}
.faq__q .ico::before, .faq__q .ico::after {
  content: ""; position: absolute; background: var(--amarillo-lt); border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.faq__q .ico::before { width: 11px; height: 2px; }
.faq__q .ico::after  { width: 2px; height: 11px; }
.faq__item.is-open .faq__q .ico { background: rgba(251,186,58,0.16); border-color: var(--borde-hov); transform: rotate(45deg); }
.faq__item.is-open .faq__q .ico::after { transform: scaleY(0); opacity: 0; }
.faq__a {
  padding: 0 1.4rem;
  overflow: hidden;
}
.faq__a p { font-size: var(--fs-sm); color: var(--texto); max-width: 70ch; padding-bottom: 1.3rem; }
/* Acordeón por grid-template-rows (0fr → 1fr): el motor CSS interpola
   la altura sin que JS mida scrollHeight ni fuerce reflow.
   Solo aplica con JS activo (.faq--js); sin JS, <details> funciona nativo. */
.faq--js .faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t);
}
.faq--js .faq__a p {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity var(--t);
}
.faq--js .faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq--js .faq__item.is-open .faq__a p { opacity: 1; }

/* -------------------------------------------------------------------------
   16. CONTACTO — datos + formulario
   ------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.4rem, 4vw, 2.5rem); align-items: start; }
.contact-info { display: grid; gap: 0.9rem; }
.contact-info__item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.1rem 1.2rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--borde);
  transition: border-color var(--t), transform var(--t);
}
@media (hover: hover) {
  .contact-info__item:hover { border-color: var(--borde-hov); transform: translateY(-2px); }
}
.contact-info__ico {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 12px;
  background: rgba(251,186,58,0.12); color: var(--amarillo-lt);
}
.contact-info__ico svg { width: 22px; height: 22px; }
.contact-info__item .lbl { display: block; font-size: var(--fs-xs); color: var(--texto-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1px; }
.contact-info__item .val { display: block; color: var(--blanco); font-weight: 500; font-size: var(--fs-sm); word-break: break-word; }

.contact-socials { display: flex; gap: 0.7rem; margin-top: 0.4rem; }
.contact-socials a {
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 12px; background: var(--surface); border: 1px solid var(--borde);
  color: var(--texto); transition: color var(--t), border-color var(--t), transform var(--t), background var(--t);
}
@media (hover: hover) {
  .contact-socials a:hover { color: var(--amarillo-lt); border-color: var(--borde-hov); background: var(--surface-2); transform: translateY(-2px); }
}
.contact-socials svg { width: 22px; height: 22px; }

.form-wrap {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--borde);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: var(--fs-sm); font-weight: 500; color: var(--blanco); margin-bottom: 0.45rem; }
.field label .req { color: var(--amarillo); }
.field input, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.25); border: 1px solid var(--borde); color: var(--blanco);
  transition: border-color var(--t), background var(--t);
}
.field input::placeholder, .field textarea::placeholder { color: var(--texto-soft); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amarillo); background: rgba(0,0,0,0.35); }
.field textarea { resize: vertical; min-height: 130px; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form-status { margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-size: var(--fs-sm); display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(251,186,58,0.12); border: 1px solid rgba(251,186,58,0.35); color: var(--amarillo-lt); }
.form-status.err { background: rgba(255,80,80,0.1); border: 1px solid rgba(255,80,80,0.35); color: #ff8a8a; }

/* -------------------------------------------------------------------------
   17. PÁGINAS DE SISTEMA (gracias / 404)
   ------------------------------------------------------------------------- */
.state {
  min-height: calc(100vh - var(--nav-h));
  display: grid; place-items: center; text-align: center;
  padding: calc(var(--nav-h) + 3rem) var(--gutter) 4rem;
  position: relative; isolation: isolate; overflow: hidden;
}
.state::before {
  content: ""; position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  background: rgba(251,186,58,0.14); filter: blur(100px);
  top: 0; left: 50%; transform: translateX(-50%); z-index: -1;
}
.state__inner { max-width: 560px; }
.state__pin { width: 88px; height: 88px; margin: 0 auto 1.8rem; filter: drop-shadow(0 14px 30px rgba(251,186,58,0.4)); }
.state__code {
  font-family: var(--font-display); font-size: clamp(4.5rem, 16vw, 8rem); font-weight: 800; line-height: 1;
  background: var(--grad-amarillo); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 0.5rem;
}
.state h1 { font-size: var(--fs-h1); margin-bottom: 1rem; }
.state p { font-size: var(--fs-lead); margin-bottom: 2rem; }
.state .hero__cta { justify-content: center; }

/* -------------------------------------------------------------------------
   18. PÁGINAS LEGALES
   ------------------------------------------------------------------------- */
.legal { padding-top: calc(var(--nav-h) + clamp(2.5rem, 7vw, 4rem)); padding-bottom: var(--space-section); }
.legal__doc { max-width: var(--container-narrow); margin-inline: auto; }
.legal__updated { font-size: var(--fs-sm); color: var(--texto-soft); font-style: italic; margin-bottom: 2.5rem; }
.legal h1 { font-size: var(--fs-h1); margin-bottom: 0.8rem; line-height: 1.15; }
.legal h2 {
  font-size: 1.25rem; color: var(--blanco);
  margin: 2.4rem 0 0.9rem; padding-top: 1.6rem; border-top: 1px solid var(--borde);
}
.legal h2:first-of-type { border-top: none; padding-top: 0; }
.legal p { margin-bottom: 1rem; font-size: var(--fs-body); }
.legal ul { margin: 0 0 1.2rem; padding-left: 0; display: grid; gap: 0.6rem; }
.legal ul li { position: relative; padding-left: 1.6rem; font-size: var(--fs-body); }
.legal ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 7px; height: 7px; border-radius: 50%; background: var(--amarillo); }
.legal a { color: var(--amarillo-lt); text-decoration: underline; text-underline-offset: 3px; }
.legal blockquote {
  margin: 1.4rem 0; padding: 1.1rem 1.3rem; border-radius: var(--radius);
  background: var(--surface); border-left: 3px solid var(--amarillo);
  font-size: var(--fs-sm); color: var(--texto);
}

/* -------------------------------------------------------------------------
   19. FOOTER
   ------------------------------------------------------------------------- */
.footer { background: var(--negro); border-top: 1px solid var(--borde); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; position: relative; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer__brand img { height: 32px; width: auto; margin-bottom: 1.1rem; }
.footer__quote { font-size: var(--fs-sm); font-style: italic; color: var(--texto); max-width: 42ch; border-left: 2px solid var(--amarillo); padding-left: 1rem; }
.footer__quote cite { display: block; margin-top: 0.6rem; font-style: normal; font-size: var(--fs-xs); color: var(--texto-soft); }
.footer__col h2 { font-family: var(--font-display); font-size: var(--fs-sm); letter-spacing: 0.05em; text-transform: uppercase; color: var(--blanco); margin-bottom: 1rem; }
.footer__col ul { display: grid; gap: 0.6rem; }
.footer__col a, .footer__col span { font-size: var(--fs-sm); color: var(--texto); transition: color var(--t-fast); }
@media (hover: hover) {
  .footer__col a:hover { color: var(--amarillo-lt); }
}
.footer__socials { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer__socials a {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px;
  border: 1px solid var(--borde); color: var(--texto);
  transition: color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
@media (hover: hover) {
  .footer__socials a:hover { color: var(--amarillo-lt); border-color: var(--borde-hov); transform: translateY(-2px); }
}
.footer__socials svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid var(--borde); padding-top: 1.6rem; text-align: center; font-size: var(--fs-xs); color: var(--texto-soft); }

/* -------------------------------------------------------------------------
   20. BANNER DE COOKIES
   ------------------------------------------------------------------------- */
.cookies {
  position: fixed; left: 50%; bottom: 1rem;
  transform: translateX(-50%) translateY(160%);
  width: min(720px, calc(100% - 2rem)); z-index: 1500;
  background: rgba(17, 17, 19, 0.94);
  border: 1px solid var(--borde); border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--shadow-lg);
  transition: transform var(--t-slow), opacity var(--t-slow); opacity: 0;
}
.cookies.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookies__inner { display: grid; gap: 1rem; }
.cookies p { font-size: var(--fs-sm); color: var(--texto); }
.cookies p strong { color: var(--blanco); }
.cookies a { color: var(--amarillo-lt); text-decoration: underline; text-underline-offset: 2px; }
.cookies__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.cookies__actions .btn { padding: 0.7rem 1.3rem; font-size: var(--fs-sm); }

/* -------------------------------------------------------------------------
   21. REVEAL (scroll, con stagger)
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--t-reveal), transform var(--t-reveal); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* -------------------------------------------------------------------------
   22. UTILIDADES
   ------------------------------------------------------------------------- */
.is-hidden { display: none !important; }   /* secciones aún sin contenido real */
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* -------------------------------------------------------------------------
   25. QUÉ HACEMOS — filas alternadas (zigzag editorial, sin tarjetas)
   ------------------------------------------------------------------------- */
.features { display: grid; gap: clamp(2.8rem, 7vw, 5rem); }
.feature { display: grid; gap: clamp(1.4rem, 4vw, 3rem); align-items: center; }
.feature__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: #211913;
  box-shadow: 0 18px 34px rgba(0,0,0,0.28);
}
.feature__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__body h3 { font-size: clamp(1.55rem, 3.4vw, 2.3rem); margin-bottom: 0.8rem; }
.feature__body p { font-size: var(--fs-lead); color: #D0C8BA; max-width: 48ch; }
.feature__tags { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin-top: 1.2rem; }
.feature__tags span { display: inline-flex; align-items: center; gap: 0.45rem; font-size: var(--fs-sm); color: var(--blanco); }
.feature__tags span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--amarillo);
}
@media (min-width: 860px) {
  .feature { grid-template-columns: 1.08fr 0.92fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
  .feature:nth-child(even) { grid-template-columns: 0.92fr 1.08fr; }
  .feature:nth-child(even) .feature__media { order: 2; }}

/* -------------------------------------------------------------------------
   26. CÓMO FUNCIONA — ruta en el mapa (waypoints, sin cajas)
   ------------------------------------------------------------------------- */
.route { position: relative; margin-top: clamp(1.5rem, 4vw, 2.7rem); }
.route__steps {
  display: grid;
  gap: 0;
  position: relative;
  background: var(--blanco-puro);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(21,18,14,0.08);
}
.route-step {
  position: relative;
  text-align: left;
  padding: 1.35rem 1.4rem 1.45rem 4.6rem;
  border-bottom: 1px solid var(--borde-lt);
}
.route-step:last-child { border-bottom: none; }
.route-step__pin {
  position: absolute;
  top: 1.25rem;
  left: 1.4rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFF7E8;
  color: var(--amarillo-dp);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  z-index: 2;
}
.route-step:last-child .route-step__pin {
  background: var(--amarillo);
  color: #2A1B05;
}
.route-step h3 { font-size: 1.12rem; margin-bottom: 0.4rem; color: #100D09; }
.route-step p { font-size: var(--fs-sm); color: var(--tinta-soft); max-width: 34ch; }
@media (min-width: 860px) {
  .route__steps { grid-template-columns: repeat(4, 1fr); }
  .route-step {
    min-height: 220px;
    padding: 5.6rem 1.4rem 1.5rem;
    border-bottom: none;
    border-right: 1px solid var(--borde-lt);
  }
  .route-step:last-child { border-right: none; }
  .route-step__pin { top: 1.45rem; }}

/* -------------------------------------------------------------------------
   27. SPLIT "loud" — foto full-bleed + panel ámbar con statement
   ------------------------------------------------------------------------- */
.split { position: relative; }
.split__inner { display: grid; grid-template-columns: 1fr; }
.split__media {
  position: relative; min-height: 300px; overflow: hidden;
  background: linear-gradient(160deg, #1c1813, #100d09);
}
.split__media::before {
  content: none;
}
.split__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.split__panel {
  background: var(--amarillo); color: #2A1B05;
  padding: clamp(2.6rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
  position: relative; overflow: hidden;
}
.split__panel::after { content: none; }
.split__panel .eyebrow { color: #7A4D10; }
.split__panel .eyebrow::before { background: #7A4D10; }
.split__panel h2 { color: #251703; font-size: clamp(2rem, 4.4vw, 3.4rem); max-width: 18ch; letter-spacing: -0.02em; }
.split__panel p { color: #5A3D0A; font-size: var(--fs-lead); max-width: 42ch; }
.split__panel .btn--dark { background: #16120D; color: #fff; box-shadow: 0 14px 36px rgba(0,0,0,0.25); align-self: flex-start; }
@media (hover: hover) {
  .split__panel .btn--dark:hover { transform: translateY(-2px); background: #221b12; }
}
@media (min-width: 860px) {
  .split__inner { grid-template-columns: 1.05fr 0.95fr; }
  .split__media { min-height: 460px; }}

/* -------------------------------------------------------------------------
   28. POR QUÉ — lista editorial asimétrica (sin cajas)
   ------------------------------------------------------------------------- */
.reasons-wrap { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.reasons-note {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--borde-lt);
  font-weight: 600;
  color: #2F281C !important;
}
.reasons { display: grid; grid-template-columns: 1fr; column-gap: 2.4rem; }
.reason {
  display: flex; gap: 0.95rem; align-items: flex-start;
  padding: 1.25rem 0; border-top: 1px solid var(--borde-lt);
}
.reason__ico { width: 26px; height: 26px; flex-shrink: 0; color: var(--amarillo-dp); margin-top: 2px; }
.reason__ico svg { width: 100%; height: 100%; }
.reason h3 { font-size: 1.08rem; margin-bottom: 0.25rem; color: #100D09; }
.reason p { font-size: var(--fs-sm); color: var(--tinta-soft); }
@media (min-width: 600px) { .reasons { grid-template-columns: repeat(2, 1fr); }}
@media (min-width: 860px) { .reasons-wrap { grid-template-columns: 0.8fr 1.2fr; }}

/* -------------------------------------------------------------------------
   29. CONTACTO — split (datos oscuro / formulario claro)
   ------------------------------------------------------------------------- */
.contact-split { display: grid; grid-template-columns: 1fr; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--borde); box-shadow: var(--shadow-lg); }
.contact-split__aside {
  position: relative; overflow: hidden;
  background: var(--ink-warm); color: var(--texto);
  padding: clamp(2rem, 5vw, 3.4rem);
}
.contact-split__aside::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--map-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--map-line) 1px, transparent 1px);
  background-size: 40px 40px; opacity: 0.7;
  -webkit-mask: radial-gradient(120% 80% at 100% 0%, #000 35%, transparent 80%);
          mask: radial-gradient(120% 80% at 100% 0%, #000 35%, transparent 80%);
}
.contact-split__aside > * { position: relative; z-index: 1; }
.contact-split__aside h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-split__aside .aside-intro { font-size: var(--fs-sm); color: var(--texto); margin-bottom: 1.6rem; max-width: 36ch; }
.contact-split__main { background: var(--hueso); padding: clamp(2rem, 5vw, 3.4rem); }
.contact-split__main h2 { color: #100D09; font-size: 1.5rem; margin-bottom: 0.4rem; }
.contact-split__main .main-intro { color: var(--tinta-soft); font-size: var(--fs-sm); margin-bottom: 1.6rem; }
.contact-split__main .form-wrap { background: transparent; border: none; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; padding: 0; }
.contact-split__main .field label { color: #100D09; }
.contact-split__main .field input,
.contact-split__main .field textarea { background: #fff; border-color: var(--borde-lt); color: var(--tinta); }
.contact-split__main .field input::placeholder,
.contact-split__main .field textarea::placeholder { color: #9a9488; }
.contact-split__main .field input:focus,
.contact-split__main .field textarea:focus { border-color: var(--amarillo-dp); background: #fff; box-shadow: 0 0 0 3px rgba(251,186,58,0.15); }
.contact-split__main .form-status.ok { background: rgba(251,186,58,0.14); border-color: rgba(201,126,18,0.4); color: var(--amarillo-dp); }
@media (min-width: 880px) { .contact-split { grid-template-columns: 0.92fr 1.08fr; }}

/* -------------------------------------------------------------------------
   23. BREAKPOINTS
   ------------------------------------------------------------------------- */
@media (min-width: 600px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .why-list { grid-template-columns: repeat(2, 1fr); }
  .cookies__inner { grid-template-columns: 1fr auto; align-items: center; }
  .cookies__actions { justify-content: flex-end; }
  .counters__grid { grid-template-columns: repeat(4, 1fr); }}

@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }}

@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .plans { grid-template-columns: repeat(3, 1fr); }
  .hero__scene { grid-template-columns: 0.95fr 1.05fr; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }}

/* Nav móvil */
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0.2rem;
    padding: 1rem var(--gutter) 1.4rem;
    background: rgba(10, 10, 11, 0.96);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--borde);
    transform: translateY(-130%); transition: transform var(--t); visibility: hidden;
  }
  .nav__links.open { transform: translateY(0); visibility: visible; }
  .nav__link { padding: 0.9rem 0.6rem; font-size: 1.1rem; }
  .nav__link::after { display: none; }
  .nav__actions .btn--wa { display: none; }
  .nav__cta-mobile { display: inline-flex; margin-top: 0.7rem; }}

/* -------------------------------------------------------------------------
   24. REDUCED MOTION
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__content, .hero__media { transform: none !important; }
  .marquee__track { animation: none !important; transform: none !important; }}

/* =========================================================================
   ADAPTACIÓN MOBILE (≤ 860px) — centrado, espaciado y proporciones
   ========================================================================= */
@media (max-width: 860px) {

  /* Padding interno general: ~28px en todas las páginas */
  :root { --gutter: 1.75rem; }

  /* --- HERO: todo centrado, con aire --- */
  .hero {
    padding-top: calc(var(--nav-h) + 2.5rem);
    padding-bottom: 3.5rem;
    text-align: center;
  }
  .hero__scene { gap: 2.8rem; }
  .hero__content { max-width: 100%; }

  /* Badge: centrado y separado del título */
  .hero__badge {
    margin-inline: auto;
    margin-bottom: 1.3rem;
    font-size: 0.72rem;
    padding: 0 0 0.55rem;
  }

  /* Título del hero en mayúsculas (solo aquí) */
  .hero h1 {
    margin: 0 auto 1.2rem;
    max-width: 11ch;
    text-transform: none;
  }
  .hero__sub {
    max-width: 38ch;
    margin-inline: auto;
    margin-bottom: 2rem;
  }

  /* Botones: centrados, a ancho cómodo */
  .hero__cta {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
    margin-inline: auto;
    gap: 0.8rem;
  }
  .hero__cta .btn { width: 100%; }

  /* Stats: 3 columnas parejas, centradas */
  .hero__proof {
    justify-content: center;
    gap: 0.55rem 1rem;
    margin-top: 1.7rem;
    padding-top: 1rem;
  }

  /* --- IMAGEN HERO: proporcional, sin rotación, sin chips que se cortan --- */
  .hero__frame { max-width: 420px; margin-inline: auto; }
  .hero__frame img { aspect-ratio: 4 / 3; }
  .hero__caption { width: min(92%, 340px); }

  /* --- QUÉ HACEMOS: número arriba, texto centrado, imagen más chica --- */
  .features { gap: 4.2rem; }
  .feature { text-align: center; gap: 1.4rem; }
  .feature__media { aspect-ratio: 16 / 11; max-width: 380px; margin-inline: auto; width: 100%; }
  .feature__body h3 { font-size: 1.4rem; }
  .feature__body p { margin-inline: auto; max-width: 42ch; }
  .feature__tags { justify-content: center; }

  /* --- CÓMO FUNCIONA: ocultar línea punteada, dejar círculos --- */
  .route-step { padding: 1.3rem 1.3rem 1.4rem 4.45rem; }
  .route-step p { max-width: 32ch; }

  /* --- SPLIT (el trato): centrar texto del panel --- */
  .split__panel { text-align: center; align-items: center; }
  .split__panel h2 { margin-inline: auto; }
  .split__panel p { margin-inline: auto; }
  .split__panel .btn--dark { align-self: center; }

  /* --- POR QUÉ ELEGIRNOS: lead centrado --- */
  .reasons-lead { text-align: center; }
  .reasons-lead .eyebrow { justify-content: center; }
  .reasons-lead p { margin-inline: auto; max-width: 42ch; }
  .reasons-note { margin-inline: auto; }
  .cta-band__box { text-align: center; }
  .cta-band h2, .cta-band p { margin-inline: auto; }
  .cta-band .hero__cta { justify-content: center; }

  /* --- PLANES: tarjeta con padding cómodo --- */
  .plan { padding: 1.8rem 1.5rem; }

  /* --- PÁGINA INTERIOR (nosotros/contacto/planes hero) --- */
  .prose-block { text-align: center; }
  .prose-block p { margin-inline: auto; }

  /* --- FOOTER: alineado a la izquierda (como estaba) --- */
  .footer__col ul { gap: 0.7rem; }}

/* --- Pantallas muy chicas (≤ 420px): ajuste fino --- */
@media (max-width: 420px) {
  :root { --gutter: 1.5rem; }
  .hero__proof { gap: 0.45rem 0.8rem; }
  .section { padding-block: 3.2rem; }
  .cta-band__box { padding: 2.2rem 1.4rem; }}

/* =========================================================================
   ZC HOME RESCATE — versión editorial/local, sin look IA genérico
   Cambios pensados para index.html. No rompe tracking ni páginas legales.
   ========================================================================= */

.hero--editorial {
  min-height: min(860px, 100svh);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + clamp(2.6rem, 5.5vw, 5.2rem));
  padding-bottom: clamp(3.4rem, 7.5vw, 6rem);
  background:
    linear-gradient(90deg, rgba(251,186,58,0.14) 0 1px, transparent 1px 100%),
    radial-gradient(600px 340px at 82% 22%, rgba(251,186,58,0.16), transparent 64%),
    linear-gradient(135deg, #0D0D0E 0%, #17120B 52%, #0E0E10 100%);
  background-size: 96px 100%, auto, auto;
}
.hero--editorial::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.30));
  pointer-events: none;
  z-index: -1;
}
.hero--editorial .hero__scene {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
}
.hero--editorial .hero__content { max-width: 680px; }
.hero--editorial .hero__badge {
  padding: 0 0 0.75rem;
  border-bottom: 2px solid rgba(251,186,58,0.70);
  color: var(--amarillo-lt);
  font-size: clamp(.78rem, 1vw, .92rem);
}
.hero--editorial h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7.4vw, 6.65rem);
  line-height: .88;
  letter-spacing: -0.055em;
  text-transform: none;
}
.hero--editorial .hero__sub {
  max-width: 49ch;
  color: #D9D0C1;
  font-size: clamp(1.02rem, 1.55vw, 1.23rem);
}
.hero--editorial .btn svg { width: 1.15em; height: 1.15em; }
.hero--editorial .hero__proof {
  border-top-color: rgba(255,255,255,.13);
  color: #D7CDBC;
}
.hero--editorial .hero__proof span {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-pill);
  padding: .48rem .78rem .48rem 1.45rem;
}
.hero--editorial .hero__proof span::before { left: .72rem; }

.hero__media--editorial {
  min-height: clamp(440px, 54vw, 630px);
  position: relative;
  isolation: isolate;
}
.hero__media-card {
  position: absolute;
  inset: 4% 7% 8% 0;
  border-radius: 28px;
  overflow: hidden;
  background: #1B1510;
  box-shadow: 0 28px 68px rgba(0,0,0,.45);
  transform: rotate(-1.2deg);
}
.hero__media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 48%, rgba(0,0,0,.34)),
    linear-gradient(110deg, rgba(251,186,58,.18), transparent 42%);
  pointer-events: none;
}
.hero__media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
}
.hero__media--editorial::before {
  content: "";
  position: absolute;
  inset: 0 0 4rem 5rem;
  border: 1px solid rgba(251,186,58,.34);
  border-radius: 30px;
  transform: rotate(2.2deg);
  z-index: -1;
}
.hero__media--editorial::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  bottom: 2.1rem;
  width: 70%;
  height: 20px;
  background: var(--amarillo);
  border-radius: 999px;
  filter: blur(18px);
  opacity: .32;
  z-index: -1;
}
.hero__paper {
  position: absolute;
  z-index: 3;
  width: min(270px, 48%);
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(244,240,232,.94);
  color: #17110A;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 18px 42px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}
.hero__paper strong,
.hero__paper small,
.hero__paper span { display: block; }
.hero__paper strong { color: #17110A; font-family: var(--font-display); font-size: .98rem; line-height: 1.15; }
.hero__paper small { color: #625745; line-height: 1.35; margin-top: .35rem; }
.hero__paper-kicker { color: var(--amarillo-dp); font-size: .72rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 800; margin-bottom: .38rem; }
.hero__paper--top { right: 0; top: 7%; }
.hero__paper--bottom { left: 0; bottom: 8%; background: rgba(18,16,14,.92); color: #fff; border-color: rgba(251,186,58,.25); }
.hero__paper--bottom strong { color: #fff; }
.hero__paper--bottom small { color: #CFC5B6; }
.hero__seal {
  position: absolute;
  right: 8%;
  bottom: 0;
  z-index: 4;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: var(--amarillo);
  color: #231705;
  box-shadow: 0 18px 38px rgba(251,186,58,.28);
  transform: rotate(5deg);
}
.hero__seal span { display: block; font-family: var(--font-display); font-size: 2.55rem; line-height: .85; font-weight: 900; letter-spacing: -.05em; }
.hero__seal small { display: block; font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }

.home-brief { padding-block: clamp(3.4rem, 7vw, 5.8rem); }
.home-brief__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.home-brief h2 {
  color: #100D09;
  font-size: clamp(2rem, 4.8vw, 4rem);
  letter-spacing: -.045em;
  max-width: 10.8ch;
}
.home-brief__copy p {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: #3E3628;
  max-width: 58ch;
}
.brief-list {
  margin-top: 1.4rem;
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(3, 1fr);
}
.brief-list li {
  background: #fff;
  color: #221A10;
  border: 1px solid var(--borde-lt);
  border-radius: 16px;
  padding: 1rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 12px 26px rgba(21,18,14,.06);
}

.home-services .section-head { max-width: 790px; }
.home-services .feature {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: clamp(2rem, 5vw, 3.2rem);
}
.home-services .feature__media {
  border-radius: 24px;
  box-shadow: 0 24px 52px rgba(0,0,0,.38);
  border: 1px solid rgba(251,186,58,.14);
}
.home-services .feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(251,186,58,.13), transparent 45%);
  pointer-events: none;
}
.feature__idx {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  line-height: .85;
  font-weight: 900;
  letter-spacing: -.07em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(251,186,58,.68);
  margin-bottom: .85rem;
}
.home-services .feature__body h3 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -.04em; }
.home-services .feature__tags span {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  padding: .42rem .72rem;
  background: rgba(255,255,255,.035);
}

.home-process .route__steps {
  overflow: visible;
  background: transparent;
  box-shadow: none;
  gap: 1rem;
}
.home-process .route-step {
  background: #fff;
  border: 1px solid var(--borde-lt);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(21,18,14,.07);
}
.home-process .route-step__pin {
  background: #17110A;
  color: var(--amarillo);
}
.home-process .route-step:last-child .route-step__pin { background: var(--amarillo); color: #211503; }
@media (min-width: 860px) {
  .home-process .route__steps::before {
    content: "";
    position: absolute;
    top: 3.05rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(201,126,18,.18), rgba(201,126,18,.62), rgba(201,126,18,.18));
    z-index: 0;
  }
  .home-process .route-step { z-index: 1; border-right: 1px solid var(--borde-lt); }}

.split__panel {
  background:
    linear-gradient(135deg, #FBBA3A 0%, #FFC24B 100%);
}
.split__panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(35,23,5,.18);
  border-radius: 20px;
  pointer-events: none;
}
.split__panel > * { position: relative; z-index: 1; }
.split__panel .btn--dark svg { width: 1.15em; height: 1.15em; }

.reasons-wrap {
  border-top: 1px solid var(--borde-lt);
  padding-top: clamp(2rem, 5vw, 3.4rem);
}
.reason {
  transition: transform var(--t), color var(--t);
}
@media (hover: hover) {
  .reason:hover { transform: translateX(4px); }
}

.cta-band__box {
  background:
    linear-gradient(135deg, #FBBA3A 0%, #FFC24B 100%);
  border-radius: 26px;
  box-shadow: 0 24px 54px rgba(0,0,0,.24);
}
.cta-band__box::before {
  content: "";
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 38px solid rgba(33,21,3,.07);
}

/* Iconos inline: reemplazo de Font Awesome en la home */
.nav__actions .btn svg,
.footer__socials a svg,
.cta-band .btn svg,
.split__panel .btn svg { width: 1.15em; height: 1.15em; }
.footer__socials a svg { width: 20px; height: 20px; }

@media (max-width: 899px) {
  .hero--editorial .hero__scene { grid-template-columns: 1fr; }
  .hero__media--editorial { min-height: 520px; max-width: 640px; margin-inline: auto; width: 100%; }}
@media (max-width: 860px) {
  .hero--editorial {
    min-height: auto;
    text-align: left;
    padding-top: calc(var(--nav-h) + 2.2rem);
  }
  .hero--editorial .hero__badge { margin-inline: 0; }
  .hero--editorial h1 { max-width: 8.8ch; margin-inline: 0; font-size: clamp(3rem, 14vw, 4.45rem); }
  .hero--editorial .hero__sub { margin-inline: 0; max-width: 34ch; }
  .hero--editorial .hero__cta { margin-inline: 0; align-items: stretch; }
  .hero--editorial .hero__proof { justify-content: flex-start; }
  .hero__media--editorial { min-height: 440px; }
  .hero__media-card { inset: 2% 0 13% 0; border-radius: 22px; transform: rotate(-.8deg); }
  .hero__media--editorial::before { inset: 1rem .8rem 4.6rem 1rem; }
  .hero__paper { width: min(245px, 76%); }
  .hero__paper--top { right: .4rem; top: 2.2rem; }
  .hero__paper--bottom { left: .4rem; bottom: 3.2rem; }
  .hero__seal { right: 1rem; bottom: .4rem; width: 96px; height: 96px; }
  .hero__seal span { font-size: 2.1rem; }

  .home-brief__grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .home-brief h2 { max-width: 12ch; }
  .brief-list { grid-template-columns: 1fr; }
  .home-services .feature { text-align: left; }
  .home-services .feature__body p { margin-inline: 0; }
  .home-services .feature__tags { justify-content: flex-start; }
  .feature__idx { font-size: 2.6rem; }}
@media (max-width: 420px) {
  .hero__paper { font-size: .9rem; }
  .hero__paper small { display: none; }
  .hero__media--editorial { min-height: 390px; }
  .hero__seal { width: 84px; height: 84px; }}


/* =========================================================================
   AJUSTES 2026-07 — correcciones pedidas por Ángel
   Hero más sobrio, movimiento más sutil, razones con más vida, CTA/footer.
   ========================================================================= */

.hero--editorial {
  --mx: 64%;
  --my: 32%;
  --line-x: 0px;
  --line-y: 0px;
  background:
    radial-gradient(720px 430px at var(--mx) var(--my), rgba(251,186,58,0.13), transparent 68%),
    linear-gradient(135deg, #1f1f1f 0%, #171717 58%, #232323 100%);
  background-size: auto, auto;
}
.hero--editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .34;
  background-image:
    repeating-linear-gradient(112deg,
      transparent 0 38px,
      rgba(251,186,58,.045) 38px 39px,
      transparent 39px 86px);
  background-position: var(--line-x) var(--line-y);
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}
.hero--editorial h1 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  max-width: 13ch;
  font-size: clamp(2.55rem, 5.65vw, 5.25rem);
  line-height: .94;
  letter-spacing: -0.045em;
}
.hero--editorial .hero__badge {
  font-family: var(--font-display);
  letter-spacing: .01em;
}
.hero--editorial .hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .48rem .78rem .48rem 1.55rem;
}
.hero--editorial .hero__proof span::before {
  top: 50%;
  left: .78rem;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
}
.hero__seal { display: none !important; }
.hero__media-card {
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0) rotate(-.55deg);
  transition: transform .22s var(--ease);
}
.hero__paper {
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  transition: transform .22s var(--ease);
}
.hero__media--editorial::before {
  transform: rotate(1.15deg);
  opacity: .72;
}

.reasons-section {
  background:
    radial-gradient(620px 320px at 18% 22%, rgba(251,186,58,.13), transparent 64%),
    linear-gradient(180deg, #F4F0E8 0%, #EFE8DA 100%);
  overflow: hidden;
}
.reasons-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .36;
  background-image:
    linear-gradient(rgba(21,18,14,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,18,14,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(80% 70% at 50% 20%, #000, transparent 82%);
}
.reasons-section .container { position: relative; }
.reasons-section .reasons-wrap {
  border-top: 0;
  padding-top: 0;
  gap: clamp(1.8rem, 4vw, 3rem);
}
.reasons-section .reasons-lead {
  position: relative;
  background: #1f1f1f;
  border: 1px solid rgba(251,186,58,.20);
  border-radius: 24px;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: 0 22px 46px rgba(21,18,14,.13);
  overflow: hidden;
}
.reasons-section .reasons-lead::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 34px solid rgba(251,186,58,.12);
}
.reasons-section .reasons-lead > * { position: relative; z-index: 1; }
.reasons-section .reasons-lead .eyebrow { color: var(--amarillo-lt); }
.reasons-section .reasons-lead h2 { color: #fff; }
.reasons-section .reasons-lead p { color: #D5CCBF; }
.reasons-section .reasons-note {
  border-top-color: rgba(255,255,255,.12);
  color: #fff !important;
}
.reasons-mini {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.3rem;
}
.reasons-mini span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: .36rem .68rem;
  background: rgba(251,186,58,.13);
  border: 1px solid rgba(251,186,58,.22);
  color: var(--amarillo-lt);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
}
.reasons-section .reasons {
  gap: 1rem;
}
.reasons-section .reason {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(21,18,14,.09);
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: 0 12px 26px rgba(21,18,14,.055);
}
@media (hover: hover) {
  .reasons-section .reason:hover {
    transform: translateY(-3px);
    border-color: rgba(201,126,18,.28);
    box-shadow: 0 18px 34px rgba(21,18,14,.09);
  }
}
.reasons-section .reason__ico {
  width: 30px;
  height: 30px;
  color: var(--amarillo-dp);
}

.cta-band {
  background: #111;
  padding-block: clamp(4rem, 8vw, 6rem);
}
.cta-band__box {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) auto;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.02)),
    #1f1f1f;
  border: 1px solid rgba(251,186,58,.22);
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(0,0,0,.28);
  color: #fff;
  text-align: left;
  padding: clamp(2rem, 5vw, 3.5rem);
}
.cta-band__box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--amarillo), var(--amarillo-lt));
  border-radius: 24px 24px 0 0;
}
.cta-band__box::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -7rem;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(251,186,58,.08);
  filter: blur(10px);
  pointer-events: none;
}
.cta-band__content,
.cta-band__actions { position: relative; z-index: 1; }
.cta-band .eyebrow { color: var(--amarillo-lt); margin-bottom: .8rem; }
.cta-band h2 {
  color: #fff;
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: .96;
  letter-spacing: -.045em;
}
.cta-band p {
  color: #D8CFC1;
  max-width: 46ch;
  margin: 1rem 0 0;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: flex-end;
}
.cta-band .btn--primary {
  background: var(--amarillo);
  color: #14100A;
  box-shadow: 0 12px 26px rgba(251,186,58,.18);
}
@media (hover: hover) {
  .cta-band .btn--primary:hover { background: var(--amarillo-lt); }
}
.cta-band .btn--ghost {
  background: rgba(255,255,255,.055);
  color: #fff;
  border-color: rgba(255,255,255,.16);
}
@media (hover: hover) {
  .cta-band .btn--ghost:hover { border-color: rgba(251,186,58,.34); }
}

.footer { padding-block: clamp(2.5rem, 5vw, 3.6rem) 1.45rem; }
.footer__brand img { height: 29px; }
.footer__quote {
  font-size: .86rem;
  line-height: 1.55;
  max-width: 38ch;
}
.footer__quote cite { font-size: .73rem; }
.footer__col h2 {
  font-size: .78rem;
  letter-spacing: .055em;
  margin-bottom: .8rem;
}
.footer__col ul { gap: .48rem; }
.footer__col a,
.footer__col span {
  font-size: .86rem;
  line-height: 1.5;
}
.footer__bottom { font-size: .72rem; }
.footer__socials a { width: 36px; height: 36px; }

@media (max-width: 899px) {
  .cta-band__box { grid-template-columns: 1fr; }
  .cta-band__actions { justify-content: flex-start; }}
@media (max-width: 860px) {
  .hero--editorial {
    background:
      radial-gradient(520px 320px at var(--mx) var(--my), rgba(251,186,58,0.11), transparent 70%),
      linear-gradient(135deg, #1f1f1f 0%, #181818 58%, #222 100%);
  }
  .hero--editorial h1 {
    max-width: 11.5ch;
    font-size: clamp(2.35rem, 10.8vw, 3.75rem);
    line-height: .96;
  }
  .hero--editorial .hero__sub { max-width: 36ch; }
  .hero--editorial .hero__proof span { min-height: 32px; }
  .hero__media--editorial { min-height: 410px; }
  .hero__paper--top { top: 1.4rem; }
  .hero__paper--bottom { bottom: 2rem; }
  .reasons-section .reasons-lead { text-align: left; }
  .reasons-section .reasons-lead p { margin-inline: 0; }
  .reasons-mini { justify-content: flex-start; }
  .cta-band__box { text-align: left; }
  .cta-band h2, .cta-band p { margin-inline: 0; }
  .cta-band__actions { flex-direction: column; align-items: stretch; }
  .cta-band__actions .btn { width: 100%; }}
@media (max-width: 520px) {
  .hero--editorial h1 { font-size: clamp(2.15rem, 10.2vw, 3.15rem); }
  .hero__media--editorial { min-height: 360px; }
  .hero__paper { width: min(230px, 72%); padding: .82rem .9rem; }
  .hero__paper--bottom { bottom: 1.4rem; }
  .footer__grid { gap: 1.65rem; }
  .footer__col a, .footer__col span { font-size: .83rem; }}

/* =========================================================================
   AJUSTE FINO 2026-07 — título hero, chips responsive e íconos Font Awesome
   ========================================================================= */
.hero--editorial h1 {
  max-width: 14.2ch;
  font-size: clamp(2.35rem, 4.75vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: .012em;
  font-weight: 800;
}
.hero--editorial .hero__sub {
  margin-top: .1rem;
}
.btn i,
.btn .fa-brands,
.btn .icon {
  width: 1.15em;
  height: 1.15em;
  font-size: 1.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}
.footer__socials i,
.footer__socials .fa-brands,
.footer__socials .icon {
  font-size: 1rem;
  line-height: 1;
}
.hero__paper {
  width: min(225px, 40%);
  padding: .78rem .86rem;
  border-radius: 15px;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}
.hero__paper strong {
  font-size: .86rem;
  line-height: 1.16;
  letter-spacing: .005em;
}
.hero__paper small {
  font-size: .78rem;
  line-height: 1.28;
  margin-top: .26rem;
}
.hero__paper-kicker {
  font-size: .62rem;
  letter-spacing: .13em;
  margin-bottom: .26rem;
}
.hero__paper--top { right: .65rem; top: 7.5%; }
.hero__paper--bottom { left: .65rem; bottom: 8.5%; }
.hero__media-card {
  transition: transform .28s var(--ease);
}
.hero__paper {
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
@media (min-width: 1200px) {
  .hero--editorial h1 { font-size: clamp(2.6rem, 4.35vw, 4.7rem); }}
@media (max-width: 860px) {
  .hero--editorial h1 {
    max-width: 13.2ch;
    font-size: clamp(2rem, 8.6vw, 2.95rem);
    line-height: 1.05;
    letter-spacing: .008em;
  }
  .hero__media--editorial { min-height: 390px; }
  .hero__paper {
    width: min(190px, 54%);
    padding: .66rem .72rem;
    border-radius: 14px;
  }
  .hero__paper strong { font-size: .78rem; line-height: 1.14; }
  .hero__paper small { font-size: .70rem; line-height: 1.22; }
  .hero__paper-kicker { font-size: .58rem; margin-bottom: .22rem; }
  .hero__paper--top { right: .55rem; top: 1rem; }
  .hero__paper--bottom { left: .55rem; bottom: 1.15rem; }}
@media (max-width: 520px) {
  .hero--editorial h1 {
    max-width: 12.8ch;
    font-size: clamp(1.95rem, 8.4vw, 2.65rem);
    line-height: 1.06;
    letter-spacing: .006em;
  }
  .hero__media--editorial { min-height: 345px; }
  .hero__media-card { inset: 4% 0 12% 0; }
  .hero__paper {
    width: min(172px, 52%);
    padding: .58rem .64rem;
  }
  .hero__paper strong { font-size: .72rem; }
  .hero__paper small { display: none; }
  .hero__paper-kicker { font-size: .55rem; }
  .hero__paper--top { top: .85rem; right: .45rem; }
  .hero__paper--bottom { bottom: .95rem; left: .45rem; }
  .footer__socials i { font-size: .95rem; }}


/* =========================================================================
   AJUSTE FINO V3 — títulos más chicos, razones 4 cajas centradas y footer fino
   ========================================================================= */

/* Títulos: menos bloque gigante, más aire entre letras y líneas */
.hero--editorial h1 {
  max-width: 15ch;
  font-size: clamp(2.05rem, 3.85vw, 3.65rem);
  line-height: 1.13;
  letter-spacing: .028em;
}
.home-brief h2 {
  font-size: clamp(1.9rem, 3.35vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -.025em;
  max-width: 12.5ch;
}
.split__panel h2 {
  font-size: clamp(1.9rem, 3.45vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.025em;
  max-width: 20ch;
}
.cta-band h2 {
  font-size: clamp(1.85rem, 3.35vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  max-width: 20ch;
}
.section-head h2 {
  line-height: 1.1;
}

/* Razones: 4 cajas, sección centrada y más compacta */
.reasons-section .reasons-wrap {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3.8vw, 2.4rem);
}
.reasons-section .reasons-lead {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(1.55rem, 3vw, 2.2rem);
}
.reasons-section .reasons-lead h2 {
  max-width: 20ch;
  margin-inline: auto;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1.12;
}
.reasons-section .reasons-lead p {
  margin-inline: auto;
  max-width: 42ch;
}
.reasons-section .reasons-note {
  max-width: 44ch;
}
.reasons-mini {
  justify-content: center;
}
.reasons-section .reasons {
  max-width: 820px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.reasons-section .reason {
  text-align: left;
  padding: 1.05rem;
  min-height: 178px;
}
.reasons-section .reason h3 {
  font-size: .98rem;
  line-height: 1.15;
}
.reasons-section .reason p {
  font-size: .88rem;
  line-height: 1.55;
}

/* Footer: tipografía más chica, frase angosta y columnas más juntas hacia la derecha */
.footer {
  padding-block: clamp(2.15rem, 4vw, 3rem) 1.2rem;
}
.footer__grid {
  grid-template-columns: minmax(220px, .95fr) repeat(3, max-content);
  justify-content: space-between;
  column-gap: clamp(2rem, 4.2vw, 4rem);
  row-gap: 1.4rem;
  margin-bottom: 2rem;
}
.footer__brand {
  max-width: 300px;
}
.footer__brand img {
  height: 27px;
  margin-bottom: .9rem;
}
.footer__quote {
  font-size: .76rem;
  line-height: 1.55;
  max-width: 29ch;
  padding-left: .85rem;
}
.footer__quote cite {
  font-size: .66rem;
}
.footer__col h2 {
  font-size: .68rem;
  margin-bottom: .65rem;
}
.footer__col ul {
  gap: .36rem;
}
.footer__col a,
.footer__col span {
  font-size: .76rem;
  line-height: 1.45;
}
.footer__socials {
  gap: .48rem;
  margin-top: .95rem;
}
.footer__socials a {
  width: 32px;
  height: 32px;
}
.footer__socials svg,
.footer__socials i {
  font-size: .86rem;
  width: 18px;
  height: 18px;
}
.footer__bottom {
  padding-top: 1.25rem;
  font-size: .65rem;
}

@media (max-width: 860px) {
  .hero--editorial h1 {
    max-width: 14.5ch;
    font-size: clamp(1.72rem, 6.9vw, 2.35rem);
    line-height: 1.16;
    letter-spacing: .022em;
  }
  .home-brief h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.12;
    max-width: 13ch;
  }
  .split__panel h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    line-height: 1.12;
    max-width: 16ch;
  }
  .cta-band h2 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    max-width: 17ch;
  }
  .reasons-section .reasons-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .reasons-section .reasons-lead {
    text-align: center;
  }
  .reasons-section .reasons-lead p,
  .reasons-section .reasons-note {
    margin-inline: auto;
  }
  .reasons-mini {
    justify-content: center;
  }
  .reasons-section .reasons {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .reasons-section .reason {
    min-height: auto;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .footer__brand {
    max-width: 280px;
  }
  .footer__quote {
    max-width: 30ch;
  }
  .footer__col h2 {
    font-size: .67rem;
  }
  .footer__col a,
  .footer__col span {
    font-size: .74rem;
  }}

@media (max-width: 520px) {
  .hero--editorial h1 {
    font-size: clamp(1.62rem, 6.6vw, 2.12rem);
    line-height: 1.17;
    letter-spacing: .018em;
  }
  .home-brief h2 {
    font-size: clamp(1.62rem, 7.2vw, 2.05rem);
  }
  .split__panel h2 {
    font-size: clamp(1.65rem, 7.4vw, 2.12rem);
  }
  .footer__brand img { height: 25px; }}


/* =========================================================================
   AJUSTE FINO V4 — hero con columna de texto dominante, sin chips y títulos sobrios
   ========================================================================= */

/* Hero: texto más ancho que imagen. La imagen acompaña, no manda. */
.hero--editorial .hero__scene {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: clamp(2rem, 4.5vw, 4.2rem);
  align-items: center;
}
.hero--editorial .hero__content {
  max-width: 760px;
}
.hero--editorial h1 {
  max-width: 14ch;
  font-size: clamp(1.95rem, 3.25vw, 3.15rem);
  line-height: 1.18;
  letter-spacing: .035em;
  font-weight: 800;
}
.hero--editorial .hero__sub {
  max-width: 53ch;
  font-size: clamp(.98rem, 1.22vw, 1.08rem);
  line-height: 1.62;
}
.hero--editorial .hero__proof { display: none !important; }

.hero__media--editorial {
  min-height: clamp(390px, 43vw, 540px);
}
.hero__media-card {
  inset: 7% 5% 7% 0;
}
.hero__media--editorial::before {
  inset: 1rem 0 3.2rem 3.2rem;
}
.hero__paper {
  width: min(205px, 38%);
  padding: .72rem .78rem;
}
.hero__paper strong { font-size: .78rem; }
.hero__paper small { font-size: .70rem; }
.hero__paper-kicker { font-size: .57rem; }

/* Títulos de secciones: menos IA gigante, más negocio real. */
.home-brief h2,
.split__panel h2,
.cta-band h2 {
  font-size: clamp(1.55rem, 2.55vw, 2.28rem);
  line-height: 1.16;
  letter-spacing: -.018em;
}
.home-brief h2 { max-width: 13.5ch; }
.split__panel h2 { max-width: 22ch; }
.cta-band h2 { max-width: 21ch; }

/* Razones: 4 cajas centradas, más equilibradas. */
.reasons-section .reasons {
  max-width: 920px;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  justify-content: center;
}
.reasons-section .reason {
  min-height: 160px;
}

/* Footer más fino y columnas más prolijas. */
.footer__grid {
  grid-template-columns: minmax(190px, .8fr) repeat(3, max-content);
  justify-content: space-between;
  column-gap: clamp(1.55rem, 3vw, 3rem);
}
.footer__brand { max-width: 255px; }
/* Legibilidad mínima: nada por debajo de ~12px en el footer */
.footer__quote {
  max-width: 27ch;
  font-size: .78rem;
  line-height: 1.55;
}
.footer__quote cite { font-size: .68rem; }
.footer__col h2 { font-size: .7rem; }
.footer__col a,
.footer__col span {
  font-size: .8rem;
  line-height: 1.5;
}
.footer__col a { display: inline-block; padding-block: .12rem; }
.footer__bottom { font-size: .7rem; }

@media (min-width: 1280px) {
  .hero--editorial .hero__scene {
    grid-template-columns: minmax(0, 1.25fr) minmax(380px, .75fr);
  }
  .hero--editorial h1 {
    font-size: clamp(2.1rem, 3.15vw, 3.35rem);
  }}

@media (max-width: 980px) {
  .hero--editorial .hero__scene {
    grid-template-columns: 1fr;
  }}

@media (max-width: 860px) {
  .hero--editorial,
  .hero {
    text-align: left;
  }
  .hero--editorial .hero__content,
  .hero__content {
    max-width: 100%;
  }
  .hero--editorial .hero__badge,
  .hero__badge {
    margin-inline: 0;
  }
  .hero--editorial h1,
  .hero h1 {
    margin-left: 0;
    margin-right: 0;
    max-width: 13.8ch;
    font-size: clamp(1.72rem, 7.2vw, 2.35rem);
    line-height: 1.18;
    letter-spacing: .026em;
  }
  .hero--editorial .hero__sub,
  .hero__sub {
    margin-inline: 0;
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.58;
  }
  .hero__cta {
    max-width: none;
    margin-inline: 0;
  }
  .hero__media--editorial {
    min-height: 330px;
  }
  .hero__media-card {
    inset: 5% 0 10% 0;
  }
  .hero__paper {
    width: min(172px, 48%);
    padding: .58rem .62rem;
  }
  .hero__paper strong { font-size: .70rem; }
  .hero__paper small { display: none; }

  .home-brief h2,
  .split__panel h2,
  .cta-band h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.95rem);
    line-height: 1.18;
  }
  .reasons-section .reasons {
    grid-template-columns: 1fr;
    max-width: 470px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer__brand { max-width: 250px; }}

@media (max-width: 520px) {
  .hero--editorial h1,
  .hero h1 {
    font-size: clamp(1.62rem, 7vw, 2.05rem);
    max-width: 13.2ch;
  }
  .hero__cta {
    max-width: 100%;
  }
  .hero__media--editorial { min-height: 300px; }
  .hero__paper { width: min(150px, 46%); }
  .footer__quote { max-width: 27ch; }}

/* =========================================================================
   AJUSTE FINO V5 — pedido Ángel
   H1 como referencia: línea principal + acento amarillo, más aire y tarjetas del hero menos invasivas.
   ========================================================================= */
.hero--editorial .hero__scene {
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, .84fr);
  gap: clamp(2rem, 4vw, 3.8rem);
}
.hero--editorial .hero__badge {
  margin-bottom: clamp(1.45rem, 2.5vw, 2.05rem);
}
.hero--editorial h1,
.hero h1 {
  max-width: 16ch;
  margin-bottom: clamp(1.35rem, 2.3vw, 1.9rem);
  font-size: clamp(2.05rem, 3.05vw, 3rem);
  line-height: 1.05;
  letter-spacing: .012em;
  font-weight: 800;
  text-transform: uppercase;
}
.hero--editorial h1 span,
.hero h1 span {
  display: block;
}
.hero__title-accent {
  color: var(--amarillo-lt);
}
.hero--editorial .hero__sub,
.hero__sub {
  margin-top: 0;
  margin-bottom: clamp(1.75rem, 3vw, 2.35rem);
  max-width: 57ch;
}
.hero--editorial .hero__cta,
.hero__cta {
  gap: clamp(.8rem, 1.5vw, 1.15rem);
}

/* Tarjetas del mockup: más chicas y más afuera de la imagen para no tapar el visual. */
.hero__media--editorial {
  overflow: visible;
}
.hero__paper {
  width: min(190px, 36%);
  padding: .58rem .68rem;
  border-radius: 13px;
}
.hero__paper strong {
  font-size: .69rem;
  line-height: 1.12;
}
.hero__paper small {
  font-size: .64rem;
  line-height: 1.18;
  margin-top: .2rem;
}
.hero__paper-kicker {
  font-size: .52rem;
  letter-spacing: .14em;
  margin-bottom: .18rem;
}
.hero__paper--top {
  right: -1.15rem;
  top: .2rem;
}
.hero__paper--bottom {
  left: .1rem;
  bottom: -.45rem;
}
.hero__media-card {
  inset: 7% 4% 9% 0;
}

@media (min-width: 1280px) {
  .hero--editorial h1,
  .hero h1 {
    font-size: clamp(2.15rem, 2.85vw, 3.2rem);
    max-width: 17ch;
  }}

@media (max-width: 980px) {
  .hero--editorial .hero__scene {
    grid-template-columns: 1fr;
  }}

@media (max-width: 860px) {
  .hero--editorial .hero__badge,
  .hero__badge {
    margin-bottom: 1.35rem;
  }
  .hero--editorial h1,
  .hero h1 {
    max-width: 16ch;
    font-size: clamp(1.62rem, 6.7vw, 2.28rem);
    line-height: 1.08;
    letter-spacing: .008em;
    margin-bottom: 1.35rem;
  }
  .hero--editorial .hero__sub,
  .hero__sub {
    max-width: 35ch;
    margin-bottom: 1.85rem;
  }
  .hero__media--editorial {
    min-height: 335px;
    margin-top: .6rem;
  }
  .hero__media-card {
    inset: 7% 2% 12% 2%;
    border-radius: 20px;
  }
  .hero__media--editorial::before {
    inset: .75rem .25rem 2.65rem 1.5rem;
  }
  .hero__paper {
    width: min(142px, 42%);
    padding: .48rem .54rem;
    border-radius: 12px;
  }
  .hero__paper strong {
    font-size: .61rem;
    line-height: 1.08;
  }
  .hero__paper small {
    display: none;
  }
  .hero__paper-kicker {
    font-size: .48rem;
    margin-bottom: .16rem;
  }
  .hero__paper--top {
    top: .18rem;
    right: .15rem;
  }
  .hero__paper--bottom {
    left: .35rem;
    bottom: .7rem;
  }}

@media (max-width: 520px) {
  .hero--editorial h1,
  .hero h1 {
    max-width: 16ch;
    font-size: clamp(1.55rem, 6.2vw, 1.98rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
  }
  .hero__media--editorial {
    min-height: 310px;
  }
  .hero__paper {
    width: min(128px, 41%);
  }
  .hero__paper strong {
    font-size: .57rem;
  }
  .hero__paper--top {
    top: .15rem;
    right: .08rem;
  }
  .hero__paper--bottom {
    left: .25rem;
    bottom: .55rem;
  }}

/* =========================================================================
   PLANES — ajustes ChatGPT v1 (misma línea visual que la home)
   ========================================================================= */
.plans-page {
  background: #111;
}

.plans-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: calc(var(--nav-h) + clamp(3.8rem, 7vw, 5.8rem));
  padding-bottom: clamp(3.2rem, 7vw, 5.8rem);
  background:
    radial-gradient(620px 360px at 62% -10%, rgba(251,186,58,.13), transparent 72%),
    linear-gradient(135deg, #1f1f1f 0%, #171717 58%, #202020 100%);
  color: #fff;
}
.plans-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(106deg, rgba(255,255,255,.025) 0 1px, transparent 1px 118px);
  opacity: .75;
  pointer-events: none;
}
.plans-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, .82fr);
  gap: clamp(2.2rem, 6vw, 5rem);
  align-items: center;
}
.plans-hero__content {
  max-width: 740px;
}
.plans-hero .hero__badge {
  margin-bottom: 1.35rem;
}
.plans-hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.6vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
  color: #fff;
  max-width: 12ch;
}
.plans-hero h1 span { display: block; }
.plans-hero h1 .hero__title-accent { color: var(--amarillo); }
.plans-hero p {
  max-width: 58ch;
  color: #D8CFC1;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}
.plans-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.7rem;
}
.plans-hero__points span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 36px;
  padding: .52rem .78rem;
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  color: #E5DDD0;
  font-size: .9rem;
  line-height: 1.1;
}
.plans-hero__points span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--amarillo);
}
.plans-hero__visual {
  position: relative;
  min-height: 390px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    rgba(255,255,255,.035);
  border: 1px solid rgba(251,186,58,.22);
  box-shadow: 0 26px 60px rgba(0,0,0,.28);
}
.plans-hero__visual::before {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -58px;
  width: 210px;
  height: 210px;
  border: 32px solid rgba(251,186,58,.11);
  border-radius: 50%;
}
.plans-ticket {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 22px 42px rgba(0,0,0,.28);
}
.plans-ticket--main {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-1deg);
  width: min(78%, 330px);
  padding: 1.45rem;
  background: #F4F0E8;
  color: #17120D;
}
.plans-ticket__kicker {
  display: block;
  color: var(--amarillo-dp);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .7rem;
  font-weight: 800;
  margin-bottom: .75rem;
}
.plans-ticket strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: .9;
  letter-spacing: -.04em;
}
.plans-ticket small {
  display: block;
  margin-top: .55rem;
  color: #5C5648;
  font-weight: 600;
}
.plans-ticket b {
  display: block;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(21,18,14,.12);
  font-size: 1.3rem;
}
.plans-ticket--small {
  padding: .9rem 1rem;
  background: #15120E;
  color: #fff;
  border: 1px solid rgba(251,186,58,.28);
  font-weight: 800;
  line-height: 1.15;
}
.plans-ticket--small span {
  display: block;
  margin-top: .25rem;
  color: var(--amarillo);
  font-size: .85rem;
}
.plans-ticket--one { left: 1.15rem; top: 1.25rem; }
.plans-ticket--two { right: 1.15rem; bottom: 1.25rem; }

.plans-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #F4F0E8, #ECE6D9);
}
.plans-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,18,14,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,18,14,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.plans-section > .container { position: relative; z-index: 1; }
.plans-page .plans--editorial {
  align-items: stretch;
  gap: clamp(1rem, 2.2vw, 1.45rem);
}
.plans-page .plan {
  border-radius: 24px;
  padding: clamp(1.45rem, 2.6vw, 2.15rem);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(21,18,14,.08);
  box-shadow: 0 18px 48px rgba(21,18,14,.08);
  overflow: visible;
}
@media (hover: hover) {
  .plans-page .plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(21,18,14,.12);
  }
}
.plans-page .plan--featured {
  background: linear-gradient(180deg, #fff, #FFF7EA);
  border-color: rgba(251,186,58,.55);
  box-shadow: 0 24px 62px rgba(251,186,58,.16);
}
.plans-page .plan__flag {
  top: -16px;
  padding: .48rem 1.05rem;
  box-shadow: 0 12px 26px rgba(251,186,58,.24);
}
.plan__topline {
  min-height: 1.4rem;
  margin-bottom: .65rem;
}
.plan__topline span {
  display: inline-flex;
  padding: .28rem .6rem;
  border-radius: 999px;
  background: rgba(251,186,58,.13);
  color: var(--amarillo-dp);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.plans-page .plan__name {
  color: #111;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  margin-bottom: .15rem;
}
.plans-page .plan__tag {
  margin-bottom: 1.35rem;
  color: var(--amarillo-dp);
  font-weight: 650;
}
.plans-page .plan__price {
  margin-bottom: .4rem;
}
.plans-page .plan__price .amount {
  color: #111;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  letter-spacing: -.055em;
}
.plans-page .plan__activation {
  color: #5C5648;
  border-bottom-color: rgba(21,18,14,.10);
}
.plans-page .plan__activation strong { color: var(--amarillo-dp); }
.plans-page .plan__features {
  gap: .72rem;
}
.plans-page .plan__features li {
  color: #211B12;
  line-height: 1.42;
}
.plans-page .plan__features .check {
  color: var(--amarillo-dp);
  font-weight: 900;
  margin-right: .15rem;
  transform: translateY(-1px);
}
.plans-page .plan .btn {
  margin-top: auto;
}
.plans-help {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .65rem .95rem;
  margin: 2rem auto 0;
  max-width: 760px;
  padding: .9rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(21,18,14,.08);
  color: #312A1E;
  box-shadow: 0 14px 34px rgba(21,18,14,.07);
}
.plans-help strong { color: #111; }
.plans-help a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--amarillo-dp);
  font-weight: 800;
}

.plans-faq {
  background: #111;
  color: #fff;
  overflow: hidden;
}
.plans-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.plans-faq h2 {
  font-size: clamp(1.9rem, 3.7vw, 3.15rem);
  line-height: 1;
  letter-spacing: -.035em;
  margin-bottom: 1.5rem;
}
.plans-page .faq--plans {
  max-width: none;
  margin-inline: 0;
}
.plans-page .faq__item {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}
.plans-page .faq__item.is-open {
  border-color: rgba(251,186,58,.34);
}
@media (hover: hover) {
  .plans-page .faq__item:hover {
    border-color: rgba(251,186,58,.34);
  }
}
.plans-page .faq__q {
  padding: 1rem 1.1rem;
  font-size: .98rem;
}
.plans-page .faq__a {
  padding-inline: 1.1rem;
}
.plans-faq__aside {
  position: sticky;
  top: calc(var(--nav-h) + 1.2rem);
}
.faq-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 24px 24px 0 0;
  background: #222;
  border: 1px solid rgba(251,186,58,.20);
  border-bottom: 0;
}
.faq-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(.92) brightness(.78);
}
.faq-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17,17,17,.82));
}
.faq-card {
  position: relative;
  margin-top: -1px;
  padding: clamp(1.25rem, 3vw, 1.7rem);
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    #1f1f1f;
  border: 1px solid rgba(251,186,58,.20);
  box-shadow: 0 22px 52px rgba(0,0,0,.28);
}
.faq-card span {
  display: block;
  color: var(--amarillo);
  font-weight: 800;
  font-size: .82rem;
  margin-bottom: .55rem;
}
.faq-card h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: -.035em;
  margin-bottom: .75rem;
  color: #fff;
}
.faq-card p {
  color: #D8CFC1;
  font-size: .95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.faq-card .btn + .btn { margin-top: .65rem; }
.faq-card .btn--ghost {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}

.plans-page .cta-band {
  background: #111;
}
.plans-page .cta-band h2 {
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  max-width: 18ch;
}

@media (max-width: 980px) {
  .plans-hero__grid,
  .plans-faq__grid {
    grid-template-columns: 1fr;
  }
  .plans-hero__visual {
    min-height: 300px;
    max-width: 560px;
  }
  .plans-faq__aside {
    position: relative;
    top: auto;
    max-width: 520px;
  }}
@media (max-width: 900px) {
  .plans-page .plans--editorial {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }}
@media (max-width: 860px) {
  .plans-hero {
    padding-top: calc(var(--nav-h) + 2.4rem);
    padding-bottom: 3rem;
  }
  .plans-hero h1 {
    font-size: clamp(2rem, 9vw, 3.2rem);
    max-width: 12ch;
  }
  .plans-hero p {
    font-size: .98rem;
  }
  .plans-hero__points {
    align-items: flex-start;
  }
  .plans-help {
    align-items: flex-start;
    border-radius: 20px;
    justify-content: flex-start;
  }
  .plans-faq h2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  .faq-visual {
    aspect-ratio: 16 / 9;
  }}
@media (max-width: 520px) {
  .plans-ticket--main {
    width: 80%;
    padding: 1.15rem;
  }
  .plans-ticket--small {
    font-size: .85rem;
    padding: .7rem .8rem;
  }
  .plans-ticket--one { left: .7rem; top: .8rem; }
  .plans-ticket--two { right: .7rem; bottom: .8rem; }
  .plans-page .plan__price .amount {
    font-size: 2rem;
  }}

/* =========================================================================
   PLANES — corrección v2: seguir línea visual home, menos IA y menos exagerado
   ========================================================================= */
.plans-hero--aligned {
  background:
    radial-gradient(520px 320px at 72% 4%, rgba(251,186,58,.10), transparent 74%),
    linear-gradient(135deg, #1f1f1f 0%, #171717 58%, #202020 100%);
  padding-top: calc(var(--nav-h) + clamp(3.1rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6.5vw, 5.2rem);
}
.plans-hero--aligned .plans-hero__grid {
  grid-template-columns: minmax(0, 1.26fr) minmax(280px, .74fr);
  gap: clamp(2rem, 5vw, 4.2rem);
}
.plans-hero--aligned .plans-hero__content { max-width: 760px; }
.plans-hero--aligned .hero__badge {
  display: inline-flex;
  margin-bottom: 1.65rem;
  padding-bottom: .68rem;
  border-bottom: 2px solid var(--amarillo);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--amarillo);
}
.plans-hero--aligned h1 {
  max-width: 17ch;
  margin-bottom: 1.65rem;
  font-size: clamp(2.05rem, 3.55vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: .012em;
  text-transform: uppercase;
  color: #fff;
}
.plans-hero--aligned p {
  max-width: 64ch;
  margin-bottom: 0;
  color: #D8CFC1;
  font-size: clamp(.98rem, 1.34vw, 1.11rem);
  line-height: 1.72;
}
.plans-hero--aligned .plans-hero__points {
  gap: .65rem;
  margin-top: 1.65rem;
}
.plans-hero--aligned .plans-hero__points span {
  min-height: 34px;
  padding: .48rem .76rem;
  font-size: .82rem;
  letter-spacing: .005em;
}
.plans-hero__visual--clean {
  min-height: 0;
  max-width: 430px;
  justify-self: end;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    rgba(255,255,255,.035);
  border: 1px solid rgba(251,186,58,.20);
  box-shadow: 0 26px 60px rgba(0,0,0,.26);
}
.plans-hero__visual--clean::before {
  right: -58px;
  bottom: -70px;
  width: 176px;
  height: 176px;
  border-width: 26px;
  opacity: .75;
}
.plans-preview {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .85rem;
}
.plans-preview__eyebrow {
  display: inline-flex;
  align-self: start;
  width: max-content;
  padding: .36rem .72rem;
  border-radius: 999px;
  background: rgba(251,186,58,.14);
  color: var(--amarillo);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.plans-preview__main {
  background: #F4F0E8;
  color: #17120D;
  border-radius: 20px;
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  box-shadow: 0 18px 42px rgba(0,0,0,.25);
  transform: rotate(-.35deg);
}
.plans-preview__main strong {
  display: block;
  color: #17120D;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: .95;
  letter-spacing: -.025em;
}
.plans-preview__main small {
  display: block;
  margin-top: .45rem;
  color: #5C5648;
  font-weight: 700;
}
.plans-preview__main b {
  display: block;
  margin-top: 1rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(21,18,14,.12);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: #17120D;
}
.plans-preview__main b span { color: #5C5648; font-size: .72em; font-weight: 700; }
.plans-preview__rows { display: grid; gap: .55rem; }
.plans-preview__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: .72rem .82rem;
  border-radius: 14px;
  background: rgba(15,14,13,.72);
  border: 1px solid rgba(255,255,255,.08);
  color: #EDE6DA;
  font-size: .88rem;
}
.plans-preview__row strong { color: #fff; font-size: .86rem; white-space: nowrap; }
.plans-preview__row.is-active {
  border-color: rgba(251,186,58,.35);
  background: rgba(251,186,58,.11);
}
.plans-preview__row.is-active strong { color: var(--amarillo); }

/* Evita que los títulos de planes se vayan al tamaño bruto del primer intento */
.plans-section .section-head h2,
.plans-faq h2,
.plans-page .cta-band h2 {
  letter-spacing: .005em;
  line-height: 1.12;
}
.plans-section .section-head h2 { font-size: clamp(1.75rem, 3.1vw, 2.55rem); }
.plans-faq h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
.plans-page .cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.45rem); }

@media (max-width: 980px) {
  .plans-hero--aligned .plans-hero__grid { grid-template-columns: 1fr; }
  .plans-hero__visual--clean {
    justify-self: start;
    width: min(100%, 470px);
    max-width: 470px;
  }}
@media (max-width: 860px) {
  .plans-hero--aligned {
    padding-top: calc(var(--nav-h) + 2.35rem);
    padding-bottom: 2.7rem;
  }
  .plans-hero--aligned .hero__badge {
    margin-bottom: 1.35rem;
    font-size: .78rem;
  }
  .plans-hero--aligned h1 {
    max-width: 15ch;
    font-size: clamp(1.82rem, 8.1vw, 2.65rem);
    line-height: 1.1;
    letter-spacing: .01em;
    margin-bottom: 1.35rem;
  }
  .plans-hero--aligned p {
    max-width: 36ch;
    font-size: .96rem;
    line-height: 1.68;
  }
  .plans-hero--aligned .plans-hero__points {
    margin-top: 1.35rem;
    gap: .55rem;
  }
  .plans-hero--aligned .plans-hero__points span {
    font-size: .78rem;
    min-height: 32px;
    padding: .42rem .66rem;
  }
  .plans-hero__visual--clean {
    width: 100%;
    padding: .9rem;
    border-radius: 20px;
  }
  .plans-preview__main { padding: 1rem; border-radius: 17px; }
  .plans-preview__main strong { font-size: clamp(1.75rem, 9vw, 2.35rem); }
  .plans-preview__row {
    padding: .62rem .7rem;
    font-size: .8rem;
  }
  .plans-preview__row strong { font-size: .78rem; }
  .plans-section .section-head h2 { font-size: clamp(1.55rem, 6.5vw, 2.05rem); }
  .plans-faq h2 { font-size: clamp(1.45rem, 6vw, 1.95rem); }
  .plans-page .cta-band h2 { font-size: clamp(1.5rem, 6vw, 2rem); }}
@media (max-width: 520px) {
  .plans-hero--aligned h1 { font-size: clamp(1.62rem, 7vw, 2.08rem); }
  .plans-hero--aligned .plans-hero__points span { font-size: .75rem; }
  .plans-preview__eyebrow { font-size: .62rem; }}


/* =========================================================================
   CONTACTO — ajuste visual ChatGPT v1
   Mantiene línea home/planes: oscuro #1f1f1f, H1 controlado, cards vivas.
   ========================================================================= */
.contact-page {
  background: #1f1f1f;
}
.contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--nav-h) + clamp(3.2rem, 8vw, 6rem)) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(680px 360px at 56% 2%, rgba(251,186,58,0.10), transparent 66%),
    linear-gradient(115deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 100%),
    #1f1f1f;
  background-size: auto, 150px 100%, auto;
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(251,186,58,0.28);
  opacity: 0.8;
}
.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.contact-hero__content {
  max-width: 760px;
}
.contact-hero__eyebrow {
  color: var(--amarillo-lt);
  padding-bottom: 0.75rem;
  margin-bottom: clamp(1.45rem, 3vw, 2rem);
  border-bottom: 2px solid rgba(251,186,58,0.75);
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.2vw, 4.65rem);
  line-height: 0.97;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  max-width: 10.5ch;
  margin-bottom: clamp(1.5rem, 3.2vw, 2.2rem);
  color: var(--blanco);
}
.contact-hero h1 span { color: var(--amarillo); }
.contact-hero p {
  max-width: 55ch;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  color: #d2cbc0;
  margin-bottom: clamp(1.9rem, 3.4vw, 2.5rem);
}
.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.contact-hero__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 3.6vw, 2.4rem);
  border: 1px solid rgba(251,186,58,0.30);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    #181513;
  box-shadow: 0 24px 70px rgba(0,0,0,0.34);
}
.contact-hero__card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -95px;
  width: 210px;
  height: 210px;
  border: 34px solid rgba(251,186,58,0.13);
  border-radius: 50%;
  pointer-events: none;
}
.contact-hero__card-kicker {
  display: inline-block;
  color: var(--amarillo-lt);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.contact-flow {
  display: grid;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}
.contact-flow li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.07);
}
.contact-flow span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--amarillo);
  color: #201303;
  font-family: var(--font-display);
  font-weight: 900;
}
.contact-flow p {
  margin: 0;
  color: #e9e0d3;
  font-size: 0.96rem;
  line-height: 1.35;
}
.contact-section {
  position: relative;
  background:
    linear-gradient(rgba(21,18,14,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,18,14,0.035) 1px, transparent 1px),
    var(--hueso);
  background-size: 54px 54px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(21,18,14,0.18);
  border: 1px solid rgba(21,18,14,0.10);
}
.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.1rem);
  background:
    radial-gradient(420px 300px at 0% 100%, rgba(251,186,58,0.14), transparent 70%),
    #1f1f1f;
  color: #d3cbc0;
}
.contact-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 38px solid rgba(251,186,58,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.contact-panel > * { position: relative; z-index: 1; }
.contact-panel h2 {
  max-width: 12.5ch;
  font-size: clamp(1.65rem, 3.6vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}
.contact-panel__intro {
  max-width: 43ch;
  color: #beb6aa;
  font-size: 0.98rem;
  line-height: 1.62;
  margin-bottom: 1.45rem;
}
.contact-wa-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem;
  border-radius: var(--radius);
  background: rgba(251,186,58,0.12);
  border: 1px solid rgba(251,186,58,0.34);
  margin-bottom: 1rem;
  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
@media (hover: hover) {
  .contact-wa-card:hover {
    transform: translateY(-2px);
    border-color: rgba(251,186,58,0.55);
    background: rgba(251,186,58,0.16);
  }
}
.contact-wa-card__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--amarillo);
  color: #201303;
  font-size: 1.35rem;
}
.contact-wa-card strong,
.contact-wa-card small {
  display: block;
}
.contact-wa-card strong {
  color: var(--blanco);
  font-size: 1.02rem;
  line-height: 1.2;
}
.contact-wa-card small {
  color: #bdb5aa;
  font-size: 0.82rem;
  margin-top: 0.15rem;
}
.contact-data {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}
.contact-data__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.075);
}
.contact-data__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(251,186,58,0.13);
  color: var(--amarillo-lt);
}
.contact-data__icon svg { width: 21px; height: 21px; }
.contact-data small,
.contact-data strong { display: block; }
.contact-data small {
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8d857b;
}
.contact-data strong {
  font-size: 0.86rem;
  color: var(--blanco);
  line-height: 1.3;
  word-break: break-word;
}
.contact-panel__socials {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.2rem;
}
.contact-panel__socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #cfc7bd;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.04);
  transition: color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
@media (hover: hover) {
  .contact-panel__socials a:hover {
    color: var(--amarillo-lt);
    border-color: rgba(251,186,58,0.45);
    transform: translateY(-2px);
  }
}
.contact-panel__socials svg { width: 19px; height: 19px; }
.contact-form-card {
  padding: clamp(2rem, 4vw, 3.1rem);
  background: #fbf7ee;
}
.contact-form-card__tag {
  display: inline-block;
  color: var(--amarillo-dp);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.contact-form-card h2 {
  color: #100d09;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.05;
  margin-bottom: 0.55rem;
}
.contact-form-card > p {
  max-width: 42ch;
  color: var(--tinta-soft);
  font-size: 0.96rem;
  line-height: 1.55;
  margin-bottom: 1.4rem;
}
.contact-form-card .field { margin-bottom: 1rem; }
.contact-form-card .field label {
  color: #100d09;
  font-size: 0.82rem;
  font-weight: 700;
}
.contact-form-card .field input,
.contact-form-card .field textarea {
  background: #fff;
  border: 1px solid rgba(21,18,14,0.14);
  color: var(--tinta);
  min-height: 48px;
}
.contact-form-card .field textarea { min-height: 132px; }
.contact-form-card .field input::placeholder,
.contact-form-card .field textarea::placeholder { color: #9a9488; }
.contact-form-card .field input:focus,
.contact-form-card .field textarea:focus {
  border-color: var(--amarillo-dp);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(251,186,58,0.16);
}
.contact-form-card .btn--primary {
  box-shadow: 0 12px 28px rgba(251,186,58,0.22);
}
.contact-form-card .form-status.ok {
  background: rgba(251,186,58,0.14);
  border-color: rgba(201,126,18,0.4);
  color: var(--amarillo-dp);
}
@media (max-width: 920px) {
  .contact-hero__grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-hero__card {
    max-width: 520px;
  }}
@media (max-width: 860px) {
  .contact-hero {
    padding-top: calc(var(--nav-h) + 2.2rem);
    padding-bottom: 3rem;
  }
  .contact-hero__grid { gap: 2rem; }
  .contact-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    max-width: 10.8ch;
    margin-bottom: 1.4rem;
  }
  .contact-hero p {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }
  .contact-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-hero__actions .btn { width: 100%; }
  .contact-hero__card { padding: 1.35rem; }
  .contact-flow li { padding: 0.8rem; }
  .contact-section { padding-block: 3rem; }
  .contact-layout { border-radius: 22px; }
  .contact-panel,
  .contact-form-card { padding: 1.55rem; }
  .contact-panel h2 { font-size: clamp(1.5rem, 9vw, 2.15rem); max-width: 12.5ch; }
  .contact-wa-card { align-items: flex-start; }
  .contact-data__item { grid-template-columns: 38px 1fr; }
  .contact-data__icon { width: 38px; height: 38px; }}
@media (max-width: 420px) {
  .contact-hero h1 { font-size: 2.15rem; }
  .contact-hero__eyebrow { font-size: 0.82rem; }
  .contact-panel,
  .contact-form-card { padding: 1.25rem; }
  .contact-wa-card strong { font-size: 0.95rem; }
  .contact-data strong { font-size: 0.8rem; }}


/* =========================================================================
   CONTACTO — corrección v2
   Títulos más chicos + contraste correcto en panel oscuro.
   ========================================================================= */
.contact-hero {
  padding: calc(var(--nav-h) + clamp(2.6rem, 6vw, 4.4rem)) 0 clamp(2.7rem, 5vw, 4.2rem);
}
.contact-hero__grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(2rem, 5vw, 4.2rem);
}
.contact-hero__eyebrow {
  margin-bottom: clamp(1.25rem, 2.4vw, 1.7rem);
}
.contact-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0.025em;
  max-width: 13.5ch;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.contact-hero p {
  font-size: clamp(0.98rem, 1.22vw, 1.08rem);
  line-height: 1.62;
  max-width: 55ch;
  margin-bottom: clamp(1.55rem, 2.7vw, 2rem);
}
.contact-hero__card {
  padding: clamp(1.45rem, 2.8vw, 2rem);
}
.contact-flow li {
  padding: 0.82rem 0.9rem;
  grid-template-columns: 34px 1fr;
}
.contact-flow span {
  width: 34px;
  height: 34px;
  font-size: 0.92rem;
}
.contact-flow p {
  font-size: 0.9rem;
}

/* El bloque izquierdo está dentro de section--light: hay que forzar contraste oscuro correctamente. */
.section--light .contact-panel h2,
.contact-panel h2 {
  color: var(--blanco);
  font-size: clamp(1.35rem, 2.35vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: 0.004em;
  max-width: 18ch;
}
.section--light .contact-panel p,
.contact-panel p,
.contact-panel__intro {
  color: #c9c0b5;
}
.section--light .contact-panel strong,
.contact-panel strong {
  color: var(--blanco);
}
.section--light .contact-panel .eyebrow,
.contact-panel .eyebrow {
  color: var(--amarillo-lt);
}
.contact-panel__intro {
  font-size: 0.92rem;
  line-height: 1.58;
  max-width: 37ch;
}
.contact-wa-card strong {
  font-size: 0.94rem;
}
.contact-data strong {
  font-size: 0.8rem;
}
.contact-form-card h2 {
  font-size: clamp(1.45rem, 2.25vw, 1.9rem);
  letter-spacing: -0.005em;
}
.contact-form-card > p {
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .contact-hero__grid { gap: 1.8rem; }
  .contact-hero__card { max-width: none; }}

@media (max-width: 860px) {
  .contact-hero {
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: 2.75rem;
  }
  .contact-hero h1 {
    font-size: clamp(1.85rem, 8.6vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: 0.022em;
    max-width: 12.5ch;
    margin-bottom: 1.25rem;
  }
  .contact-hero p {
    font-size: 0.96rem;
    line-height: 1.58;
    margin-bottom: 1.45rem;
  }
  .contact-hero__card { padding: 1.15rem; }
  .contact-flow li {
    grid-template-columns: 32px 1fr;
    gap: 0.75rem;
    padding: 0.72rem;
  }
  .contact-flow span { width: 32px; height: 32px; }
  .contact-flow p { font-size: 0.86rem; }
  .contact-panel h2,
  .section--light .contact-panel h2 {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    max-width: 18ch;
  }
  .contact-form-card h2 {
    font-size: clamp(1.35rem, 6.3vw, 1.8rem);
  }
  .contact-panel__intro,
  .contact-form-card > p {
    font-size: 0.9rem;
  }}

@media (max-width: 420px) {
  .contact-hero h1 {
    font-size: 1.82rem;
    max-width: 12ch;
  }
  .contact-hero__eyebrow { font-size: 0.76rem; }
  .contact-panel h2,
  .section--light .contact-panel h2,
  .contact-form-card h2 {
    font-size: 1.45rem;
  }}

/* =========================================================================
   CONTACTO — corrección v3
   Arreglo real de mobile: sin columnas apretadas, títulos chicos y contraste forzado.
   ========================================================================= */

/* Mobile-first: contacto NO arranca en dos columnas. */
.contact-hero__grid,
.contact-layout {
  grid-template-columns: 1fr !important;
}

.contact-hero {
  padding-top: calc(var(--nav-h) + clamp(2.1rem, 5vw, 3.4rem));
  padding-bottom: clamp(2.4rem, 5vw, 3.8rem);
}

.contact-hero__content {
  max-width: 760px;
  min-width: 0;
}

.contact-hero h1 {
  font-size: clamp(2rem, 3.2vw, 3rem) !important;
  line-height: 1.12 !important;
  letter-spacing: 0.018em !important;
  max-width: 15ch !important;
  margin-bottom: 1.45rem !important;
}

.contact-hero p {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem) !important;
  line-height: 1.6 !important;
  max-width: 54ch;
}

.contact-hero__card {
  width: 100%;
  max-width: 520px;
  justify-self: stretch;
  padding: clamp(1.15rem, 2.4vw, 1.7rem) !important;
}

.contact-flow {
  gap: 0.75rem !important;
}

.contact-flow li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  gap: 0.85rem !important;
  align-items: center !important;
  min-height: 66px;
  padding: 0.8rem 0.9rem !important;
  width: 100%;
}

.contact-flow span {
  width: 34px !important;
  height: 34px !important;
  font-size: 0.9rem !important;
}

.contact-flow p {
  color: #eee5da !important;
  font-size: 0.88rem !important;
  line-height: 1.35 !important;
  margin: 0 !important;
}

/* Contraste: nada oscuro sobre panel oscuro. */
.section--light .contact-panel,
.contact-panel {
  color: #d4cbc0 !important;
}

.section--light .contact-panel h2,
.contact-panel h2 {
  color: #ffffff !important;
  font-size: clamp(1.45rem, 2vw, 1.85rem) !important;
  line-height: 1.14 !important;
  letter-spacing: 0.002em !important;
  max-width: 18ch !important;
}

.section--light .contact-panel p,
.section--light .contact-panel .contact-panel__intro,
.contact-panel p,
.contact-panel .contact-panel__intro {
  color: #cfc6bb !important;
}

.section--light .contact-panel strong,
.section--light .contact-panel .contact-data strong,
.section--light .contact-panel .contact-wa-card strong,
.contact-panel strong,
.contact-data strong,
.contact-wa-card strong {
  color: #ffffff !important;
}

.contact-panel__intro {
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.contact-form-card h2 {
  font-size: clamp(1.45rem, 2vw, 1.85rem) !important;
  line-height: 1.12 !important;
}

/* Desktop: recién desde ancho cómodo se vuelve a dos columnas. */
@media (min-width: 980px) {
  .contact-hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr) !important;
    align-items: center;
  }
  .contact-layout {
    grid-template-columns: minmax(310px, 0.86fr) minmax(0, 1.14fr) !important;
  }
  .contact-hero__card {
    max-width: none;
    justify-self: end;
  }}

@media (max-width: 860px) {
  .contact-hero {
    padding-top: calc(var(--nav-h) + 1.9rem) !important;
    padding-bottom: 2.35rem !important;
  }
  .contact-hero__grid {
    gap: 1.55rem !important;
  }
  .contact-hero h1 {
    font-size: clamp(1.85rem, 7.2vw, 2.45rem) !important;
    line-height: 1.12 !important;
    max-width: 14ch !important;
    margin-bottom: 1.1rem !important;
  }
  .contact-hero p {
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
    max-width: 34ch;
    margin-bottom: 1.3rem !important;
  }
  .contact-hero__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    max-width: 340px;
  }
  .contact-hero__actions .btn {
    width: 100% !important;
    min-height: 52px;
  }
  .contact-hero__card {
    max-width: none !important;
    border-radius: 20px !important;
  }
  .contact-flow li {
    min-height: 58px;
    grid-template-columns: 32px minmax(0, 1fr) !important;
    gap: 0.72rem !important;
    padding: 0.72rem !important;
  }
  .contact-flow span {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.84rem !important;
  }
  .contact-flow p {
    font-size: 0.84rem !important;
  }
  .contact-panel,
  .contact-form-card {
    padding: 1.35rem !important;
  }
  .contact-panel h2,
  .section--light .contact-panel h2,
  .contact-form-card h2 {
    font-size: clamp(1.35rem, 6vw, 1.72rem) !important;
    line-height: 1.14 !important;
    max-width: 18ch !important;
  }
  .contact-wa-card {
    align-items: center !important;
  }}

@media (max-width: 420px) {
  .contact-hero h1 {
    font-size: 1.78rem !important;
    max-width: 13ch !important;
  }
  .contact-hero p {
    max-width: 30ch;
  }
  .contact-hero__card,
  .contact-panel,
  .contact-form-card {
    padding: 1.1rem !important;
  }
  .contact-flow li {
    min-height: 56px;
  }
  .contact-flow p {
    font-size: 0.8rem !important;
  }}

/* =========================================================================
   CONTACTO — corrección v4
   Mobile real: bloque "Qué pasa después" compacto, centrado y alineado.
   ========================================================================= */
@media (max-width: 860px) {
  .contact-hero__card {
    width: min(100%, 370px) !important;
    max-width: 370px !important;
    justify-self: center !important;
    margin-inline: auto !important;
    padding: 1rem !important;
    border-radius: 18px !important;
  }

  .contact-hero__card::after {
    width: 150px !important;
    height: 150px !important;
    right: -76px !important;
    bottom: -76px !important;
    border-width: 22px !important;
    opacity: .7 !important;
  }

  .contact-hero__card-kicker {
    display: block !important;
    margin-bottom: .75rem !important;
    font-size: .68rem !important;
    letter-spacing: .08em !important;
  }

  .contact-flow {
    gap: .55rem !important;
  }

  .contact-flow li {
    grid-template-columns: 28px minmax(0, 1fr) !important;
    gap: .65rem !important;
    min-height: 48px !important;
    padding: .62rem .68rem !important;
    border-radius: 14px !important;
    align-items: center !important;
  }

  .contact-flow span {
    width: 28px !important;
    height: 28px !important;
    font-size: .78rem !important;
    line-height: 1 !important;
  }

  .contact-flow p {
    font-size: .78rem !important;
    line-height: 1.25 !important;
    text-align: left !important;
  }}

@media (max-width: 520px) {
  .contact-hero__card {
    width: min(100%, 330px) !important;
    max-width: 330px !important;
    padding: .85rem !important;
    border-radius: 16px !important;
  }

  .contact-flow li {
    grid-template-columns: 26px minmax(0, 1fr) !important;
    gap: .58rem !important;
    min-height: 44px !important;
    padding: .55rem .6rem !important;
    border-radius: 13px !important;
  }

  .contact-flow span {
    width: 26px !important;
    height: 26px !important;
    font-size: .72rem !important;
  }

  .contact-flow p {
    font-size: .74rem !important;
  }}

@media (max-width: 390px) {
  .contact-hero__card {
    width: min(100%, 306px) !important;
    max-width: 306px !important;
  }

  .contact-flow p {
    font-size: .72rem !important;
  }}


/* =========================================================================
   NOSOTROS — ajuste visual ChatGPT v1
   Línea home: #1f1f1f, títulos controlados, editorial local, mobile first.
   ========================================================================= */
.about-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: calc(var(--nav-h) + clamp(2.4rem, 5vw, 4.2rem));
  padding-bottom: clamp(3rem, 7vw, 5.4rem);
  background:
    radial-gradient(720px 420px at 70% -8%, rgba(251,186,58,.13), transparent 62%),
    linear-gradient(110deg, rgba(255,255,255,.035) 0 1px, transparent 1px 118px),
    #1f1f1f;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 44%, rgba(251,186,58,.045) 45%, transparent 46% 100%);
  opacity: .55;
  pointer-events: none;
  z-index: -1;
}
.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: center;
}
.about-hero .eyebrow {
  display: inline-flex;
  padding-bottom: .7rem;
  border-bottom: 2px solid var(--amarillo);
  margin-bottom: clamp(1.2rem, 2.4vw, 1.7rem);
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.15vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: .012em;
  text-transform: uppercase;
  max-width: 13.2ch;
  margin: 0 0 clamp(1.2rem, 2.5vw, 1.7rem);
}
.about-hero h1 span { color: var(--amarillo); }
.about-hero__sub {
  max-width: 58ch;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.62;
  color: #d8d1c5;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}
.about-hero__card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  background: rgba(24, 22, 20, .86);
  border: 1px solid rgba(251,186,58,.28);
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
}
.about-hero__card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -88px;
  bottom: -88px;
  border: 30px solid rgba(251,186,58,.14);
  border-radius: 50%;
  pointer-events: none;
}
.about-hero__card-kicker,
.about-section__kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--amarillo-lt);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.about-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .75rem;
}
.about-steps li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: .85rem;
  align-items: center;
  min-height: 62px;
  padding: .78rem .9rem;
  border-radius: 16px;
  background: rgba(10,10,11,.45);
  border: 1px solid rgba(255,255,255,.06);
}
.about-steps span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--amarillo);
  color: #171006;
  font-weight: 800;
}
.about-steps p {
  margin: 0;
  color: #f2eee6;
  font-weight: 700;
  line-height: 1.28;
  font-size: .98rem;
}
.about-story {
  background: var(--hueso);
  color: var(--tinta);
  padding-block: clamp(3.8rem, 7vw, 6rem);
}
.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.3rem);
  align-items: start;
}
.about-story__panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(1.6rem, 4vw, 2.3rem);
  background: #1f1f1f;
  color: var(--blanco);
  box-shadow: 0 22px 56px rgba(21,18,14,.13);
}
.about-story__panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border: 32px solid rgba(251,186,58,.16);
  border-radius: 50%;
}
.about-story__panel h2,
.about-values h2,
.about-diff h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 1rem;
}
.about-story__panel p {
  color: #d5cec2;
  max-width: 37ch;
  margin: 0 0 1.25rem;
  font-size: 1rem;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  position: relative;
  z-index: 1;
}
.about-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .5rem .78rem;
  border-radius: 999px;
  border: 1px solid rgba(251,186,58,.28);
  color: var(--amarillo-lt);
  background: rgba(251,186,58,.08);
  font-size: .82rem;
  font-weight: 800;
}
.about-copy {
  display: grid;
  gap: 1rem;
}
.about-copy article {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--borde-lt);
  box-shadow: 0 16px 36px rgba(21,18,14,.06);
}
.about-copy h3 {
  color: #111;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.2;
  margin: 0 0 .55rem;
}
.about-copy p {
  color: var(--tinta-soft);
  margin: 0;
  max-width: 66ch;
  font-size: .98rem;
  line-height: 1.66;
}
.about-values {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.8rem, 7vw, 6rem);
  background:
    radial-gradient(680px 320px at 75% 0%, rgba(251,186,58,.11), transparent 60%),
    #1f1f1f;
}
.about-values__head {
  max-width: 640px;
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
}
.about-values__head p {
  color: #c9c1b5;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  max-width: 55ch;
}
.about-values__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .9rem;
}
.about-value {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: .95rem;
  align-items: start;
  padding: 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}
.about-value__ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(251,186,58,.12);
  color: var(--amarillo-lt);
}
.about-value__ico i,
.about-value__ico .icon { font-size: 1.05rem; }
.about-value h3 {
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 0 0 .35rem;
}
.about-value p {
  color: #c9c1b5;
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
}
.about-diff {
  padding-block: clamp(3.8rem, 7vw, 6rem);
  background: var(--hueso);
}
.about-diff__head {
  max-width: 640px;
  text-align: center;
  margin: 0 auto clamp(1.6rem, 4vw, 2.5rem);
}
.about-diff h2 { color: #111; }
.about-diff__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .95rem;
  max-width: 960px;
  margin-inline: auto;
}
.about-diff__item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--borde-lt);
  box-shadow: 0 14px 30px rgba(21,18,14,.06);
}
.about-diff__item i,
.about-diff__item .icon {
  margin-top: .15rem;
  color: var(--amarillo-dp);
  font-size: 1.05rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.about-diff__item h3 {
  color: #111;
  font-size: 1.02rem;
  line-height: 1.2;
  margin: 0 0 .28rem;
}
.about-diff__item p {
  color: var(--tinta-soft);
  margin: 0;
  font-size: .92rem;
  line-height: 1.52;
}
.about-cta {
  background: #101010;
  padding-block: clamp(3.2rem, 6vw, 5rem);
}
.about-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.3rem, 3vw, 2rem);
  align-items: center;
  border-radius: 26px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background:
    radial-gradient(340px 220px at 0% 100%, rgba(251,186,58,.14), transparent 70%),
    #242424;
  border: 1px solid rgba(251,186,58,.2);
  box-shadow: 0 26px 62px rgba(0,0,0,.28);
}
.about-cta__box h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -.01em;
}
.about-cta__box p {
  color: #d5cec2;
  max-width: 42ch;
  margin: .75rem 0 0;
  font-size: 1rem;
  line-height: 1.55;
}
.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (min-width: 760px) {
  .about-values__grid,
  .about-diff__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }}
@media (min-width: 960px) {
  .about-hero__grid { grid-template-columns: 1.05fr .85fr; }
  .about-story__grid { grid-template-columns: .78fr 1.22fr; }
  .about-cta__box { grid-template-columns: 1fr auto; }
  .about-cta__actions { justify-content: flex-end; }}
@media (max-width: 860px) {
  .about-hero {
    padding-top: calc(var(--nav-h) + 1.9rem);
    padding-bottom: 3rem;
  }
  .about-hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
    max-width: 12.5ch;
  }
  .about-hero__actions,
  .about-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 340px;
  }
  .about-hero__actions .btn,
  .about-cta__actions .btn { width: 100%; }
  .about-hero__card {
    padding: 1rem;
    border-radius: 20px;
  }
  .about-steps li {
    min-height: 54px;
    grid-template-columns: 30px minmax(0, 1fr);
    padding: .65rem .72rem;
    gap: .68rem;
  }
  .about-steps span { width: 30px; height: 30px; font-size: .82rem; }
  .about-steps p { font-size: .84rem; }
  .about-story__panel,
  .about-copy article,
  .about-value,
  .about-diff__item,
  .about-cta__box { border-radius: 18px; }
  .about-story__panel h2,
  .about-values h2,
  .about-diff h2,
  .about-cta__box h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }}
@media (max-width: 430px) {
  .about-hero h1 { font-size: 1.9rem; }
  .about-hero__sub { font-size: .98rem; }
  .about-story__panel,
  .about-copy article,
  .about-value,
  .about-diff__item,
  .about-cta__box { padding: 1rem; }
  .about-value { grid-template-columns: 36px minmax(0,1fr); }
  .about-value__ico { width: 36px; height: 36px; }}


/* =========================================================================
   NOSOTROS V2 — corrección título hero demasiado grande
   ========================================================================= */
.about-hero h1 {
  font-size: clamp(1.65rem, 2.55vw, 2.55rem) !important;
  line-height: 1.18 !important;
  letter-spacing: .018em !important;
  max-width: 17ch !important;
  margin-bottom: clamp(1.1rem, 2vw, 1.55rem) !important;
}
.about-hero h1 span {
  display: block;
}
.about-hero__sub {
  font-size: clamp(.96rem, 1.15vw, 1.05rem) !important;
  line-height: 1.58 !important;
  max-width: 54ch !important;
}
@media (max-width: 860px) {
  .about-hero h1 {
    font-size: clamp(1.38rem, 5.9vw, 1.85rem) !important;
    line-height: 1.2 !important;
    letter-spacing: .014em !important;
    max-width: 16ch !important;
  }
  .about-hero__sub {
    font-size: .94rem !important;
    line-height: 1.55 !important;
    max-width: 35ch !important;
  }}
@media (max-width: 430px) {
  .about-hero h1 {
    font-size: 1.48rem !important;
    max-width: 15ch !important;
  }}
