/* ============================================
   MAYORAZGO — Landing Seguros de Auto
   Display: Bricolage Grotesque  |  Body: Figtree
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* azul del chat Mayorazgo GPT: la marca entra por acá */
  --azul:          #1C7BBE;
  --azul-claro:    #5BB4F0;
  --azul-hielo:    #7DD3FC;
  --azul-hover:    #16659E;
  --azul-profundo: #12324A;
  --azul-tinte:    #EAF3FB;

  /* superficies: blanco y grises fríos */
  --marfil:        #FFFFFF;
  --marfil-2:      #F4F7FA;
  --piedra:        #E2E8EE;
  --blanco:        #FFFFFF;

  /* texto */
  --tinta:         #1A2F44;
  --tinta-75:      rgba(26, 47, 68, 0.78);
  --gris:          #5B6B7A;

  /* semántica de cobertura */
  --ok:            #1F8A5B;
  --ok-tinte:      #E4F3EB;
  --lock:          #9AA6B2;
  --lock-tinte:    #F1F4F7;

  --wa:            #1FA855;

  --font-display:  'Bricolage Grotesque', 'Figtree', sans-serif;
  --font-body:     'Figtree', system-ui, sans-serif;

  --r-lg: 28px;
  --r-md: 16px;
  --r-sm: 10px;
  --r-pill: 999px;

  --shadow-card: 0 30px 60px -30px rgba(28, 123, 190, 0.35), 0 8px 20px -10px rgba(28, 123, 190, 0.16);

  --header-h: 76px;
  --wrap: 1200px;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--tinta);
  background:
    radial-gradient(ellipse 80% 640px at 50% 0%, rgba(91, 180, 240, 0.16) 0%, transparent 65%) no-repeat,
    var(--blanco);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.nowrap { white-space: nowrap; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 18px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:focus-visible { outline: 3px solid var(--azul-claro); outline-offset: 3px; }

.btn-primary { background: var(--azul); color: var(--blanco); }
.btn-primary:hover { background: var(--azul-hover); }
.btn-primary:active { transform: translateY(1px); }

.btn-ghost { background: transparent; color: var(--tinta); border-color: var(--piedra); padding: 12px 18px; font-size: 15px; }
.btn-ghost:hover { border-color: var(--tinta); }

.btn-link { background: transparent; color: var(--azul); padding-inline: 8px; }
.btn-link:hover { color: var(--azul-hover); text-decoration: underline; text-underline-offset: 5px; }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 238, 0.8);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo { height: 52px; width: auto; }
.nav { display: flex; gap: 32px; font-weight: 500; font-size: 15.5px; color: var(--tinta-75); }
.nav a { padding: 6px 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.nav a:hover { color: var(--tinta); border-color: var(--azul-claro); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(32px, 5vw, 64px) clamp(56px, 7vw, 88px);
  overflow: hidden;
}
/* halo azul detrás de la tarjeta: la marca entra por el objeto, no por el fondo */
.hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60vw;
  max-width: 820px;
  aspect-ratio: 1;
  background: radial-gradient(circle at 60% 40%, rgba(91, 180, 240, 0.30), rgba(91, 180, 240, 0) 62%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.hero-copy { padding-top: clamp(8px, 3vw, 40px); }

.hero-kicker {
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gris);
  margin-bottom: 26px;
}
.kicker-dot { flex: none; margin-top: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--azul-claro); box-shadow: 0 0 0 4px rgba(91,180,240,.22); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--tinta);
  text-wrap: balance;
  margin-bottom: 24px;
}
.hero-title .line { display: block; text-wrap: pretty; }
.hero-title em { font-style: normal; color: var(--azul); }

.hero-sub {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--tinta-75);
  max-width: 34ch;
  text-wrap: pretty;
  margin-bottom: 34px;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gris);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust svg { width: 18px; height: 18px; fill: var(--azul-claro); flex: none; }

/* ---------- Tarjeta cotizadora ---------- */
.hero-card {
  background: var(--blanco);
  border: 1px solid rgba(91, 180, 240, 0.35);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 34px);
  box-shadow: var(--shadow-card);
}
.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  text-wrap: balance;
}
.card-hint { font-size: 15px; color: var(--gris); margin-bottom: 22px; }

.year-block {
  background: var(--marfil-2);
  border-radius: var(--r-md);
  padding: 18px 20px 14px;
  margin-bottom: 18px;
}
.year-label { display: block; font-size: 14px; font-weight: 600; color: var(--gris); }
.year-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--azul);
  font-variant-numeric: tabular-nums;
  margin: 2px 0 10px;
}

.year-range {
  --pct: 72%;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--azul) 0 var(--pct), var(--piedra) var(--pct) 100%);
  outline: none;
  cursor: pointer;
}
.year-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blanco);
  border: 3px solid var(--azul);
  box-shadow: 0 2px 8px rgba(28,123,190,.28);
  cursor: grab;
}
.year-range::-moz-range-thumb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blanco);
  border: 3px solid var(--azul);
  box-shadow: 0 2px 8px rgba(28,123,190,.28);
  cursor: grab;
}
.year-range:focus-visible::-webkit-slider-thumb { outline: 3px solid var(--azul-claro); outline-offset: 2px; }
.year-scale { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--lock); margin-top: 8px; font-variant-numeric: tabular-nums; }

.coverage-list { display: grid; gap: 10px; margin-bottom: 20px; }
.coverage {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--piedra);
  background: var(--blanco);
  transition: background-color .25s ease, border-color .25s ease, opacity .25s ease;
}
.coverage-state {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--lock-tinte);
  transition: background-color .25s ease;
}
.coverage-state::before {
  content: "";
  width: 12px; height: 12px;
  background-color: var(--lock);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17 9V7A5 5 0 0 0 7 7v2H5v13h14V9h-2zM9 7a3 3 0 0 1 6 0v2H9V7z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17 9V7A5 5 0 0 0 7 7v2H5v13h14V9h-2zM9 7a3 3 0 0 1 6 0v2H9V7z'/></svg>") center / contain no-repeat;
  transition: background-color .25s ease;
}
.coverage-name { font-weight: 700; font-size: 16px; line-height: 1.2; }
.coverage-desc { font-size: 14px; color: var(--gris); line-height: 1.35; margin-top: 2px; }
.coverage-tag {
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--lock-tinte);
  color: var(--gris);
  white-space: nowrap;
  transition: background-color .25s ease, color .25s ease;
}

.coverage.is-on { border-color: rgba(31,138,91,.35); background: #FBFDFC; }
.coverage.is-on .coverage-state { background: var(--ok-tinte); }
.coverage.is-on .coverage-state::before {
  background-color: var(--ok);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>");
}
.coverage.is-on .coverage-tag { background: var(--ok-tinte); color: var(--ok); }
.coverage.is-off .coverage-text { opacity: .55; }

.card-foot { font-size: 14px; color: var(--gris); text-align: center; margin-top: 12px; text-wrap: balance; }

/* ---------- Aseguradoras (marquee) ---------- */
.carriers {
  border-top: 1px solid var(--piedra);
  border-bottom: 1px solid var(--piedra);
  background: var(--marfil-2);
  padding-block: 26px;
}
.carriers-inner { display: flex; align-items: center; gap: 28px; }
.carriers-lead { flex: none; font-weight: 600; font-size: 15px; color: var(--gris); white-space: nowrap; }
.marquee {
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 30px;
  width: auto;
  flex: none;
  opacity: .78;
  /* gris del logo a un azul apagado, en la línea del GPT */
  filter: brightness(0) saturate(100%) invert(31%) sepia(26%) saturate(720%) hue-rotate(172deg) brightness(92%) contrast(88%);
  transition: opacity .25s ease, filter .25s ease;
}
.marquee:hover .marquee-track img { opacity: 1; }
@keyframes marquee { to { transform: translateX(calc(-100% / 3)); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; gap: 14px 28px; }
  .marquee-track img:nth-child(n+7) { display: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
}

/* ---------- Placeholders temporales ---------- */
.placeholder { padding-block: 80px; border-bottom: 1px dashed var(--piedra); color: var(--lock); font-size: 14px; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1C7BBE 0%, #5BB4F0 100%);
  color: var(--blanco);
  display: grid; place-items: center;
  box-shadow: 0 10px 24px -8px rgba(28,123,190,.6);
  transition: transform .2s ease;
}
.wa-float:hover { transform: translateY(-2px); }

/* ---------- Entrada del hero (una sola secuencia) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-kicker, .hero-title .line, .hero-sub, .hero-actions, .hero-trust {
    opacity: 0;
    transform: translateY(18px);
    animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .hero-kicker { animation-delay: .05s; }
  .hero-title .line:nth-child(1) { animation-delay: .12s; }
  .hero-title .line:nth-child(2) { animation-delay: .2s; }
  .hero-title .line:nth-child(3) { animation-delay: .28s; }
  .hero-sub { animation-delay: .4s; }
  .hero-actions { animation-delay: .5s; }
  .hero-trust { animation-delay: .6s; }
  .hero-card {
    opacity: 0;
    transform: translateY(26px) scale(.985);
    animation: rise-card .9s cubic-bezier(.2,.7,.2,1) .35s forwards;
  }
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes rise-card { to { opacity: 1; transform: translateY(0) scale(1); } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav { display: none; }
}
@media (max-width: 860px) {
  :root { --header-h: 66px; }
  .brand-logo { height: 44px; }
  .hero { padding-block: 40px 56px; }
  .hero::before { right: -30%; top: 10%; width: 90vw; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero-copy, .hero-card { min-width: 0; }
  .hero-card { padding: 22px 18px; border-radius: 22px; }
  .btn { font-size: 15px; padding: 16px 20px; }
  .btn-block { padding-inline: 12px; }
  .hero-title { font-size: clamp(40px, 11vw, 56px); }
  .hero-sub { max-width: none; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-actions .btn-primary { width: 100%; }
  .hero-actions .btn-link { width: 100%; }
  .hero-trust { gap: 10px 20px; font-size: 14.5px; }
  .year-value { font-size: 48px; }
  .carriers-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .header-cta span { display: none; }
  .header-cta { padding: 10px 12px; }
}
@media (max-width: 420px) {
  .coverage { grid-template-columns: 26px 1fr; }
  .coverage-tag { grid-column: 2; justify-self: start; }
  .coverage-state { width: 26px; height: 26px; }
}

/* ---------- Captura estática (?noanim) ---------- */
html.no-anim .hero-kicker, html.no-anim .hero-title .line, html.no-anim .hero-sub, html.no-anim .hero-actions, html.no-anim .hero-trust, html.no-anim .hero-card,
html.no-anim [data-reveal] { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }

/* ============================================
   SECCIONES
   ============================================ */
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.024em;
  color: var(--tinta);
  text-wrap: balance;
  margin-bottom: 18px;
}
.section-sub {
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.5;
  color: var(--tinta-75);
  text-wrap: pretty;
  max-width: 56ch;
}
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }

/* ---------- Coberturas: escalera ---------- */
.coverages { padding-block: clamp(72px, 9vw, 120px); }

.ladder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.tier {
  position: relative;
  background: var(--blanco);
  border: 1px solid var(--piedra);
  border-radius: 22px;
  padding: 26px 26px 24px;
  display: grid;
  grid-template-columns: 14px 1fr;
  column-gap: 20px;
}
.tier > *:not(.tier-bar) { grid-column: 2; }
/* la barra a la izquierda crece por nivel: más cobertura, más alto */
.tier-bar {
  grid-column: 1;
  grid-row: 1 / span 6;
  align-self: stretch;
  position: relative;
  border-radius: var(--r-pill);
  background: var(--marfil-2);
  overflow: hidden;
}
.tier-bar i {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: var(--h, 40%);
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, var(--azul-hielo), var(--azul));
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1) .15s;
}
.tier.is-visible .tier-bar i { transform: scaleY(1); }

.tier-years {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--azul);
  background: var(--azul-tinte);
  border-radius: var(--r-pill);
  padding: 5px 11px;
  justify-self: start;
  margin-bottom: 14px;
}
.tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.tier-alias { font-size: 15px; color: var(--gris); margin-bottom: 16px; }
.tier-list { display: grid; gap: 10px; margin-bottom: 18px; }
.tier-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--tinta);
}
.tier-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background-color: var(--ok-tinte);
  -webkit-mask: none; mask: none;
}
.tier-list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 5px;
  width: 12px; height: 12px;
  background-color: var(--ok);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / contain no-repeat;
}
.tier-list li.no { color: var(--gris); }
.tier-list li.no::before { background-color: #F3E6E3; }
.tier-list li.no::after {
  background-color: #B5483A;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.3 5.7 12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7l1.4-1.4 6.3 6.3 6.3-6.3z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.3 5.7 12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7l1.4-1.4 6.3 6.3 6.3-6.3z'/></svg>");
}
.tier-list li.maybe::before { background-color: #F6EEDA; }
.tier-list li.maybe::after {
  background-color: #A8771B;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M11 7h2v7h-2zm0 8h2v2h-2z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M11 7h2v7h-2zm0 8h2v2h-2z'/></svg>");
}
.tier-note {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--gris);
  border-top: 1px solid var(--marfil-2);
  padding-top: 14px;
  text-wrap: pretty;
}

.callout {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--azul-tinte);
  border-radius: 22px;
  padding: 26px 30px;
}
.callout-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 6px;
}
.callout-text p:last-child { color: var(--tinta-75); max-width: 60ch; text-wrap: pretty; }

.why-dots {
  position: absolute; z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,.36) 1.1px, transparent 1.1px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 28%, transparent 74%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 28%, transparent 74%);
  pointer-events: none;
}
.why-dots-1 { width: 260px; height: 200px; right: 6%; bottom: 8%; }
.why-dots-2 { width: 220px; height: 180px; left: 4%; top: 10%; }
.how-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.how {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 120px);
  background:
    radial-gradient(ellipse 50% 60% at 22% 50%, rgba(91, 180, 240, 0.22) 0%, transparent 65%),
    var(--marfil-2);
}
.how .section-title { font-size: clamp(34px, 3.8vw, 50px); }
.how .section-sub { margin-bottom: 40px; }

/* ---------- Diagrama de comparación ---------- */
.compare {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
  margin-inline: auto;
  --node: 96px;
}
.compare-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.compare-orbit {
  fill: none;
  stroke: rgba(28,123,190,.32);
  stroke-width: .35;
  stroke-dasharray: 1.2 1.6;
  transform-origin: 50% 50%;
  animation: orbit-spin 90s linear infinite;
}
.compare-orbit-2 { stroke: rgba(28,123,190,.2); animation-direction: reverse; animation-duration: 70s; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.compare-lines line {
  stroke: rgba(28,123,190,.5);
  stroke-width: .5;
  stroke-linecap: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}
.compare.is-visible .compare-lines line { animation: draw-line 1s cubic-bezier(.2,.7,.2,1) forwards; }
.compare.is-visible .compare-lines line:nth-child(3) { animation-delay: .15s; }
.compare.is-visible .compare-lines line:nth-child(4) { animation-delay: .3s; }
.compare.is-visible .compare-lines line:nth-child(5) { animation-delay: .45s; }
.compare.is-visible .compare-lines line:nth-child(6) { animation-delay: .6s; }
.compare.is-visible .compare-lines line:nth-child(7) { animation-delay: .75s; }
.compare.is-visible .compare-lines line:nth-child(8) { animation-delay: .9s; }
@keyframes draw-line { to { stroke-dashoffset: 0; } }

.compare-node {
  position: absolute;
  width: var(--node); height: var(--node);
  transform: translate(-50%, -50%) scale(.6);
  opacity: 0;
  border-radius: 50%;
  background: var(--blanco);
  display: grid; place-items: center;
  border: 1px solid rgba(91,180,240,.35);
  box-shadow: 0 18px 40px -18px rgba(28, 123, 190, .45), 0 0 0 6px rgba(91,180,240,.12);
}
.compare-node img {
  width: 66%; height: auto; max-height: 36px; object-fit: contain;
  filter: brightness(0) saturate(100%) invert(31%) sepia(26%) saturate(720%) hue-rotate(172deg) brightness(92%) contrast(88%);
}
.compare.is-visible .compare-node { animation: node-pop .7s cubic-bezier(.2,.9,.2,1.2) forwards; }
.compare.is-visible .compare-node:nth-of-type(1) { animation-delay: .5s; }
.compare.is-visible .compare-node:nth-of-type(2) { animation-delay: .65s; }
.compare.is-visible .compare-node:nth-of-type(3) { animation-delay: .8s; }
.compare.is-visible .compare-node:nth-of-type(4) { animation-delay: .95s; }
.compare.is-visible .compare-node:nth-of-type(5) { animation-delay: 1.1s; }
.compare.is-visible .compare-node:nth-of-type(6) { animation-delay: 1.25s; }
@keyframes node-pop { to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

.compare-hub {
  position: absolute;
  left: 50%; top: 50%;
  width: 150px; height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--blanco);
  color: var(--azul);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  border: 1px solid rgba(91,180,240,.35);
  box-shadow: 0 30px 60px -24px rgba(28, 123, 190, .55), 0 0 0 10px rgba(91,180,240,.14), 0 0 80px rgba(125,211,252,.45);
}
.compare-hub svg { width: 64px; height: 40px; fill: currentColor; }
.compare-hub span { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--tinta); letter-spacing: -0.01em; }

.compare-badge {
  position: absolute;
  left: 65%; top: 50%;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px 9px 10px;
  border-radius: var(--r-pill);
  background: var(--blanco);
  color: var(--tinta);
  font-size: 14px; font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(91,180,240,.35);
  box-shadow: 0 14px 30px -12px rgba(28, 123, 190, .45);
  opacity: 0;
  transform: translateY(calc(-50% + 8px));
}
.compare.is-visible .compare-badge { animation: badge-in .6s ease 1.6s forwards; }
@keyframes badge-in { to { opacity: 1; transform: translateY(-50%); } }
.compare-badge-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ok-tinte);
  position: relative;
}
.compare-badge-check::after {
  content: ""; position: absolute; inset: 5px;
  background-color: var(--ok);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / contain no-repeat;
}
@media (prefers-reduced-motion: reduce) {
  .compare-orbit { animation: none; }
  .compare-lines line { stroke-dashoffset: 0; animation: none !important; }
  .compare-node { opacity: 1; transform: translate(-50%, -50%); animation: none !important; }
  .compare-badge { opacity: 1; transform: translateY(-50%); animation: none !important; }
}
html.no-anim .compare-lines line { stroke-dashoffset: 0 !important; animation: none !important; }
html.no-anim .compare-node { opacity: 1 !important; transform: translate(-50%, -50%) !important; animation: none !important; }
html.no-anim .compare-badge { opacity: 1 !important; transform: translateY(-50%) !important; animation: none !important; }
html.no-anim .compare-orbit { animation: none !important; }

.steps { display: grid; gap: 26px; }
.steps li { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; }
/* hilo punteado que une los pasos */
.steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px; top: 54px; bottom: -22px;
  width: 2px;
  background: repeating-linear-gradient(180deg, rgba(28,123,190,.45) 0 4px, transparent 4px 10px);
  border-radius: 2px;
}
.step-n {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--blanco);
  background: linear-gradient(135deg, #5BB4F0 0%, #1C7BBE 100%);
  box-shadow: 0 10px 24px -10px rgba(28, 123, 190, .7), inset 0 1px 0 rgba(255,255,255,.35);
}
.step-n::after {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(28, 123, 190, .25);
  pointer-events: none;
}
.steps h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; line-height: 1.15; margin: 8px 0 4px; color: var(--tinta); }
.steps p { font-size: 16px; color: var(--tinta-75); line-height: 1.45; max-width: 46ch; }

/* ---------- Maia ---------- */
.maia { padding-block: clamp(72px, 9vw, 120px); }
.maia-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.maia-points { display: grid; gap: 12px; margin-top: 28px; }
.maia-points li { position: relative; padding-left: 30px; font-size: 17px; color: var(--tinta); }
.maia-points li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--azul-tinte);
}
.maia-points li::after {
  content: "";
  position: absolute; left: 4px; top: 7px;
  width: 12px; height: 12px;
  background-color: var(--azul);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / contain no-repeat;
}

.chat {
  background: var(--blanco);
  border: 1px solid var(--piedra);
  border-radius: 26px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.chat-head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--marfil-2);
}
.chat-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--azul-claro), var(--azul));
  color: var(--blanco);
  font-family: var(--font-display);
  font-weight: 800; font-size: 20px;
}
.chat-name { font-weight: 700; font-size: 16px; line-height: 1.2; }
.chat-status { font-size: 13.5px; color: var(--gris); display: flex; align-items: center; gap: 7px; }
.chat-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
.chat-body { padding: 22px; display: grid; gap: 16px; background: var(--marfil); min-height: 250px; }
.bubble {
  max-width: 78%;
  padding: 13px 16px;
  border-radius: 18px;
  font-size: 15.5px;
  line-height: 1.45;
}
.bubble.bot { background: var(--blanco); border: 1px solid var(--piedra); border-bottom-left-radius: 6px; justify-self: start; }
.bubble.user { background: var(--azul); color: var(--blanco); border-bottom-right-radius: 6px; justify-self: end; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button {
  font-family: var(--font-body);
  font-size: 14.5px; font-weight: 500;
  color: var(--azul);
  background: var(--blanco);
  border: 1px solid rgba(47,117,156,.35);
  border-radius: var(--r-pill);
  padding: 9px 14px;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.chips button:hover { background: var(--azul); color: var(--blanco); border-color: var(--azul); }
.chips button:focus-visible { outline: 3px solid var(--azul-claro); outline-offset: 2px; }
.chat-input {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--marfil-2);
}
.chat-input input {
  flex: 1; min-width: 0;
  font-family: var(--font-body);
  font-size: 15.5px;
  padding: 14px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--piedra);
  background: var(--blanco);
  color: var(--tinta);
  outline: none;
  transition: border-color .2s;
}
.chat-input input:focus { border-color: var(--azul-claro); }
.chat-send {
  width: 48px; height: 48px; flex: none;
  border-radius: 50%; border: 0;
  background: var(--azul); color: var(--blanco);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background-color .2s;
}
.chat-send:hover { background: var(--azul-hover); }
.chat-send:focus-visible { outline: 3px solid var(--azul-claro); outline-offset: 2px; }

/* ---------- Preguntas ---------- */
.faq { background: var(--marfil-2); padding-block: clamp(64px, 8vw, 100px); }
.faq-inner { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.faq .section-head { margin-bottom: 0; }
.faq-facts { display: grid; gap: 10px; margin-top: 28px; }
.faq-facts li {
  display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--blanco);
  border: 1px solid var(--piedra);
}
.faq-facts strong { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; color: var(--azul); line-height: 1; }
.faq-facts span { font-size: 14.5px; line-height: 1.35; color: var(--tinta-75); text-wrap: pretty; }
.faq-list { display: grid; gap: 10px; }
.faq details {
  background: var(--blanco);
  border: 1px solid var(--piedra);
  border-radius: 16px;
  padding: 0 22px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0;
  font-weight: 600;
  font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background-color: var(--azul-tinte);
  -webkit-mask: none;
  position: relative;
}
.faq details p { padding-bottom: 20px; color: var(--tinta-75); font-size: 16px; line-height: 1.5; text-wrap: pretty; }
.faq summary { position: relative; padding-right: 40px; }
.faq summary::after { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.faq summary::before {
  content: "+";
  position: absolute; right: 0; top: 50%;
  width: 22px; height: 22px;
  transform: translateY(-50%);
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px; color: var(--azul);
  z-index: 1;
  transition: transform .25s ease;
}
.faq details[open] summary::before { transform: translateY(-50%) rotate(45deg); }

/* ---------- Cierre: firma a sangrado en azul luminoso ---------- */
.finale {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding-block: clamp(88px, 12vw, 150px);
  color: var(--blanco);
  background: linear-gradient(118deg, #2A9BE0 0%, #1C7BBE 38%, #145C90 70%, #12324A 100%);
}
.finale-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.finale-glow { position: absolute; border-radius: 50%; filter: blur(70px); }
.finale-glow-1 { width: 620px; height: 440px; left: 6%; top: -160px; background: rgba(125, 211, 252, 0.35); }
.finale-glow-2 { width: 560px; height: 420px; right: 4%; bottom: -200px; background: rgba(10, 40, 70, 0.55); }
.finale-dots {
  position: absolute;
  background-image: radial-gradient(rgba(255,255,255,.38) 1.1px, transparent 1.1px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 28%, transparent 74%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 28%, transparent 74%);
}
.finale-dots-1 { width: 260px; height: 200px; right: 8%; top: 12%; }
.finale-dots-2 { width: 220px; height: 180px; left: 5%; bottom: 10%; }

.finale-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.finale-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  font-size: 14px; font-weight: 600;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.finale-kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #7DD3FC; box-shadow: 0 0 0 4px rgba(125,211,252,.25); }
.finale-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.028em;
  text-wrap: balance;
  max-width: 16ch;
  text-shadow: 0 10px 40px rgba(0, 30, 60, .35);
  margin-bottom: 22px;
}
.finale-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,.86);
  max-width: 40ch;
  text-wrap: pretty;
  margin-bottom: 36px;
}
.finale-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.btn-white {
  background: var(--blanco);
  color: var(--azul);
  padding: 20px 32px;
  font-size: 17px;
  box-shadow: 0 18px 50px -14px rgba(0, 20, 40, .55);
}
.btn-white:hover { background: #F2F8FD; transform: translateY(-1px); }
.btn-outline-white {
  background: rgba(255,255,255,.08);
  color: var(--blanco);
  border-color: rgba(255,255,255,.45);
  padding: 20px 28px;
  font-size: 17px;
  backdrop-filter: blur(6px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.75); }
.finale-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px;
  font-size: 14.5px; font-weight: 500;
  color: rgba(255,255,255,.8);
}
.finale-trust li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06); }
.finale-trust li::before { content: ""; width: 14px; height: 14px; background-color: #7DD3FC; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / contain no-repeat; }

/* ---------- Footer claro con toda la info práctica ---------- */
.footer { background: var(--marfil-2); color: var(--tinta-75); border-top: 1px solid var(--piedra); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-block: 56px 40px;
}
.footer-logo { height: 76px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 15px; line-height: 1.5; max-width: 30ch; text-wrap: pretty; }
.footer-col h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--tinta); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 15px; color: var(--azul); font-weight: 500; padding: 4px 0; }
.footer-col a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-col p { font-size: 15px; line-height: 1.45; text-wrap: pretty; }
.footer-col p + p { margin-top: 4px; }
.footer-col p strong { color: var(--tinta); font-weight: 700; }
.footer-meta { font-size: 13.5px !important; color: var(--gris); margin-top: 6px; }
.footer-col .footer-meta + p { margin-top: 14px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-block: 18px 24px;
  border-top: 1px solid var(--piedra);
  font-size: 13.5px; color: var(--gris);
}
.footer-bottom a { color: var(--tinta); font-weight: 600; }

/* ---------- Reveal al hacer scroll ---------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  [data-reveal].is-visible { opacity: 1; transform: none; }
  .ladder .tier:nth-child(2) { transition-delay: .1s; }
  .ladder .tier:nth-child(3) { transition-delay: .2s; }
}
@media (prefers-reduced-motion: reduce) {
  .tier-bar i { transform: none; transition: none; }
}
html.no-anim .tier-bar i { transform: none !important; transition: none !important; }

/* ---------- Responsive secciones ---------- */
@media (max-width: 1024px) {
  .ladder { grid-template-columns: minmax(0, 1fr); align-items: stretch; }
  .how-grid, .maia-grid, .faq-inner { grid-template-columns: minmax(0, 1fr); }
  .compare { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq .section-head { margin-bottom: 24px; }
}
@media (max-width: 860px) {
  .callout { flex-direction: column; align-items: flex-start; padding: 24px; }
  .callout .btn { width: 100%; }
  .compare { --node: 72px; max-width: 360px; }
  .compare-node img { max-height: 26px; }
  .compare-hub { width: 112px; height: 112px; }
  .compare-hub svg { width: 48px; height: 30px; }
  .compare-hub span { font-size: 14px; }
  .compare-badge { font-size: 12.5px; padding: 7px 11px 7px 8px; left: 64%; }
  .chat-body { padding: 18px; }
  .bubble { max-width: 90%; }
  .finale { min-height: auto; padding-block: 72px 64px; }
  .finale-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; padding-block: 40px 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .tier { padding: 22px 20px 20px; }
}
@media (max-width: 860px) { .br-desktop { display: none; } }

/* ============================================
   AURA — panel con el formato de Mayorazgo GPT
   ============================================ */
/* ---------- Aura: el bloque destacado, azul de marca luminoso ---------- */
.aura {
  background: linear-gradient(118deg, #12324A 0%, #145C90 34%, #1C7BBE 72%, #2A9BE0 100%);
  color: var(--blanco);
  padding-block: clamp(72px, 9vw, 120px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.aura::before {
  content: "";
  position: absolute; z-index: -1;
  right: 4%; top: -180px;
  width: 620px; height: 460px;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.32);
  filter: blur(70px);
  pointer-events: none;
}
.aura::after {
  content: "";
  position: absolute; z-index: -1;
  left: -8%; bottom: -220px;
  width: 560px; height: 420px;
  border-radius: 50%;
  background: rgba(8, 36, 64, 0.55);
  filter: blur(70px);
  pointer-events: none;
}
.aura-head { max-width: 720px; }
.aura .section-title { color: var(--blanco); }
.aura .section-sub { color: rgba(255,255,255,.88); }

@property --gpt-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.gpt {
  --gpt-blue:    #1C7BBE;
  --gpt-sky:     #5BB4F0;
  --gpt-ice:     #7DD3FC;
  --gpt-navy:    #1a2f44;
  --gpt-gray:    #444444;
  --gpt-teal:    #4a8fb5;
  --gpt-tint:    #eaf3f8;
  --gpt-border:  #e4e8ea;
  --gpt-font:    'Montserrat', 'Figtree', sans-serif;

  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91, 180, 240, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(28, 123, 190, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, #F4F9FE 0%, #FAFAF8 100%);
  box-shadow: 0 48px 110px -44px rgba(0, 40, 80, .75), 0 0 0 10px rgba(255,255,255,.08);
  overflow: hidden;
  font-family: var(--gpt-font);
  color: var(--gpt-gray);
}

.gpt-bar {
  display: flex;
  justify-content: center;
  padding: 14px 20px 0;
}
.gpt-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(91,180,240,.3);
  backdrop-filter: blur(8px);
}
.gpt-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  font-family: var(--gpt-font);
  font-size: 14px; font-weight: 600;
  color: #6b7a86;
  cursor: pointer;
  transition: background-color .2s, color .2s;
}
.gpt-tab.is-active { background: linear-gradient(135deg, #5BB4F0, #1C7BBE); color: #fff; }
.gpt-tab:not(.is-active):hover { color: var(--gpt-blue); }
.gpt-live { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 0 rgba(34,197,94,.5); animation: gpt-pulse 2s ease-out infinite; }
@keyframes gpt-pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); } 100% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } }

.gpt-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 44px 24px 28px;
  text-align: center;
}
.gpt-hero { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.gpt-logo { max-width: 280px; height: auto; }
.gpt-greeting { font-size: 22px; font-weight: 600; color: var(--gpt-navy); letter-spacing: -0.01em; margin-top: 6px; }
.gpt-subtitle { font-size: 15px; color: var(--gpt-gray); max-width: 440px; line-height: 1.55; }
.gpt-nudge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; margin-top: 6px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(91,180,240,.35);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--gpt-blue);
  backdrop-filter: blur(8px);
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
}
.gpt-nudge:hover { border-color: rgba(28,123,190,.5); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(28,123,190,.15); }
.gpt-nudge-dot { width: 6px; height: 6px; border-radius: 50%; background: #22C55E; animation: gpt-pulse 2s ease-out infinite; }

.gpt-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 540px;
}
.gpt-chip {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px;
  text-align: left;
  font-family: var(--gpt-font);
  font-size: 13px; font-weight: 500; line-height: 1.45;
  color: var(--gpt-gray);
  border: 1px solid rgba(91,180,240,.25);
  border-radius: 16px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 2px rgba(28,123,190,.04);
  cursor: pointer;
  transition: border-color .3s, transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, background .3s;
}
.gpt-chip svg { flex: none; color: var(--gpt-teal); margin-top: 1px; transition: color .3s, transform .3s; }
.gpt-chip:hover { border-color: rgba(28,123,190,.4); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(28,123,190,.10), 0 2px 6px rgba(28,123,190,.06); background: linear-gradient(180deg, #fff 0%, rgba(91,180,240,.05) 100%); }
.gpt-chip:hover svg { color: var(--gpt-blue); transform: scale(1.08); }
.gpt-chip:focus-visible { outline: 3px solid var(--gpt-sky); outline-offset: 2px; }

.gpt-prompt-wrap { padding: 8px 24px 18px; background: #fff; }
.gpt-prompt {
  max-width: 760px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  border-radius: 28px;
  background: #fff;
  padding: 8px;
  position: relative;
  cursor: text;
  filter: drop-shadow(0 0 10px rgba(91,180,240,.18));
}
/* borde con gradiente en movimiento, igual al chat original */
.gpt-prompt::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  padding: 2px;
  background: conic-gradient(from var(--gpt-angle), #1C7BBE, #5BB4F0, #7DD3FC, #5BB4F0, #1C7BBE, #5BB4F0, #1C7BBE);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: gpt-flow 10s linear infinite;
  pointer-events: none;
}
@keyframes gpt-flow { to { --gpt-angle: 360deg; } }
@media (prefers-reduced-motion: reduce) { .gpt-prompt::before { animation: none; } .gpt-live, .gpt-nudge-dot { animation: none; } }

.gpt-textarea {
  width: 100%;
  border: 0; background: transparent; outline: none; resize: none;
  padding: 10px 12px;
  font-family: var(--gpt-font);
  font-size: 14.5px; line-height: 1.5;
  color: var(--gpt-gray);
  min-height: 46px; max-height: 200px;
}
.gpt-textarea::placeholder { color: #bbbec2; }
.gpt-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 4px 4px 0; }
.gpt-toolbar-right { display: flex; align-items: center; gap: 6px; }
.gpt-tool {
  width: 34px; height: 34px; border-radius: 50%; border: 0;
  display: grid; place-items: center;
  background: transparent; color: var(--gpt-gray);
  cursor: pointer;
  transition: background-color .15s, color .15s;
}
.gpt-tool:hover { background: var(--gpt-tint); color: var(--gpt-teal); }
.gpt-send {
  width: 34px; height: 34px; border-radius: 50%; border: 0;
  display: grid; place-items: center;
  background: var(--gpt-teal); color: #fff;
  cursor: pointer;
  transition: background-color .18s, transform .18s;
}
.gpt-send:hover:not(:disabled) { background: #3a7a9e; transform: scale(1.07); }
.gpt-send:disabled { background: var(--gpt-border); color: #bbbec2; cursor: default; }
.gpt-trust {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 11.5px; color: #b0b5b9;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 860px) {
  .gpt { border-radius: 22px; }
  .gpt-empty { padding: 32px 16px 22px; gap: 24px; }
  .gpt-logo { max-width: 220px; }
  .gpt-chips { grid-template-columns: 1fr; }
  .gpt-prompt-wrap { padding: 8px 12px 16px; }
  .gpt-trust { font-size: 11px; }
}
.aura-title { text-wrap: pretty; }

/* ---------- Velo de salida hacia el chat ---------- */
.page-veil {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.page-veil.is-on { opacity: 1; pointer-events: auto; }

/* ============================================
   FOTOS: calor y personas
   ============================================ */

/* ---------- Hero con foto ---------- */
.hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: center; }
.hero { padding-bottom: 190px; }
.hero-photo {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  box-shadow: 0 40px 80px -36px rgba(28, 123, 190, .55);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(18, 50, 74, .55) 100%);
  pointer-events: none;
}
.hero-photo-pill {
  position: absolute; left: 18px; bottom: 18px; z-index: 1;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  font-size: 14px; font-weight: 600; color: var(--tinta);
  box-shadow: 0 10px 24px -10px rgba(0,30,60,.5);
}
.hero-photo-pill .kicker-dot { margin-top: 0; }
@media (prefers-reduced-motion: no-preference) {
  .hero-photo { animation: rise-card .9s cubic-bezier(.2,.7,.2,1) .3s forwards; opacity: 0; transform: translateY(26px) scale(.985); }
}
html.no-anim .hero-photo { opacity: 1 !important; transform: none !important; animation: none !important; }

/* ---------- Banda cotizadora ---------- */
.quote { position: relative; z-index: 2; margin-top: -120px; padding-bottom: 8px; }
.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px 40px;
  background: var(--blanco);
  border: 1px solid rgba(91, 180, 240, 0.35);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 34px);
  box-shadow: var(--shadow-card);
}
.quote-left .card-title { font-size: 26px; }
.quote-left .year-block { margin-bottom: 0; }
.quote-right { display: flex; flex-direction: column; }
.quote-right .coverage-list { margin-bottom: 16px; }
.quote-right .btn-block { margin-top: auto; }

/* ---------- Callout con foto ---------- */
.callout-photo {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  color: var(--blanco);
  background: var(--azul-profundo);
}
.callout-photo > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 40%;
  z-index: 0;
}
.callout-photo::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(18,50,74,.92) 0%, rgba(18,50,74,.75) 45%, rgba(18,50,74,.15) 100%);
}
.callout-photo .callout-text, .callout-photo .btn { position: relative; z-index: 2; }
.callout-photo .callout-text p:last-child { color: rgba(255,255,255,.86); }
.callout-photo .btn-primary { background: var(--blanco); color: var(--azul); }
.callout-photo .btn-primary:hover { background: #F2F8FD; }

/* ---------- Somos familia ---------- */
.family { padding-block: clamp(72px, 9vw, 120px); background: var(--blanco); }
.family-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.family-photos { position: relative; aspect-ratio: 1; }
.family-photo-main {
  width: 84%; height: 84%;
  object-fit: cover; object-position: 50% 35%;
  border-radius: 30px;
  box-shadow: 0 40px 80px -36px rgba(28,123,190,.5);
}
.family-photo-small {
  position: absolute; right: 0; bottom: 0;
  width: 46%; aspect-ratio: 4 / 3; height: auto;
  object-fit: cover;
  border-radius: 22px;
  border: 6px solid var(--blanco);
  box-shadow: 0 30px 60px -24px rgba(0,30,60,.5);
}
.family-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 32px; }
.family-facts li { padding: 16px 16px 14px; border-radius: 16px; background: var(--marfil-2); border: 1px solid var(--piedra); }
.family-facts strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -0.02em; color: var(--azul); line-height: 1; margin-bottom: 6px; }
.family-facts span { font-size: 14px; line-height: 1.35; color: var(--tinta-75); text-wrap: pretty; }

.faq-aside { margin-top: 20px; font-size: 16px; color: var(--tinta-75); }
.faq-aside a { color: var(--azul); font-weight: 600; }
.faq-aside a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Cierre con foto ---------- */
.finale-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 60%;
}
.finale-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,50,74,.55) 0%, rgba(20,92,144,.72) 45%, rgba(18,50,74,.96) 100%);
}
.finale-glow, .finale-dots { z-index: 1; }
.finale { background: var(--azul-profundo); }

/* ---------- Responsive fotos ---------- */
@media (max-width: 1024px) {
  .family-grid { grid-template-columns: minmax(0, 1fr); }
  .family-photos { max-width: 520px; }
}
@media (max-width: 860px) {
  .hero { padding-bottom: 40px; }
  .hero-photo { aspect-ratio: 4 / 3.4; border-radius: 22px; }
  .quote { margin-top: 0; }
  .quote-band { grid-template-columns: minmax(0, 1fr); padding: 22px 18px; border-radius: 22px; }
  .quote-left .card-title { font-size: 22px; }
  .callout-photo::before { background: linear-gradient(180deg, rgba(18,50,74,.92) 0%, rgba(18,50,74,.8) 100%); }
  .family-facts { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-photo-pill { font-size: 12.5px; padding: 8px 12px; white-space: nowrap; left: 12px; bottom: 12px; }
}

/* ============================================
   HERO a sangrado (foto fundida al texto)
   ============================================ */
.hero { min-height: 82vh; display: flex; align-items: center; padding-block: clamp(48px, 7vw, 96px) 190px; }
.hero-grid { grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr); }
.hero-media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 62%;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
  filter: saturate(1.08) sepia(.14) brightness(1.03);
}
/* velo inferior: la banda cotizadora pisa la foto con aire */
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(255,255,255,.75) 100%);
}
.hero::before { display: none; }
.hero-grid { position: relative; z-index: 1; }
.hero-copy { padding-top: 0; }
.hero-title { font-size: clamp(40px, 4.4vw, 64px); }
.hero-sub { max-width: 32ch; }
@media (max-width: 1024px) {
  .hero-media { width: 70%; }
  .hero-grid { grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr); }
}
@media (max-width: 860px) {
  .hero { min-height: auto; padding-bottom: 32px; display: block; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-media {
    position: relative; width: auto; height: 300px;
    margin: 28px calc(-1 * clamp(20px, 4vw, 40px)) 0;
    -webkit-mask-image: none; mask-image: none;
  }
  .hero-media img { object-position: 50% 30%; }
  .hero-media::after { display: none; }
  .hero-copy { order: -1; }
}

/* ---------- Callout limpio ---------- */
.callout { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 22px 28px; background: var(--blanco); border: 1px solid var(--piedra); border-left: 6px solid var(--azul); border-radius: 22px; }
.callout-icon {
  width: 64px; height: 64px; border-radius: 18px; flex: none;
  display: grid; place-items: center;
  background: var(--azul-tinte);
}
.callout-icon svg { width: 32px; height: 32px; fill: var(--azul); }
@media (max-width: 860px) {
  .callout { grid-template-columns: minmax(0, 1fr); }
  .callout .btn { width: 100%; }
}

/* ---------- Somos familia (v2) ---------- */
.family-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
.family-facts { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; margin-top: 32px; }
.family-facts li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; padding: 14px 16px; border-radius: 16px; background: var(--marfil-2); border: 1px solid var(--piedra); }
.family-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--azul-tinte); }
.family-icon svg { width: 22px; height: 22px; fill: var(--azul); }
.family-facts strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: var(--tinta); line-height: 1.15; margin-bottom: 2px; }
.family-facts span { font-size: 14.5px; line-height: 1.35; color: var(--tinta-75); }
.family-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 80px -36px rgba(28,123,190,.5);
}
.family-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 72%; }
.family-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(18,50,74,.45) 100%); }
.family-pill {
  position: absolute; left: 18px; bottom: 18px; z-index: 1;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  font-size: 14px; font-weight: 600; color: var(--tinta);
}
.family-pill .kicker-dot { margin-top: 0; }
@media (max-width: 1024px) {
  .family-grid { grid-template-columns: minmax(0, 1fr); }
  .family-photo { aspect-ratio: 4 / 3; max-width: none; }
}

/* ============================================
   V3: abanico, tabla comparativa, flujo, bento
   ============================================ */

/* ---------- Hero: abanico de fotos ---------- */
.hero { min-height: auto; display: block; padding-block: clamp(40px, 6vw, 80px) 190px; }
.hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(32px, 4vw, 64px); }
.hero-media { display: none; }
.hero-title { font-size: clamp(40px, 3.8vw, 54px); }
.hero::before { display: block; }
.fan {
  position: relative;
  height: clamp(360px, 32vw, 470px);
  --card-w: clamp(160px, 14vw, 205px);
}
.fan-card {
  position: absolute;
  top: 50%; left: 50%;
  width: var(--card-w);
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--blanco);
  border: 5px solid var(--blanco);
  box-shadow: 0 30px 60px -24px rgba(28, 123, 190, .55), 0 2px 6px rgba(0,30,60,.08);
  transform: translate(-50%, -50%) rotate(var(--r, 0deg)) translateX(var(--x, 0)) translateY(var(--y, 0));
}
.fan-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fan-card figcaption {
  position: absolute; left: 12px; bottom: 12px;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.92);
  font-size: 13px; font-weight: 700; color: var(--tinta);
  backdrop-filter: blur(6px);
}
.fan-1 { --r: -10deg; --x: -84%; --y: 6%; z-index: 1; }
.fan-2 { --r: 0deg;   --x: 0;     --y: -4%; z-index: 3; width: calc(var(--card-w) * 1.08); }
.fan-3 { --r: 10deg;  --x: 84%;  --y: 6%; z-index: 2; }
.fan-2 img { object-position: 50% 45%; }
.fan-3 img { object-position: 50% 60%; }
@media (prefers-reduced-motion: no-preference) {
  .fan-card { animation: fan-in .9s cubic-bezier(.2,.7,.2,1) forwards; opacity: 0; }
  .fan-2 { animation-delay: .2s; }
  .fan-1 { animation-delay: .38s; }
  .fan-3 { animation-delay: .5s; }
  @keyframes fan-in {
    from { opacity: 0; transform: translate(-50%, -40%) rotate(0deg) translateX(0) translateY(0); }
    to   { opacity: 1; transform: translate(-50%, -50%) rotate(var(--r, 0deg)) translateX(var(--x, 0)) translateY(var(--y, 0)); }
  }
}
html.no-anim .fan-card { opacity: 1 !important; animation: none !important; }
@media (max-width: 860px) {
  .hero { padding-bottom: 32px; }
  .fan { height: 260px; --card-w: 118px; margin-top: 8px; }
  .fan-1 { --x: -78%; }
  .fan-3 { --x: 78%; }
  .fan-card figcaption { font-size: 11.5px; padding: 5px 9px; left: 8px; bottom: 8px; }
  .fan-3 figcaption { right: 8px; }
}

/* ---------- Coberturas: tabla comparativa ---------- */
.cmp-wrap {
  overflow-x: auto;
  border: 1px solid var(--piedra);
  border-radius: 24px;
  background: var(--blanco);
  box-shadow: 0 30px 60px -40px rgba(28,123,190,.35);
}
.cmp { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 760px; }
.cmp th, .cmp td { padding: 16px 18px; text-align: center; vertical-align: middle; border-bottom: 1px solid var(--marfil-2); font-size: 15.5px; }
.cmp thead th { padding-top: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--piedra); vertical-align: bottom; }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp tbody th { text-align: left; font-weight: 600; color: var(--tinta); width: 34%; }
.cmp-tier { display: block; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; color: var(--tinta); line-height: 1.1; }
.cmp-alias { display: block; font-size: 13.5px; color: var(--gris); margin-top: 4px; font-weight: 500; }
.cmp-badge { display: inline-block; font-size: 12.5px; font-weight: 700; color: var(--blanco); background: linear-gradient(135deg, #5BB4F0, #1C7BBE); border-radius: var(--r-pill); padding: 4px 10px; margin-bottom: 10px; }
.cmp .cmp-top { background: var(--azul-tinte); }
.cmp thead .cmp-top { border-radius: 16px 16px 0 0; }
.cmp tbody tr:last-child .cmp-top { border-radius: 0 0 16px 16px; }
.cmp td strong { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--azul); letter-spacing: -0.01em; }
.cmp i.ok, .cmp i.no, .cmp i.maybe, .mock i.ok {
  display: inline-block; width: 26px; height: 26px; border-radius: 50%; vertical-align: middle;
  background-color: var(--ok-tinte);
  position: relative;
}
.cmp i.ok::after, .cmp i.no::after, .cmp i.maybe::after, .mock i.ok::after {
  content: ""; position: absolute; inset: 6px;
  background-color: var(--ok);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / contain no-repeat;
}
.cmp i.no { background-color: #F3E6E3; }
.cmp i.no::after {
  background-color: #B5483A;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.3 5.7 12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7l1.4-1.4 6.3 6.3 6.3-6.3z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.3 5.7 12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7l1.4-1.4 6.3 6.3 6.3-6.3z'/></svg>");
}
.cmp i.maybe { background-color: #F6EEDA; }
.cmp i.maybe::after {
  background-color: #A8771B;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M11 7h2v7h-2zm0 8h2v2h-2z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M11 7h2v7h-2zm0 8h2v2h-2z'/></svg>");
}
.cmp-maybe { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--tinta-75); white-space: nowrap; }
.cmp-notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; margin: 18px 0 28px; }
.cmp-notes li { position: relative; padding-left: 26px; font-size: 14.5px; line-height: 1.45; color: var(--gris); text-wrap: pretty; }
.cmp-notes li::before { content: ""; position: absolute; left: 0; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--azul-tinte); }
.cmp-notes li::after { content: ""; position: absolute; left: 4px; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--azul); }
@media (max-width: 860px) {
  .cmp-notes { grid-template-columns: minmax(0, 1fr); }
  .cmp th, .cmp td { padding: 12px 12px; font-size: 14px; }
  .cmp tbody th { width: auto; min-width: 180px; }
}

/* ---------- Cómo funciona: flujo con mini pantallas ---------- */
.how { background: var(--marfil-2); }
.how .section-head { margin-bottom: clamp(32px, 4vw, 52px); }
.flow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.flow-step {
  position: relative;
  background: var(--blanco);
  border: 1px solid var(--piedra);
  border-radius: 24px;
  padding: 16px 16px 26px;
  display: flex; flex-direction: column; gap: 18px;
}
/* flecha entre pasos */
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute; right: -22px; top: 92px;
  width: 22px; height: 22px;
  background-color: var(--azul-claro);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12h12M13 6l6 6-6 6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12h12M13 6l6 6-6 6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
  z-index: 2;
}
.mock {
  border-radius: 16px;
  background: linear-gradient(180deg, #F4F9FE 0%, #FAFCFE 100%);
  border: 1px solid rgba(91,180,240,.3);
  padding: 16px;
  height: 212px;
  display: flex; flex-direction: column; gap: 10px; justify-content: center;
  font-family: var(--font-body);
}
.mock-bubble {
  max-width: 92%;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 14px; line-height: 1.4;
}
.mock-bubble-user { background: var(--azul); color: var(--blanco); border-bottom-right-radius: 6px; align-self: flex-end; }
.mock-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.mock-chips span { font-size: 12px; font-weight: 600; color: var(--azul); background: var(--blanco); border: 1px solid rgba(28,123,190,.3); border-radius: var(--r-pill); padding: 4px 9px; }
.mock-row { display: grid; grid-template-columns: 62px 1fr 26px; align-items: center; gap: 10px; padding: 6px 8px; border-radius: 10px; }
.mock-lbl { font-size: 12.5px; font-weight: 600; color: var(--gris); }
.mock-row img { height: 16px; width: auto; max-width: 62px; object-fit: contain; filter: brightness(0) saturate(100%) invert(31%) sepia(26%) saturate(720%) hue-rotate(172deg) brightness(92%) contrast(88%); opacity: .7; }
.mock-bar { display: block; height: 8px; border-radius: 4px; background: var(--piedra); position: relative; overflow: hidden; }
.mock-bar::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: var(--w, 50%); border-radius: 4px; background: linear-gradient(90deg, #5BB4F0, #1C7BBE); }
.mock-row.is-best { background: var(--blanco); border: 1px solid rgba(31,138,91,.35); }
.mock-row.is-best .mock-bar::after { background: linear-gradient(90deg, #4CC48A, #1F8A5B); }
.mock-row i.ok { width: 22px; height: 22px; }
.mock-foot { font-size: 12.5px; color: var(--gris); text-align: center; margin-top: 4px; }
.mock-wa { background: linear-gradient(180deg, #EAF6EE 0%, #F6FBF7 100%); border-color: rgba(31,168,85,.25); }
.mock-wa-head { display: flex; align-items: center; gap: 10px; }
.mock-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #5BB4F0, #1C7BBE); color: #fff; display: grid; place-items: center; font-weight: 800; font-family: var(--font-display); font-size: 15px; }
.mock-wa-head b { display: block; font-size: 14px; color: var(--tinta); line-height: 1.1; }
.mock-wa-head small { font-size: 12px; color: var(--ok); }
.mock-bubble-wa { background: var(--blanco); color: var(--tinta); border-bottom-left-radius: 6px; align-self: flex-start; box-shadow: 0 1px 2px rgba(0,0,0,.06); }
.mock-doc { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: var(--blanco); border: 1px solid var(--piedra); border-radius: 10px; padding: 8px 12px; font-size: 13px; font-weight: 600; color: var(--tinta); }
.mock-doc i { width: 18px; height: 18px; background-color: var(--azul); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm8 1.5V8h4.5L14 3.5zM8 12h8v2H8zm0 4h8v2H8z'/></svg>") center / contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm8 1.5V8h4.5L14 3.5zM8 12h8v2H8zm0 4h8v2H8z'/></svg>") center / contain no-repeat; }
.flow-text { padding: 0 8px; }
.flow-n { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #5BB4F0, #1C7BBE); color: var(--blanco); font-family: var(--font-display); font-weight: 800; font-size: 15px; margin-bottom: 12px; box-shadow: 0 8px 18px -8px rgba(28,123,190,.7); }
.flow-text h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; line-height: 1.15; margin-bottom: 6px; color: var(--tinta); }
.flow-text p { font-size: 15.5px; line-height: 1.45; color: var(--tinta-75); text-wrap: pretty; }
@media (max-width: 1024px) {
  .flow { grid-template-columns: minmax(0, 1fr); max-width: 520px; margin-inline: auto; }
  .flow-step:not(:last-child)::after { right: auto; left: 50%; top: auto; bottom: -22px; transform: translateX(-50%) rotate(90deg); }
}

/* ---------- Somos familia: bento ---------- */
.family .section-head { margin-bottom: clamp(28px, 4vw, 44px); }
.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-card {
  position: relative;
  border-radius: 24px;
  padding: 26px;
  background: var(--marfil-2);
  border: 1px solid var(--piedra);
  display: flex; flex-direction: column; gap: 8px; justify-content: flex-end;
  min-height: 190px;
}
.bento-photo { grid-column: 1 / 3; grid-row: 1 / 3; padding: 0; overflow: hidden; margin: 0; min-height: 420px; border: 0; }
.bento-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 70%; }
.bento-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(18,50,74,.6) 100%); }
.bento-photo figcaption { position: relative; z-index: 1; margin: auto 20px 20px; align-self: flex-start; display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: var(--r-pill); background: rgba(255,255,255,.92); font-size: 14px; font-weight: 700; color: var(--tinta); backdrop-filter: blur(8px); }
.bento-photo figcaption .kicker-dot { margin-top: 0; }
.bento-years { grid-column: 3 / 5; background: linear-gradient(135deg, #1C7BBE 0%, #145C90 100%); color: var(--blanco); border: 0; }
.bento-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(56px, 6vw, 84px); line-height: .95; letter-spacing: -0.03em; }
.bento-years .bento-label { color: rgba(255,255,255,.85); max-width: 30ch; }
.bento-label { font-size: 15px; line-height: 1.4; color: var(--tinta-75); text-wrap: pretty; }
.bento-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; color: var(--tinta); line-height: 1.1; }
.bento-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--azul-tinte); margin-bottom: auto; }
.bento-icon svg { width: 22px; height: 22px; fill: var(--azul); }
.bento-offices, .bento-ssn { background: var(--blanco); }
.bento-quote { grid-column: 1 / 5; background: var(--azul-tinte); border-color: rgba(91,180,240,.35); flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; min-height: 0; padding: 22px 26px; }
.bento-quote p { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.3; letter-spacing: -0.01em; color: var(--tinta); max-width: 60ch; text-wrap: pretty; }
.bento-quote .bento-label { white-space: nowrap; font-weight: 600; color: var(--azul); }
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-photo { grid-column: 1 / 3; grid-row: auto; min-height: 320px; }
  .bento-years { grid-column: 1 / 3; }
  .bento-quote { grid-column: 1 / 3; flex-direction: column; align-items: flex-start; }
  .bento-quote .bento-label { white-space: normal; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: minmax(0, 1fr); }
  .bento-photo, .bento-years, .bento-quote { grid-column: 1 / 2; }
}
.fan-3 figcaption { left: auto; right: 12px; }
.fan-1 figcaption { left: 12px; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .hero-title { font-size: clamp(38px, 10.5vw, 48px); }
  .hero-sub { max-width: none; }
}

/* ============================================
   V4: hero centrado editorial + foto a sangrado (ref. Hedvig)
   ============================================ */
:root { --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif; }
.hero-title, .section-title, .finale-title, .card-title, .cmp-tier, .flow-text h3, .bento-title, .office h3, .footer-col h3, .callout-title, .tier-name, .steps h3 {
  font-weight: 400;
  letter-spacing: -0.012em;
}
.hero-title em { font-weight: 400; }
.year-value, .bento-num, .cmp td strong, .fact-num, .family-facts strong { font-weight: 400; letter-spacing: -0.01em; }

.hero-center { padding: clamp(56px, 8vw, 110px) 0 0; display: block; min-height: auto; overflow: visible; }
.hero-center::before { display: none; }
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 920px; }
.hero-center .hero-kicker { display: block; font-size: 15px; color: var(--gris); margin-bottom: 22px; }
.hero-center .hero-title {
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 21ch;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero-center .hero-title .line { display: inline; }
.hero-center .hero-sub { font-size: clamp(17px, 1.4vw, 20px); color: var(--gris); max-width: 46ch; margin-bottom: 30px; }
.hero-center .hero-actions { justify-content: center; margin-bottom: clamp(48px, 6vw, 80px); }
.hero-center .btn-lg { padding: 18px 30px; font-size: 16.5px; }

.hero-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: clamp(36px, 5vw, 64px); width: 100%; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px 11px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: var(--marfil-2);
  color: var(--tinta);
  font-family: var(--font-body);
  font-size: 14.5px; font-weight: 600;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, transform .2s;
}
.hero-chip:hover { background: var(--azul-tinte); border-color: rgba(91,180,240,.5); transform: translateY(-1px); }
.hero-chip:focus-visible { outline: 3px solid var(--azul-claro); outline-offset: 2px; }
.orb { width: 18px; height: 18px; border-radius: 50%; flex: none; box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); }
.orb-1 { background: radial-gradient(circle at 30% 30%, #7DD3FC, #1C7BBE 60%, #12324A); }
.orb-2 { background: radial-gradient(circle at 30% 30%, #FDE68A, #F59E0B 60%, #B45309); }
.orb-3 { background: radial-gradient(circle at 30% 30%, #A7F3D0, #1F8A5B 60%, #0F5132); }
.orb-4 { background: radial-gradient(circle at 30% 30%, #86EFAC, #1FA855 60%, #0E6B34); }

.hero-film {
  margin: 0;
  width: 100%;
  height: clamp(320px, 58vh, 620px);
  overflow: hidden;
}
.hero-film img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 38%;
  filter: saturate(1.06) sepia(.16) brightness(1.02) contrast(.98);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-film img { transform: scale(1.06); animation: film-settle 6s ease-out forwards; }
  @keyframes film-settle { to { transform: scale(1); } }
  .hero-chips { opacity: 0; transform: translateY(14px); animation: rise .7s cubic-bezier(.2,.7,.2,1) .55s forwards; }
}
html.no-anim .hero-film img { transform: none !important; animation: none !important; }
html.no-anim .hero-chips { opacity: 1 !important; transform: none !important; animation: none !important; }

/* la banda cotizadora ahora es sección normal */
.quote { margin-top: 0; padding-block: clamp(56px, 7vw, 88px) 8px; }

/* logos: pegados a la foto */
.carriers { border-top: 0; }

@media (max-width: 860px) {
  .hero-center { padding-top: 40px; }
  .hero-center .hero-title { font-size: clamp(38px, 10.5vw, 48px); max-width: none; }
  .hero-center .hero-actions .btn-primary { width: auto; min-width: 220px; }
  .hero-chips { gap: 8px; }
  .hero-chip { font-size: 14px; padding: 10px 13px 10px 10px; }
  .hero-film { height: 300px; }
  .quote { padding-top: 40px; }
}

/* ---------- Foto de fondo desenfocada con las 3 tarjetas encima ---------- */
.hero-film {
  position: relative;
  height: clamp(420px, 62vh, 640px);
  display: flex; align-items: center; justify-content: center;
  isolation: isolate;
}
.hero-film img.hero-film-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 40%;
  filter: blur(70px) saturate(1.15) brightness(.9);
  transform: scale(1.25);
}
.hero-film::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(18,50,74,.28) 100%);
}
.hero-film .fan {
  position: relative; z-index: 1;
  width: min(100%, 900px);
  height: 100%;
  --card-w: clamp(180px, 17.5vw, 262px);
}
.hero-film .fan-1 { --r: -7deg; --x: -96%; --y: 5%; }
.hero-film .fan-2 { --r: 0deg;  --x: 0;    --y: -3%; }
.hero-film .fan-3 { --r: 7deg;  --x: 96%;  --y: 5%; }
.hero-film .fan-card { box-shadow: 0 40px 80px -30px rgba(0, 20, 40, .65), 0 2px 6px rgba(0,30,60,.12); }
.hero-film .fan-card img { filter: none; transform: none; animation: none; object-position: 50% 45%; }
@media (prefers-reduced-motion: no-preference) {
  .hero-film img.hero-film-bg { animation: none; transform: scale(1.25); }
}
html.no-anim .hero-film img.hero-film-bg { transform: scale(1.25) !important; }
@media (max-width: 860px) {
  .hero-film { height: 340px; }
  .hero-film .fan { --card-w: 122px; height: 100%; }
  .hero-film .fan-1 { --x: -84%; }
  .hero-film .fan-3 { --x: 84%; }
}

/* ---------- Prueba: bloque de marca con la torre en vez de la foto ---------- */
.hero-brand {
  height: clamp(300px, 46vh, 480px);
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(125, 211, 252, .45) 0%, rgba(91, 180, 240, .18) 45%, transparent 75%),
    linear-gradient(180deg, #F4F9FE 0%, #EAF3FB 100%);
}
.hero-brand::after { display: none; }
.hero-tower { height: 62%; width: auto; filter: drop-shadow(0 30px 50px rgba(28,123,190,.35)); }
@media (prefers-reduced-motion: no-preference) {
  .hero-tower { animation: rise-card 1s cubic-bezier(.2,.7,.2,1) .3s forwards; opacity: 0; transform: translateY(20px) scale(.97); }
}
html.no-anim .hero-tower { opacity: 1 !important; transform: none !important; animation: none !important; }

/* ---------- Imagen clave: auto + torre ---------- */
.hero-key { height: auto; aspect-ratio: 1920 / 820; max-height: 640px; display: block; }
.hero-key img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; filter: none; }
.hero-key::after { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .hero-key img { transform: scale(1.04); animation: film-settle 5s ease-out forwards; }
}
@media (max-width: 860px) {
  .hero-key { aspect-ratio: 4 / 3; max-height: none; height: auto; }
  .hero-key img { object-position: 76% 50%; }
}

/* ============================================
   COBERTURAS v2 (mockup de Abi): foto en arco + tabla con íconos
   ============================================ */
.coverages { position: relative; overflow: hidden; }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gris); margin-bottom: 18px; }
.cov-head { max-width: 640px; position: relative; z-index: 1; }
.cov-photo {
  position: absolute; z-index: 0;
  right: -3%; top: -14%;
  width: 55%; max-width: 820px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 92%);
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 92%);
  pointer-events: none;
}
.cov-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 60%; }
.cov-note {
  position: absolute; left: 14%; top: 36%;
  font-family: 'Caveat', cursive;
  font-weight: 600; font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05; color: var(--azul-profundo);
  transform: rotate(-6deg);
  text-align: center;
}
.cmp-wrap { position: relative; z-index: 1; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.cmp-v2 thead th { vertical-align: top; padding-top: 26px; }
.cmp-v2 thead th:not(.cmp-first) { text-align: center; }
.cmp-first { text-align: left !important; }
.cmp-q { display: block; font-family: var(--font-display); font-size: 28px; line-height: 1.1; color: var(--tinta); margin-bottom: 8px; letter-spacing: -0.01em; }
.cmp-qsub { display: block; font-size: 15px; line-height: 1.45; color: var(--gris); font-weight: 400; max-width: 30ch; text-wrap: pretty; }
.cov-car { width: 58px; height: 36px; color: var(--azul-profundo); margin: 0 auto 8px; display: block; }
.cmp-top .cov-car { color: var(--azul); }
.cmp-since { display: block; font-size: 13.5px; color: var(--gris); margin-top: 12px; font-weight: 500; }
.cmp-year { display: block; font-family: var(--font-display); font-size: 30px; color: var(--azul); line-height: 1.1; margin-top: 2px; }
.cmp-v2 tbody tr:nth-child(odd) th, .cmp-v2 tbody tr:nth-child(odd) td:not(.cmp-top) { background: rgba(244, 247, 250, .7); }
.cmp-v2 tbody th, .cmp-v2 tbody td { border-bottom: 0; }
.cmp-v2 tbody th { font-weight: 500; }
.cmp-v2 thead th { border-bottom: 1px solid var(--piedra); }

.cov-foot {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 24px;
}
.cov-foot-text { display: flex; align-items: center; gap: 14px; }
.cov-shield { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--azul-tinte); border: 1px solid rgba(28, 123, 190, 0.22); color: var(--azul); flex: none; }
.cov-shield svg { width: 24px; height: 24px; }
.cov-foot-title { font-weight: 700; font-size: 16.5px; color: var(--tinta); }
.cov-foot-sub { font-size: 15px; color: var(--gris); }
.btn-dark { background: var(--azul-profundo); color: var(--blanco); padding: 18px 30px; font-size: 16px; }
.btn-dark:hover { background: #0C2438; transform: translateY(-1px); }
.btn-dark::after { content: ""; width: 16px; height: 16px; background-color: currentColor; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12h12M13 6l6 6-6 6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12h12M13 6l6 6-6 6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat; }
.coverages .cmp-notes { margin-top: 28px; position: relative; z-index: 1; }

@media (max-width: 1024px) {
  .cov-photo { width: 80%; right: -20%; top: -4%; opacity: .9; }
}
@media (max-width: 860px) {
  .cov-photo { position: relative; width: auto; right: auto; top: auto; max-width: none; aspect-ratio: 16 / 10; border-radius: 22px; margin: 0 clamp(20px, 4vw, 40px) 24px; -webkit-mask-image: none; mask-image: none; }
  .cov-note { left: 8%; top: 10%; font-size: 22px; }
  .cov-foot { flex-direction: column; align-items: stretch; }
  .cov-foot .btn { width: 100%; }
  .cmp-q { font-size: 22px; }
}

/* ---------- Tipografía más legible ---------- */
:root {
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --tinta-75: rgba(26, 47, 68, 0.88);
  --gris: #4E5D6B;
}
.hero-title, .section-title, .finale-title, .card-title, .cmp-tier, .cmp-q, .flow-text h3, .bento-title, .office h3, .footer-col h3, .callout-title, .tier-name, .steps h3 {
  font-weight: 600;
  font-variation-settings: "opsz" 18, "SOFT" 100, "WONK" 0;
  letter-spacing: -0.01em;
}
.hero-center .hero-title { letter-spacing: -0.012em; line-height: 1.06; }
.year-value, .bento-num, .cmp-year, .fact-num, .family-facts strong { font-weight: 600; }
body { font-size: 17px; }
.section-sub, .hero-sub { color: var(--tinta-75); }
.cmp th, .cmp td { font-size: 16px; }
.cmp tbody th { color: var(--tinta); }

/* Cabecera de la tabla: los tres autos y sus textos a la misma altura.
   La etiqueta "Más completa" flota arriba y no empuja el contenido. */
.cmp-v2 thead th { position: relative; }
.cmp-v2 thead th:not(.cmp-first) { padding-top: 66px; }
.cmp-v2 .cmp-badge { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); margin: 0; white-space: nowrap; }
@media (max-width: 860px) {
  .cmp-v2 thead th:not(.cmp-first) { min-width: 190px; }
  .cmp-v2 .cmp-tier { font-size: 18px; white-space: nowrap; }
}

/* ---------- Somos una familia: título centrado + banner ---------- */
.family-v2 { padding-block: clamp(72px, 9vw, 120px) 0; background: var(--blanco); }
.family-v2 .family-head { max-width: 760px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.family-v2 .family-head .section-sub { margin-inline: auto; max-width: 56ch; }
.family-banner { margin: 0; width: 100%; aspect-ratio: 1916 / 821; max-height: 640px; overflow: hidden; display: block; }
.family-banner img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; display: block; }
@media (prefers-reduced-motion: no-preference) {
  .family-banner img { transform: scale(1.04); animation: film-settle 5s ease-out forwards; }
}
html.no-anim .family-banner img { transform: none !important; animation: none !important; }
.family-strip { list-style: none; margin: 0; padding: clamp(28px, 4vw, 44px) 0 clamp(64px, 8vw, 104px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 32px; }
.family-strip li { display: flex; align-items: flex-start; gap: 14px; }
.family-strip-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--azul-tinte); flex: none; }
.family-strip-icon svg { width: 22px; height: 22px; fill: var(--azul); }
.family-strip-text { font-size: 15.5px; line-height: 1.45; color: var(--tinta-75); text-wrap: pretty; padding-top: 2px; }
.family-strip-text strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; color: var(--tinta); line-height: 1.15; margin-bottom: 3px; font-variation-settings: "opsz" 18, "SOFT" 100, "WONK" 0; }
@media (max-width: 860px) {
  .family-banner { aspect-ratio: 4 / 3; max-height: none; }
  .family-banner img { object-position: 30% 50%; }
  .family-strip { grid-template-columns: minmax(0, 1fr); gap: 18px; }
}

/* ---------- Somos una familia: banner con el texto encima ---------- */
.family-v3 { padding: 0; background: var(--blanco); }
.family-v3 .family-banner {
  position: relative; isolation: isolate; margin: 0; width: 100%;
  aspect-ratio: auto; max-height: none; overflow: hidden;
  min-height: clamp(520px, 64vh, 700px);
  display: flex; align-items: center; justify-content: center;
  color: var(--blanco);
}
.family-v3 .family-banner img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%;
}
.family-shade {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 55% at 50% 42%, rgba(18, 50, 74, .45) 0%, rgba(18, 50, 74, 0) 100%),
    linear-gradient(180deg, rgba(18, 50, 74, .62) 0%, rgba(18, 50, 74, .30) 50%, rgba(18, 50, 74, .58) 100%);
}
.family-content {
  position: relative; z-index: 1;
  width: 100%; max-width: 1040px; margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) clamp(20px, 4vw, 40px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.family-title {
  color: var(--blanco);
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.04;
  text-shadow: 0 10px 40px rgba(0, 30, 60, .45);
  margin-bottom: 20px;
}
.family-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, .92);
  max-width: 54ch;
  text-wrap: pretty;
  text-shadow: 0 2px 18px rgba(0, 30, 60, .45);
  margin-bottom: 34px;
}
.family-v3 .family-strip {
  padding: 0; margin: 0; list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px;
}
.family-v3 .family-strip li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 8px; border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(18, 50, 74, .34);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: 14.5px; font-weight: 600; color: var(--blanco); white-space: nowrap;
}
.family-v3 .family-strip-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(255, 255, 255, .92); flex: none; }
.family-v3 .family-strip-icon svg { width: 16px; height: 16px; fill: var(--azul); }
@media (max-width: 860px) {
  .family-v3 .family-banner { min-height: 0; aspect-ratio: auto; }
  .family-v3 .family-banner img { object-position: 32% 50%; }
  .family-content { padding-block: 64px; }
  .family-title { font-size: clamp(34px, 9.5vw, 44px); }
  .family-v3 .family-strip { flex-direction: column; align-items: center; }
  .family-v3 .family-strip li { white-space: normal; text-align: left; }
}
.family-sub { font-weight: 700; font-size: clamp(19px, 1.8vw, 25px); line-height: 1.4; color: var(--blanco); max-width: 34ch; letter-spacing: -0.005em; }
.family-sub { max-width: none; }
@media (max-width: 640px) { .family-br { display: none; } }

/* ---------- Atención 24/7: cielo nocturno con amanecer + tarjetas de actividad ---------- */
.att { padding: 0 0 clamp(72px, 9vw, 120px); background: var(--blanco); }
.att-band {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: 28px;
  min-height: clamp(460px, 56vh, 620px);
  display: flex; align-items: center; justify-content: center;
  color: var(--blanco);
  background: linear-gradient(180deg, #0A1F35 0%, #0F2C4A 55%, #12324A 100%);
  box-shadow: 0 40px 80px -50px rgba(10, 31, 53, .7);
}
.att-sky {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    radial-gradient(1.2px 1.2px at 12% 18%, rgba(255,255,255,.9) 50%, transparent 51%),
    radial-gradient(1px 1px at 28% 34%, rgba(255,255,255,.7) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 41% 12%, rgba(255,255,255,.85) 50%, transparent 51%),
    radial-gradient(1px 1px at 57% 26%, rgba(255,255,255,.6) 50%, transparent 51%),
    radial-gradient(1.3px 1.3px at 68% 9%, rgba(255,255,255,.9) 50%, transparent 51%),
    radial-gradient(1px 1px at 79% 31%, rgba(255,255,255,.65) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 88% 16%, rgba(255,255,255,.8) 50%, transparent 51%),
    radial-gradient(1px 1px at 22% 8%, rgba(255,255,255,.55) 50%, transparent 51%),
    radial-gradient(1px 1px at 49% 40%, rgba(255,255,255,.5) 50%, transparent 51%),
    radial-gradient(1.1px 1.1px at 93% 42%, rgba(255,255,255,.6) 50%, transparent 51%),
    radial-gradient(1px 1px at 8% 46%, rgba(255,255,255,.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 63% 48%, rgba(255,255,255,.45) 50%, transparent 51%);
  opacity: .9;
}
.att-glow { position: absolute; z-index: -1; pointer-events: none; border-radius: 50%; filter: blur(60px); }
.att-glow-dawn {
  left: -10%; bottom: -46%; width: 70%; height: 80%;
  background: radial-gradient(closest-side, rgba(255, 176, 110, .55) 0%, rgba(255, 140, 90, .22) 45%, rgba(255, 140, 90, 0) 100%);
}
.att-glow-ice {
  right: -12%; top: -40%; width: 56%; height: 78%;
  background: radial-gradient(closest-side, rgba(125, 211, 252, .38) 0%, rgba(28, 123, 190, .18) 50%, rgba(28, 123, 190, 0) 100%);
}
.att-band::after {
  /* horizonte: una línea de luz tenue donde termina la noche */
  content: ""; position: absolute; left: 6%; right: 6%; bottom: 0; height: 1px; z-index: -1;
  background: linear-gradient(90deg, rgba(255,190,140,0) 0%, rgba(255,190,140,.55) 30%, rgba(125,211,252,.55) 70%, rgba(125,211,252,0) 100%);
}
.att-content {
  position: relative; z-index: 1;
  width: 100%; max-width: 760px; margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) clamp(20px, 4vw, 40px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.att-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08);
  font-size: 13.5px; font-weight: 700; letter-spacing: .02em; color: var(--blanco);
  margin-bottom: 22px;
}
.att-kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 4px rgba(52, 211, 153, .22); }
@media (prefers-reduced-motion: no-preference) {
  .att-kicker::before { animation: att-pulse 2.2s ease-in-out infinite; }
  @keyframes att-pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(52,211,153,.22); } 50% { box-shadow: 0 0 0 8px rgba(52,211,153,.08); } }
}
html.no-anim .att-kicker::before { animation: none !important; }
.att-title { color: var(--blanco); font-size: clamp(38px, 4.8vw, 62px); line-height: 1.04; margin-bottom: 18px; text-shadow: 0 10px 40px rgba(0, 20, 40, .5); }
.att-sub { font-weight: 700; font-size: clamp(19px, 1.8vw, 25px); line-height: 1.4; color: var(--blanco); letter-spacing: -0.005em; margin-bottom: 30px; }
.att-strip { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; }
.att-strip li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.07);
  font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.92); white-space: nowrap;
}
.att-strip li::before { content: ""; width: 14px; height: 14px; background-color: #7DD3FC; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / contain no-repeat; }

/* Tarjetas de actividad: prueba visual de que alguien responde a cualquier hora */
.att-card {
  position: absolute; z-index: 2; width: 250px;
  padding: 14px 16px 14px; border-radius: 18px;
  background: rgba(255,255,255,.96); color: var(--tinta);
  box-shadow: 0 30px 60px -24px rgba(0, 20, 40, .7), 0 2px 8px rgba(0, 20, 40, .18);
  text-align: left;
}
.att-card-call { left: 5%; top: 50%; transform: translateY(-50%) rotate(-3deg); }
.att-card-chat { right: 5%; top: 50%; transform: translateY(-50%) rotate(3deg); }
.att-card-head { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.att-card-icon { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--azul-tinte); flex: none; }
.att-card-icon svg { width: 16px; height: 16px; fill: var(--azul); }
.att-card-label { font-size: 13.5px; font-weight: 700; color: var(--tinta); }
.att-card-time { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--gris); font-variant-numeric: tabular-nums; }
.att-card-text { font-size: 14px; line-height: 1.4; color: var(--tinta-75); margin: 0 0 10px; }
.att-card-status { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--ok); background: #E6F4EC; border-radius: var(--r-pill); padding: 4px 10px; }
.att-card-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }
@media (prefers-reduced-motion: no-preference) {
  .att-card-call { animation: att-float-a 7s ease-in-out infinite; }
  .att-card-chat { animation: att-float-b 8s ease-in-out infinite; }
  @keyframes att-float-a { 0%, 100% { transform: translateY(-50%) rotate(-3deg); } 50% { transform: translateY(calc(-50% - 10px)) rotate(-3deg); } }
  @keyframes att-float-b { 0%, 100% { transform: translateY(-50%) rotate(3deg); } 50% { transform: translateY(calc(-50% + 10px)) rotate(3deg); } }
}
html.no-anim .att-card { animation: none !important; }

@media (max-width: 1180px) {
  .att-card { width: 224px; }
  .att-card-call { left: 2.5%; }
  .att-card-chat { right: 2.5%; }
  .att-content { max-width: 620px; }
}
@media (max-width: 960px) {
  .att-band { min-height: 0; flex-direction: column; border-radius: 24px; }
  .att-content { padding-bottom: 8px; }
  .att-card { position: static; transform: none !important; animation: none !important; width: min(100%, 300px); }
  .att-band .att-card-call, .att-band .att-card-chat { margin: 0; }
  .att-band { padding-bottom: 36px; }
  .att-band .att-card-call { order: 2; margin-top: 8px; }
  .att-band .att-card-chat { order: 3; margin-top: 12px; }
  .att-band .att-content { order: 1; }
}
@media (max-width: 640px) {
  .att { padding-bottom: 64px; }
  .att-title { font-size: clamp(34px, 9.5vw, 44px); }
  .att-strip { flex-direction: column; align-items: center; }
  .att-strip li { white-space: normal; }
  .att-card { width: min(100%, 320px); }
}
.att-title { font-size: clamp(36px, 4.2vw, 54px); }
.att-title { max-width: none; font-size: clamp(36px, 4vw, 52px); }
.att-content { max-width: 820px; }
/* Tarjetas en diagonal: llamada abajo a la izquierda, chat arriba a la derecha */
.att-band { min-height: clamp(520px, 62vh, 660px); }
.att-card-call { top: auto; bottom: 9%; left: 5%; transform: rotate(-3deg); }
.att-card-chat { top: 8%; bottom: auto; right: 5%; transform: rotate(3deg); }
@media (prefers-reduced-motion: no-preference) {
  @keyframes att-float-a { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(-3deg); } }
  @keyframes att-float-b { 0%, 100% { transform: translateY(0) rotate(3deg); } 50% { transform: translateY(10px) rotate(3deg); } }
}
@media (max-width: 960px) {
  .att-band { min-height: 0; }
}
.att-band { min-height: clamp(560px, 64vh, 680px); }
.att-card-call { bottom: 7%; left: 3.5%; }
.att-card-chat { top: 6%; right: 3.5%; }

/* ---------- Aura: escenario claro con el chat como protagonista ---------- */
.aura-light {
  color: var(--tinta);
  background:
    radial-gradient(900px 520px at 50% 62%, rgba(91, 180, 240, .26) 0%, rgba(91, 180, 240, 0) 70%),
    radial-gradient(640px 360px at 12% 8%, rgba(125, 211, 252, .22) 0%, rgba(125, 211, 252, 0) 70%),
    linear-gradient(180deg, #FFFFFF 0%, #F0F6FC 40%, #FFFFFF 100%);
}
.aura-light::before, .aura-light::after { display: none; }
.aura-light .why-dots { opacity: .35; }
.aura-light .aura-head { max-width: 820px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.aura-light .section-title { color: var(--tinta); }
.aura-light .section-sub { color: var(--tinta-75); margin-inline: auto; max-width: 58ch; }
.aura-accent {
  display: inline-block;
  background: linear-gradient(92deg, #1C7BBE 0%, #2A9BE0 55%, #5BB4F0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.aura-stage { position: relative; max-width: 920px; margin: 0 auto; }
.aura-halo {
  position: absolute; inset: -6% -10%; z-index: 0; pointer-events: none;
  background: radial-gradient(closest-side, rgba(28, 123, 190, .32) 0%, rgba(91, 180, 240, .16) 45%, rgba(91, 180, 240, 0) 100%);
  filter: blur(40px);
}
.aura-light .gpt {
  position: relative; z-index: 1;
  border: 1px solid rgba(28, 123, 190, .18);
  box-shadow: 0 50px 100px -40px rgba(28, 123, 190, .45), 0 18px 40px -24px rgba(18, 50, 74, .25);
}

/* Insignias flotantes: lo que Aura hace, de un vistazo */
.aura-badge {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px 10px 12px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .96); color: var(--tinta);
  border: 1px solid rgba(28, 123, 190, .16);
  box-shadow: 0 18px 40px -18px rgba(18, 50, 74, .35), 0 2px 6px rgba(18, 50, 74, .06);
  font-size: 14px; font-weight: 700; white-space: nowrap;
}
.aura-badge svg { width: 18px; height: 18px; color: var(--azul); flex: none; }
.aura-badge-1 { left: -8%; top: 12%; transform: rotate(-3deg); }
.aura-badge-2 { right: -9%; top: 34%; transform: rotate(3deg); }
.aura-badge-3 { left: -6%; bottom: 18%; transform: rotate(2deg); }
@media (prefers-reduced-motion: no-preference) {
  .aura-badge-1 { animation: aura-float-a 7s ease-in-out infinite; }
  .aura-badge-2 { animation: aura-float-b 8s ease-in-out .6s infinite; }
  .aura-badge-3 { animation: aura-float-a 9s ease-in-out 1.2s infinite; }
  @keyframes aura-float-a { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
  @keyframes aura-float-b { 0%, 100% { translate: 0 0; } 50% { translate: 0 8px; } }
}
html.no-anim .aura-badge { animation: none !important; }

@media (max-width: 1240px) {
  .aura-badge-1 { left: -2%; }
  .aura-badge-2 { right: -3%; }
  .aura-badge-3 { left: -1%; }
}
@media (max-width: 1080px) {
  .aura-badge { display: none; }
}
.aura-badge-3 { bottom: 34%; }
.aura-halo {
  inset: 8% -5% -7% -5%;
  filter: blur(34px);
  background: radial-gradient(closest-side, rgba(28, 123, 190, .42) 0%, rgba(91, 180, 240, .26) 50%, rgba(91, 180, 240, 0) 100%);
}
/* Anillo degradado alrededor del panel: el borde que lo separa del fondo claro */
.aura-ring {
  position: absolute; inset: -2px; z-index: 0; pointer-events: none;
  border-radius: 32px;
  background: linear-gradient(135deg, #7DD3FC 0%, #1C7BBE 45%, #5BB4F0 100%);
  opacity: .9;
}
.aura-light .gpt { border-color: transparent; }
@media (max-width: 860px) { .aura-ring { border-radius: 24px; } }

/* ---------- Cierre: auto al atardecer, texto a la izquierda ---------- */
.finale-v2 {
  min-height: clamp(640px, 92vh, 860px);
  padding-block: clamp(96px, 12vw, 160px);
  background: #0A1F35;
}
.finale-v2 .finale-photo { object-position: 72% 62%; }
.finale-v2 .finale-bg::after {
  background:
    linear-gradient(180deg, rgba(10, 31, 53, .55) 0%, rgba(10, 31, 53, 0) 26%),
    linear-gradient(90deg, rgba(10, 31, 53, .92) 0%, rgba(10, 31, 53, .78) 30%, rgba(10, 31, 53, .34) 58%, rgba(10, 31, 53, .04) 100%),
    linear-gradient(0deg, rgba(10, 31, 53, .42) 0%, rgba(10, 31, 53, 0) 30%);
}
.finale-v2 .finale-inner { align-items: flex-start; text-align: left; max-width: none; }
.finale-v2 .finale-title {
  font-size: clamp(44px, 5.6vw, 78px);
  max-width: 13ch;
  text-shadow: 0 12px 44px rgba(0, 20, 40, .55);
}
.finale-v2 .finale-sub { max-width: 38ch; color: rgba(255,255,255,.92); }
.finale-v2 .finale-actions { justify-content: flex-start; }
.finale-v2 .finale-trust { justify-content: flex-start; }
.finale-v2 .finale-trust li { background: rgba(10, 31, 53, .35); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
@media (max-width: 860px) {
  .finale-v2 { min-height: 0; padding-block: 72px 300px; }
  .finale-v2 .finale-photo { object-position: 74% 100%; }
  .finale-v2 .finale-bg::after {
    background:
      linear-gradient(180deg, rgba(10, 31, 53, .94) 0%, rgba(10, 31, 53, .86) 42%, rgba(10, 31, 53, .35) 72%, rgba(10, 31, 53, .05) 100%);
  }
  .finale-v2 .finale-inner { align-items: center; text-align: center; }
  .finale-v2 .finale-title { max-width: none; }
  .finale-v2 .finale-actions, .finale-v2 .finale-trust { justify-content: center; }
}
/* Cierre: menos velo a la derecha para conservar la luz del atardecer */
.finale-v2 .finale-bg::after {
  background:
    radial-gradient(56% 70% at 86% 42%, rgba(255, 176, 100, .16) 0%, rgba(255, 176, 100, 0) 100%),
    linear-gradient(180deg, rgba(10, 31, 53, .38) 0%, rgba(10, 31, 53, 0) 18%),
    linear-gradient(90deg, rgba(10, 31, 53, .92) 0%, rgba(10, 31, 53, .80) 28%, rgba(10, 31, 53, .40) 50%, rgba(10, 31, 53, .06) 72%, rgba(10, 31, 53, 0) 100%),
    linear-gradient(0deg, rgba(10, 31, 53, .30) 0%, rgba(10, 31, 53, 0) 22%);
}
.finale-v2 .finale-title { font-size: clamp(42px, 5vw, 66px); max-width: 20ch; }
@media (max-width: 860px) {
  .finale-v2 { padding-block: 72px 240px; }
  .finale-v2 .finale-bg::after {
    background: linear-gradient(180deg, rgba(10, 31, 53, .94) 0%, rgba(10, 31, 53, .88) 52%, rgba(10, 31, 53, .62) 70%, rgba(10, 31, 53, .08) 100%);
  }
}

/* ---------- Cierre como banner: imagen a lo ancho, texto centrado encima ---------- */
.finale-v3 {
  min-height: clamp(520px, 66vh, 700px);
  padding-block: clamp(72px, 9vw, 110px);
  background: #0A1F35;
}
.finale-v3 .finale-photo { object-position: 64% 62%; }
.finale-v3 .finale-bg::after {
  background:
    radial-gradient(58% 62% at 50% 50%, rgba(10, 31, 53, .58) 0%, rgba(10, 31, 53, .30) 55%, rgba(10, 31, 53, 0) 100%),
    linear-gradient(180deg, rgba(10, 31, 53, .60) 0%, rgba(10, 31, 53, .34) 48%, rgba(10, 31, 53, .68) 100%);
}
.finale-v3 .finale-inner { align-items: center; text-align: center; }
.finale-v3 .finale-title {
  font-size: clamp(40px, 5vw, 66px);
  max-width: 18ch;
  text-shadow: 0 12px 44px rgba(0, 20, 40, .6);
}
.finale-v3 .finale-sub { color: rgba(255,255,255,.94); text-shadow: 0 2px 18px rgba(0, 20, 40, .5); }
.finale-v3 .finale-trust li { background: rgba(10, 31, 53, .38); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
@media (max-width: 860px) {
  .finale-v3 { min-height: 0; padding-block: 72px 64px; }
  .finale-v3 .finale-photo { object-position: 70% 50%; }
  .finale-v3 .finale-bg::after {
    background:
      radial-gradient(70% 60% at 50% 45%, rgba(10, 31, 53, .55) 0%, rgba(10, 31, 53, 0) 100%),
      linear-gradient(180deg, rgba(10, 31, 53, .70) 0%, rgba(10, 31, 53, .55) 50%, rgba(10, 31, 53, .78) 100%);
  }
  .finale-v3 .finale-title { max-width: none; }
}

/* ---------- Un broker compara por ti: tres tarjetas con ilustraciones ---------- */
.how-v2 { background: linear-gradient(180deg, #F4F8FC 0%, #FFFFFF 100%); }
.how-v2 .how-head { max-width: 900px; }
.hw { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.hw-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--blanco);
  border: 1px solid var(--piedra);
  border-radius: 26px;
  padding: 16px 16px 30px;
  box-shadow: 0 30px 60px -46px rgba(18, 50, 74, .45);
}
.hw-card + .hw-card::before {
  content: ""; position: absolute; left: -24px; top: 38%; width: 20px; height: 20px; z-index: 2;
  background-color: var(--azul);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 11h12.2l-4.6-4.6L13 5l7 7-7 7-1.4-1.4 4.6-4.6H4z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 11h12.2l-4.6-4.6L13 5l7 7-7 7-1.4-1.4 4.6-4.6H4z'/></svg>") center / contain no-repeat;
}

/* Área de ilustración */
.hw-art {
  position: relative; isolation: isolate; overflow: hidden;
  height: 300px; border-radius: 20px;
  background: linear-gradient(180deg, #EAF3FB 0%, #F6FAFD 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
}
.hw-blob { position: absolute; z-index: -1; right: -18%; top: -22%; width: 62%; aspect-ratio: 1; border-radius: 50%; background: rgba(125, 211, 252, .32); filter: blur(28px); }

/* 1. Teléfono con burbuja y chips */
.hw-phone {
  position: absolute; left: 24px; top: 40px;
  width: 172px; height: 320px;
  background: #fff; border: 7px solid #D7E2EC; border-radius: 34px;
  box-shadow: 0 30px 50px -30px rgba(18, 50, 74, .45);
  transform: rotate(-6deg);
  padding: 34px 12px 12px;
}
.hw-notch { position: absolute; left: 50%; top: 10px; transform: translateX(-50%); width: 52px; height: 9px; border-radius: 6px; background: #D7E2EC; }
.hw-bubble {
  display: inline-block; max-width: 100%;
  padding: 9px 11px; border-radius: 14px 14px 14px 4px;
  background: #F1F5F9; color: var(--tinta);
  font-size: 12.5px; font-weight: 600; line-height: 1.35;
}
.hw-carbox { margin-top: 12px; padding: 16px 12px; border-radius: 14px; background: var(--azul-tinte); color: var(--azul-profundo); display: grid; place-items: center; }
.hw-carbox svg { width: 92px; height: 58px; }
.hw-chips { list-style: none; margin: 0; padding: 0; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); display: grid; gap: 10px; }
.hw-chips li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 10px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--piedra);
  box-shadow: 0 8px 20px -14px rgba(18, 50, 74, .5);
  font-size: 13px; font-weight: 600; color: var(--tinta);
}
.hw-chips li:nth-child(2) { translate: 10px 0; }
.hw-chips li:nth-child(3) { translate: -4px 0; }
.hw-chips li:nth-child(4) { translate: 12px 0; }
.hw-chips svg { width: 16px; height: 16px; color: var(--azul); }

/* 2. Lista de comparación */
.hw-list { width: 100%; padding: 0 20px; display: grid; gap: 9px; }
.hw-row {
  display: grid; grid-template-columns: 28px 1fr auto; grid-template-areas: "logo name price" "logo bar bar";
  align-items: center; column-gap: 10px; row-gap: 6px;
  padding: 9px 12px; border-radius: 14px;
  background: #fff; border: 1px solid var(--piedra);
  font-size: 12.5px; color: var(--tinta);
}
.hw-row.is-best { background: #EEF8F1; border-color: #BFE3CB; }
.hw-logo { grid-area: logo; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 1px solid var(--piedra); display: grid; place-items: center; overflow: hidden; }
.hw-logo img { width: 20px; height: 20px; object-fit: contain; }
.hw-name { grid-area: name; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.hw-tag { font-size: 10.5px; font-weight: 700; color: var(--ok); background: #D6F0DE; padding: 2px 8px; border-radius: var(--r-pill); }
.hw-price { grid-area: price; font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hw-price small { font-weight: 500; color: var(--gris); font-size: 11px; margin-left: 1px; }
.hw-bar { grid-area: bar; position: relative; height: 6px; border-radius: 4px; background: #E3EAF0; overflow: hidden; }
.hw-bar::after { content: ""; position: absolute; inset: 0; width: var(--w); border-radius: 4px; background: linear-gradient(90deg, #5BB4F0, #1C7BBE); }
.hw-row.is-best .hw-bar::after { background: linear-gradient(90deg, #4ADE80, #1F8A5B); }
.hw-note { position: absolute; right: 14px; bottom: 9px; font-size: 11px; color: var(--gris); }

/* 3. Ventana de email */
.hw-mail {
  width: calc(100% - 40px); margin-top: 6px;
  background: #fff; border: 1px solid var(--piedra); border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 40px -30px rgba(18, 50, 74, .45);
}
.hw-mail-bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--marfil-2); }
.hw-mail-bar i { width: 9px; height: 9px; border-radius: 50%; background: #F87171; }
.hw-mail-bar i:nth-child(2) { background: #FBBF24; }
.hw-mail-bar i:nth-child(3) { background: #34D399; }
.hw-from { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; color: var(--tinta); line-height: 1.1; }
.hw-from b { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, #5BB4F0, #1C7BBE); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 13px; }
.hw-from small { display: block; font-weight: 500; color: var(--gris); font-size: 10px; margin-top: 2px; }
.hw-mail-body { padding: 14px 14px 14px; }
.hw-mail-title { font-size: 15px; font-weight: 700; color: var(--tinta); margin: 0 0 6px; }
.hw-mail-text { font-size: 12.5px; line-height: 1.45; color: var(--gris); margin: 0 0 12px; }
.hw-attach { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 12px; border: 1px solid var(--piedra); background: #FAFCFE; }
.hw-pdf { width: 34px; height: 34px; border-radius: 8px; background: #E5484D; color: #fff; font-size: 10px; font-weight: 800; display: grid; place-items: center; flex: none; }
.hw-attach-txt { display: grid; line-height: 1.15; font-size: 12.5px; color: var(--tinta); }
.hw-attach-txt small { font-size: 11px; color: var(--gris); margin-top: 2px; }
.hw-attach svg { width: 18px; height: 18px; color: var(--azul); margin-left: auto; flex: none; }
.hw-scribble {
  position: absolute; right: 14px; bottom: 6px;
  font-family: 'Caveat', cursive; font-weight: 600; font-size: 20px; line-height: 1;
  color: var(--azul); transform: rotate(-7deg); text-align: center;
}

/* Texto de cada paso */
.hw-n {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #5BB4F0, #1C7BBE); color: #fff;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 10px 20px -10px rgba(28, 123, 190, .7);
  margin: 0 0 16px 6px;
}
.hw-text { padding: 0 6px; }
.hw-text h3 { font-family: var(--font-display); font-weight: 600; font-size: 23px; line-height: 1.15; letter-spacing: -0.01em; color: var(--tinta); margin: 0 0 8px; font-variation-settings: "opsz" 18, "SOFT" 100, "WONK" 0; text-wrap: balance; }
.hw-text p { font-size: 16px; line-height: 1.5; color: var(--gris); margin: 0; text-wrap: pretty; }

@media (max-width: 1180px) {
  .hw { gap: 22px; }
  .hw-card + .hw-card::before { left: -21px; }
  .hw-phone { left: 14px; width: 156px; }
  .hw-chips { right: 10px; }
  .hw-chips li { font-size: 12px; padding: 7px 12px 7px 9px; }
}
@media (max-width: 960px) {
  .hw { grid-template-columns: minmax(0, 1fr); gap: 22px; max-width: 520px; margin: 0 auto; }
  .hw-card + .hw-card::before { left: 50%; top: -21px; transform: translateX(-50%) rotate(90deg); }
  .hw-art { height: 280px; }
  .hw-phone { left: 22px; width: 168px; }
  .hw-chips { right: 18px; }
}
@media (max-width: 420px) {
  .hw-art { height: 260px; }
  .hw-phone { left: 10px; width: 150px; top: 34px; }
  .hw-chips { right: 8px; gap: 8px; }
  .hw-chips li { font-size: 11.5px; padding: 6px 10px 6px 8px; }
  .hw-list { padding: 0 12px; }
  .hw-mail { width: calc(100% - 24px); }
  .hw-scribble { font-size: 17px; }
}
.hw-row { grid-template-columns: 44px 1fr auto; }
.hw-logo { width: 44px; height: 28px; border-radius: 8px; }
.hw-logo img { width: 38px; height: 20px; }
.hw-bubble { max-width: 118px; }
.hw-tag { white-space: nowrap; }
.hw-row.is-best .hw-name { gap: 6px; }
/* Cierre con la torre: la torre brilla arriba, el texto va debajo */
.finale-v3 {
  min-height: 0;
  padding-block: clamp(300px, 34vw, 430px) clamp(64px, 7vw, 96px);
}
.finale-v3 .finale-photo { object-position: 50% 18%; }
.finale-v3 .finale-bg::after {
  background:
    linear-gradient(180deg, rgba(10, 31, 53, .22) 0%, rgba(10, 31, 53, .10) 30%, rgba(10, 31, 53, .55) 52%, rgba(10, 31, 53, .80) 74%, rgba(10, 31, 53, .90) 100%);
}
.finale-v3 .finale-inner { justify-content: flex-end; }
@media (max-width: 860px) {
  .finale-v3 { padding-block: 250px 56px; }
  .finale-v3 .finale-photo { object-position: 52% 0%; }
  .finale-v3 .finale-bg::after {
    background:
      linear-gradient(180deg, rgba(10, 31, 53, .25) 0%, rgba(10, 31, 53, .30) 22%, rgba(10, 31, 53, .78) 42%, rgba(10, 31, 53, .92) 100%);
  }
}
/* Cierre: texto centrado en el banner y velo azul más presente */
.finale-v3 {
  min-height: clamp(580px, 72vh, 740px);
  padding-block: clamp(80px, 9vw, 120px);
  display: flex; align-items: center;
}
.finale-v3 .finale-inner { justify-content: center; margin-inline: auto; }
.finale-v3 .finale-photo { object-position: 50% 30%; }
.finale-v3 .finale-bg::after {
  background:
    radial-gradient(62% 68% at 50% 52%, rgba(10, 31, 53, .62) 0%, rgba(10, 31, 53, .36) 55%, rgba(10, 31, 53, 0) 100%),
    linear-gradient(180deg, rgba(10, 31, 53, .58) 0%, rgba(10, 31, 53, .46) 45%, rgba(10, 31, 53, .80) 100%);
}
@media (max-width: 860px) {
  .finale-v3 { min-height: 0; padding-block: 80px 64px; }
  .finale-v3 .finale-photo { object-position: 50% 40%; }
  .finale-v3 .finale-bg::after {
    background:
      radial-gradient(80% 60% at 50% 50%, rgba(10, 31, 53, .55) 0%, rgba(10, 31, 53, 0) 100%),
      linear-gradient(180deg, rgba(10, 31, 53, .72) 0%, rgba(10, 31, 53, .62) 50%, rgba(10, 31, 53, .86) 100%);
  }
}
/* Cierre v3, imagen con la torre a la izquierda y el auto a la derecha */
.finale-v3 { min-height: clamp(560px, 66vh, 660px); }
.finale-v3 .finale-photo { object-position: 50% 45%; }
.finale-v3 .finale-bg::after {
  background:
    radial-gradient(54% 70% at 50% 50%, rgba(10, 31, 53, .66) 0%, rgba(10, 31, 53, .40) 55%, rgba(10, 31, 53, 0) 100%),
    linear-gradient(180deg, rgba(10, 31, 53, .48) 0%, rgba(10, 31, 53, .38) 45%, rgba(10, 31, 53, .78) 100%);
}
@media (max-width: 860px) {
  .finale-v3 .finale-photo { object-position: 30% 45%; }
}

/* ---------- Formulario de cotización: botones que lo abren ---------- */
button.btn { font-family: inherit; cursor: pointer; border: 0; }
button.btn-dark, button.btn-primary, button.btn-white { border: 0; }
.header-cta { padding: 12px 20px; font-size: 15px; }
.cta-float { width: auto; height: 52px; padding: 0 20px; border-radius: 999px; gap: 8px; font-weight: 700; font-size: 15px; color: #fff; border: 0; cursor: pointer; font-family: inherit; }
@media (min-width: 861px) { .cta-float { display: none; } }
/* El modal usa la tipografía de la landing */
.lead-modal, .lead-modal * { font-family: 'Figtree', system-ui, sans-serif; }
.lead-form__title { font-family: var(--font-display) !important; font-weight: 600; font-variation-settings: "opsz" 18, "SOFT" 100, "WONK" 0; }
.cta-float { display: inline-flex; flex-direction: row; align-items: center; justify-content: center; white-space: nowrap; line-height: 1; }
.cta-float svg { flex: none; }
/* Tabla de coberturas: tildes con color pleno, se leen de lejos */
.cmp i.ok, .cmp i.no, .cmp i.maybe { width: 28px; height: 28px; box-shadow: 0 4px 10px -4px rgba(18, 50, 74, .35); }
.cmp i.ok { background-color: var(--ok); }
.cmp i.no { background-color: #D14B3F; }
.cmp i.maybe { background-color: #E0A428; }
.cmp i.ok::after, .cmp i.no::after, .cmp i.maybe::after { background-color: #fff; inset: 6px; }
.cmp i.maybe::after { inset: 5px; }

/* ---------- Hero con movimiento: entrada coreografiada, luces que respiran, imagen viva ---------- */
.hero-center { position: relative; isolation: isolate; }
.hero-sky { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); will-change: transform; }
.hero-glow-a { width: 720px; height: 520px; left: 6%; top: -14%; background: radial-gradient(closest-side, rgba(125, 211, 252, .55) 0%, rgba(125, 211, 252, 0) 100%); }
.hero-glow-b { width: 640px; height: 480px; right: 2%; top: 4%; background: radial-gradient(closest-side, rgba(28, 123, 190, .30) 0%, rgba(28, 123, 190, 0) 100%); }
.hl { display: block; overflow: hidden; padding: .06em 0 .14em; margin: -.06em 0 -.14em; }
.hl-in { display: inline-block; }

@media (prefers-reduced-motion: no-preference) {
  .hero-glow-a { animation: hero-glow-a 18s ease-in-out infinite alternate; }
  .hero-glow-b { animation: hero-glow-b 24s ease-in-out infinite alternate; }
  @keyframes hero-glow-a { from { transform: translate(0, 0) scale(1); } to { transform: translate(140px, 50px) scale(1.18); } }
  @keyframes hero-glow-b { from { transform: translate(0, 0) scale(1); } to { transform: translate(-160px, 70px) scale(.88); } }

  .hero-center .hero-kicker { opacity: 0; transform: translateY(12px); animation: rise .7s cubic-bezier(.2,.7,.2,1) .05s forwards; }
  .hl-in { transform: translateY(112%); animation: hl-up .95s cubic-bezier(.2,.8,.2,1) forwards; }
  .hl:nth-child(1) .hl-in { animation-delay: .14s; }
  .hl:nth-child(2) .hl-in { animation-delay: .28s; }
  @keyframes hl-up { to { transform: translateY(0); } }
  .hero-center .hero-sub { opacity: 0; transform: translateY(14px); animation: rise .7s cubic-bezier(.2,.7,.2,1) .5s forwards; }
  .hero-center .hero-actions { opacity: 0; transform: translateY(14px) scale(.96); animation: rise-card .7s cubic-bezier(.2,.7,.2,1) .62s forwards; }
  .hero-center .hero-chips { animation-delay: .8s; }

  .hero-chip .orb { animation: orb-bob 3.4s ease-in-out infinite; }
  .hero-chip:nth-child(2) .orb { animation-delay: .6s; }
  .hero-chip:nth-child(3) .orb { animation-delay: 1.2s; }
  .hero-chip:nth-child(4) .orb { animation-delay: 1.8s; }
  @keyframes orb-bob {
    0%, 100% { transform: translateY(0); box-shadow: inset 0 0 0 1px rgba(0,0,0,.06), 0 0 0 0 rgba(28, 123, 190, .28); }
    50% { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(0,0,0,.06), 0 0 0 7px rgba(28, 123, 190, 0); }
  }

  .hero-key img { transform: scale(1.08); animation: hero-ken 24s ease-in-out infinite alternate; will-change: transform; }
  @keyframes hero-ken { from { transform: scale(1.08); } to { transform: scale(1.15); } }
}
html.no-anim .hero-center .hero-kicker, html.no-anim .hero-center .hero-sub, html.no-anim .hero-center .hero-actions,
html.no-anim .hl-in, html.no-anim .hero-glow, html.no-anim .hero-chip .orb { animation: none !important; opacity: 1 !important; transform: none !important; }
html.no-anim .hero-key img { translate: none !important; }
@media (min-width: 861px) { .cta-float { display: none !important; } }

/* ---------- Chat real dentro del bloque de Aura ---------- */
.gpt-thread { max-height: 480px; overflow-y: auto; padding: 26px 24px 10px; display: flex; flex-direction: column; gap: 14px; scroll-behavior: smooth; }
.gpt-msg { display: flex; gap: 12px; max-width: 86%; }
.gpt-msg-user { align-self: flex-end; flex-direction: row-reverse; }
.gpt-msg-avatar { width: 32px; height: 32px; border-radius: 50%; flex: none; background: #fff; border: 1px solid var(--piedra); display: grid; place-items: center; overflow: hidden; }
.gpt-msg-avatar img { width: 20px; height: 20px; object-fit: contain; }
.gpt-msg-body { display: flex; flex-direction: column; gap: 4px; }
.gpt-msg-user .gpt-msg-body { align-items: flex-end; }
.gpt-msg-role { font-size: 11.5px; font-weight: 700; color: var(--gris); letter-spacing: .02em; padding: 0 4px; }
.gpt-msg-text { font-family: var(--gpt-font, 'Montserrat', sans-serif); font-size: 14.5px; line-height: 1.55; color: var(--tinta); padding: 12px 16px; border-radius: 18px 18px 18px 6px; background: #fff; border: 1px solid rgba(91, 180, 240, .28); box-shadow: 0 6px 18px -12px rgba(28, 123, 190, .35); }
.gpt-msg-user .gpt-msg-text { background: linear-gradient(135deg, #1C7BBE, #145C90); color: #fff; border: 0; border-radius: 18px 18px 6px 18px; }
.gpt-msg-text strong { font-weight: 700; }
.gpt-dots { display: inline-flex; gap: 4px; vertical-align: middle; }
.gpt-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--azul); opacity: .35; animation: gpt-dot 1.2s ease-in-out infinite; }
.gpt-dots i:nth-child(2) { animation-delay: .2s; }
.gpt-dots i:nth-child(3) { animation-delay: .4s; }
@keyframes gpt-dot { 0%, 80%, 100% { opacity: .35; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }
.gpt-typing-status { display: block; font-size: 12px; color: var(--gris); margin-top: 6px; }
.gpt-typing-status:empty { display: none; }
.gpt-file-pill { display: inline-flex; align-items: center; gap: 8px; margin: 6px 8px 0; padding: 6px 8px 6px 12px; border-radius: var(--r-pill); background: var(--azul-tinte); color: var(--azul-profundo); font-size: 13px; font-weight: 600; align-self: flex-start; }
.gpt-file-pill svg { color: var(--azul); }
.gpt-file-pill button { width: 22px; height: 22px; border-radius: 50%; border: 0; background: rgba(28, 123, 190, .15); color: var(--azul-profundo); font-size: 16px; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.gpt-file-pill button:hover { background: rgba(28, 123, 190, .3); }
a.gpt-tool { text-decoration: none; }
@media (max-width: 860px) {
  .gpt-thread { max-height: 420px; padding: 18px 14px 8px; }
  .gpt-msg { max-width: 94%; }
}
.gpt-empty[hidden], .gpt-thread[hidden], .gpt-file-pill[hidden] { display: none !important; }
.gpt-thread { min-height: 380px; }
.aura-badge { transition: opacity .4s ease; }
.aura-stage.is-chatting .aura-badge { opacity: 0; pointer-events: none; }
@media (max-width: 860px) { .gpt-thread { min-height: 300px; } }

/* ---------- Hero: las 4 burbujas en una sola línea ---------- */
.hero-center .hero-inner { max-width: 1100px; }
@media (min-width: 961px) {
  .hero-chips { flex-wrap: nowrap; gap: 10px; }
  .hero-chip { white-space: nowrap; padding: 11px 15px 11px 12px; }
}

/* ---------- Aura: panel más ancho y cuadro de texto que invita a escribir ---------- */
.aura-stage { max-width: none; }
.aura-badge-1 { left: -3%; top: 10%; }
.aura-badge-2 { right: -3.5%; top: 34%; }
.aura-badge-3 { left: -2%; bottom: 34%; }
.gpt-prompt { max-width: 940px; padding: 10px; }
.gpt-textarea { min-height: 72px; font-size: 16.5px; padding: 12px 14px; color: var(--tinta); }
.gpt-textarea::placeholder { color: #6B7A88; }
.gpt-send { width: 44px; height: 44px; background: var(--azul); }
.gpt-send:disabled { background: rgba(28, 123, 190, .38); color: #fff; }
.gpt-send svg { width: 20px; height: 20px; }
.gpt-tool { width: 40px; height: 40px; }
.gpt-tool svg { width: 20px; height: 20px; }
.gpt-prompt-hint { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 4px 0 10px; font-size: 14px; font-weight: 700; color: var(--azul); letter-spacing: .01em; }
.gpt-prompt-hint svg { color: var(--azul); }
@media (prefers-reduced-motion: no-preference) {
  .gpt-prompt-hint svg { animation: hint-bounce 1.6s ease-in-out infinite; }
  @keyframes hint-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
}
html.no-anim .gpt-prompt-hint svg { animation: none !important; }
@media (max-width: 1240px) { .aura-badge-1 { left: 0; } .aura-badge-2 { right: 0; } .aura-badge-3 { left: 0; } }

/* ---------- Voz dentro del bloque de Aura ---------- */
.gpt-prompt-wrap[hidden], .gpt-voice[hidden], .gpt-voice-bars[hidden], .gpt-transcript[hidden] { display: none !important; }
button.gpt-tab, button.gpt-nudge { font-family: inherit; cursor: pointer; }
.gpt-voice { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; padding: 44px 24px 44px; min-height: 520px; }
.gpt-voice-orb-wrap { position: relative; width: 160px; height: 160px; display: grid; place-items: center; margin-bottom: 4px; }
.gpt-voice-orb {
  position: relative; z-index: 2; width: 120px; height: 120px; border-radius: 50%; border: 0; cursor: pointer; color: #fff;
  background: radial-gradient(circle at 30% 30%, #5BB4F0, #1C7BBE 55%, #12324A 125%);
  box-shadow: 0 26px 50px -18px rgba(28, 123, 190, .75), inset 0 2px 10px rgba(255, 255, 255, .35);
  display: grid; place-items: center; transition: transform .25s, background .3s;
}
.gpt-voice-orb:hover:not(:disabled) { transform: scale(1.04); }
.gpt-voice-orb:disabled { cursor: wait; }
.gpt-voice-orb svg { width: 44px; height: 44px; }
.gpt-voice-orb.is-active { background: radial-gradient(circle at 30% 30%, #4ADE80, #1F8A5B 55%, #0F5132 125%); box-shadow: 0 26px 50px -18px rgba(31, 138, 91, .75), inset 0 2px 10px rgba(255, 255, 255, .35); }
.gpt-voice-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(28, 123, 190, .4); opacity: 0; }
@media (prefers-reduced-motion: no-preference) {
  .gpt-voice-orb.is-calling { animation: orb-breathe 1.2s ease-in-out infinite; }
  .gpt-voice-orb-wrap.is-calling .gpt-voice-ring { animation: ring-out 2.2s ease-out infinite; }
  .gpt-voice-orb-wrap.is-calling .gpt-voice-ring.r2 { animation-delay: 1.1s; }
  @keyframes ring-out { 0% { transform: scale(.78); opacity: .9; } 100% { transform: scale(1.45); opacity: 0; } }
  @keyframes orb-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
}
.gpt-voice-label { font-family: var(--gpt-font, 'Montserrat', sans-serif); font-size: 19px; font-weight: 600; color: var(--tinta); margin: 0; }
.gpt-voice-status { font-size: 14.5px; color: var(--gris); margin: 0; min-height: 1.4em; }
.gpt-voice-bars { display: flex; align-items: center; gap: 4px; height: 44px; }
.gpt-voice-bars span { width: 4px; height: 8px; border-radius: 2px; background: var(--azul); opacity: .45; animation: bar-idle 1.4s ease-in-out infinite; }
.gpt-voice-bars span:nth-child(odd) { animation-delay: .2s; }
.gpt-voice-bars span:nth-child(3n) { animation-delay: .45s; }
.gpt-voice-bars span:nth-child(5n) { animation-delay: .7s; }
.gpt-voice-bars.is-agent span { opacity: .95; animation-duration: .6s; }
.gpt-voice-bars.is-user span { background: var(--ok); opacity: .95; animation-duration: .6s; }
@keyframes bar-idle { 0%, 100% { height: 8px; } 50% { height: 34px; } }
.gpt-transcript { width: 100%; max-width: 640px; max-height: 190px; overflow-y: auto; text-align: left; background: #fff; border: 1px solid var(--piedra); border-radius: 14px; padding: 12px 14px; font-size: 13.5px; line-height: 1.5; color: var(--tinta); display: grid; gap: 6px; }
.gpt-tr b { color: var(--azul); font-weight: 700; margin-right: 6px; }
.gpt-tr-user b { color: var(--ok); }
.gpt-voice-help { font-size: 13.5px; color: var(--gris); max-width: 48ch; margin: 2px 0 0; text-wrap: pretty; }
@media (max-width: 860px) { .gpt-voice { min-height: 440px; padding: 36px 16px; } }

/* ---------- Solo celular: hero, cinta, cierre y footer más livianos ---------- */
@media (max-width: 860px) {
  .hero-center .hero-kicker { display: none; }
  .carriers-lead { display: none; }
  .finale-kicker { display: none; }

  /* Footer plegable: solo se ven los títulos, cada uno se abre al tocarlo */
  .footer-grid { gap: 0; padding-block: 36px 16px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; padding-bottom: 22px; border-bottom: 1px solid var(--piedra); }
  .footer-logo { height: 58px; margin-bottom: 12px; }
  .footer-brand p { max-width: none; }
  .footer-col { border-bottom: 1px solid var(--piedra); }
  .footer-col h3 { margin: 0; padding: 16px 0; font-size: 16px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .footer-col h3::after { content: ""; width: 18px; height: 18px; flex: none; background-color: var(--azul); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7.4 8.6 12 13.2l4.6-4.6L18 10l-6 6-6-6z'/></svg>") center / contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7.4 8.6 12 13.2l4.6-4.6L18 10l-6 6-6-6z'/></svg>") center / contain no-repeat; transition: transform .25s; }
  .footer-col.is-open h3::after { transform: rotate(180deg); }
  .footer-col > :not(h3) { display: none; }
  .footer-col.is-open > :not(h3) { display: block; }
  .footer-col.is-open { padding-bottom: 14px; }
  .footer-col a { padding: 8px 0; }
  .footer-bottom { padding-top: 18px; text-align: center; font-size: 13px; gap: 4px; }
}
@media (max-width: 860px) { .footer { padding-bottom: 76px; } }
@media (max-width: 860px) { .cov-foot-text { display: none; } .cov-foot { justify-content: center; } }
.hl:nth-child(3) .hl-in { animation-delay: .42s; }
