/* ==========================================================================
   Univen Landing — diseño: Figma "Univen 2.0 Rebranding MVP" (436:36784)
   Tokens tomados de las variables del archivo Figma.
   ========================================================================== */

/* ---- Fuentes (Oatmeal Pro, licencia QuintoAndar) ---- */
@font-face { font-family: 'Oatmeal Pro'; src: url('assets/fonts/OatmealPro-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Oatmeal Pro'; src: url('assets/fonts/OatmealPro-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Oatmeal Pro'; src: url('assets/fonts/OatmealPro-Semibold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Oatmeal Pro'; src: url('assets/fonts/OatmealPro-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }

:root {
  /* Colors — Figma variables */
  --color-primary: #0046d2;            /* Colors/Surface/Primary/High · Text_icon/Primary/onGround */
  --color-navy: #062756;               /* Colors/Surface/Secondary/High */
  --color-text: #2e393f;               /* Text_icon/Neutral/onGround */
  --color-text-light: #6a7981;         /* Text_icon/Neutral/onGroundLigher */
  --color-onhigh: #fbfcfc;             /* Text_icon/Neutral/onHigh */
  --color-onhigh-lighter: #eaeef1;     /* Text_icon/Neutral/onHighLigher */
  --color-border: #d6dee2;             /* Border/Neutral/onGround */
  --color-border-lighter: #eaeef1;     /* Border/Neutral/onGroundLigher */
  --color-purple: #8656d1;             /* Text_icon/Tags/OnPurple */
  --color-purple-chip: #b27dde;        /* chip "Novo" del hero */
  --color-card-bg: #f8f9f5;            /* fondo cards funcionalidades */
  --color-surface-medium: #eaeef1;     /* Surface/Neutral/Medium */
  --color-bg: #fbfcfc;                 /* Surface/Neutral/ExtraLow */

  /* Spacing */
  --spacing-xxs: 4px;
  --spacing-xs: 8px;
  --spacing-xs-sm: 12px;
  --spacing-sm: 16px;
  --spacing-18: 18px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xlg: 40px;
  --spacing-5xlg: 72px;

  /* Radii */
  --border-sm-md: 12px;
  --border-md: 16px;
  --border-lg: 24px;
  --border-xl: 48px;
  --border-pill: 1000px;

  /* Sombra elementos (Figma effect) */
  --shadow-el: 16px 16px 42px 0 rgba(92, 93, 99, 0.12);

  /* Animación (capa de interacción, ref. landing de Luis) */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Oatmeal Pro', 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }

.container { max-width: 1188px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1236px) { .container { padding: 0; } }

/* ==========================================================================
   Reveal on scroll (patrón de la landing de Luis)
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); }
.revealed[data-reveal] { opacity: 1; transform: none; transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---- Micro-momentos: parallax + zoom scroll-linked (JS pone el transform) ---- */
[data-parallax], [data-parallax-scroll], [data-zoom] { will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  [data-parallax], [data-parallax-scroll], [data-zoom] { will-change: auto; }
}

/* ==========================================================================
   Botones (Figma: Button / button - default)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 12px 20px;
  border-radius: var(--border-pill);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background-color .25s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(6, 39, 86, 0.25); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: var(--spacing-18) var(--spacing-lg); }
.btn--primary { background: var(--color-primary); }
.btn--navy { background: var(--color-navy); }
.btn--header { background: var(--color-primary); border: 1px solid var(--color-border-lighter); }

/* ==========================================================================
   Header (fixed, transición al scrollear — patrón de Luis)
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 100px;
  display: flex;
  align-items: center;
  transition: height .5s var(--ease-out);
}
.header--scrolled { height: 88px; }
/* container único (pill glass al scrollear) */
.header__inner {
  width: 100%;
  max-width: 1188px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--border-pill);
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 8px 24px rgba(6, 39, 86, 0);
  transition: max-width .5s var(--ease-out), padding .5s var(--ease-out), background-color .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
@media (min-width: 1236px) { .header__inner { padding: 0; } }
.header--scrolled .header__inner {
  max-width: 900px;
  padding: 12px 12px 12px 32px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(6, 39, 86, 0.10);
}

.header__logo { display: block; }
.header__logo-art { position: relative; display: block; width: 99px; height: 24px; }
.header__logo-mark { position: absolute; left: 0; top: 0; height: 24px; width: auto; }
.header__logo-word { position: absolute; left: 32.15px; top: 3.98px; height: 17.3px; width: auto; }
.header__logo-img--white, .header__logo-img--blue { transition: opacity .4s var(--ease-out); }
.header__logo-img--blue { opacity: 0; }
.header--scrolled .header__logo-img--white { opacity: 0; }
.header--scrolled .header__logo-img--blue { opacity: 1; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 50px;
  transition: gap .5s var(--ease-out);
}
.header--scrolled .header__nav { gap: 28px; }
.header__link {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  position: relative;
  transition: color .4s var(--ease-out);
}
.header--scrolled .header__link { color: var(--color-text); }
.header__link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -4px;
  height: 2px;
  background: currentColor;
  transition: right .3s var(--ease-out);
}
.header__link:hover::after { right: 0; }
.btn--header { margin-left: 17px; transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background-color .4s var(--ease-out), border-color .4s var(--ease-out), color .4s var(--ease-out); }
.btn--header + .btn--header { margin-left: -34px; } /* gap real de 16px entre Login y Entrar no Portal (nav gap 50) */
.header--scrolled .btn--header + .btn--header { margin-left: -24px; } /* nav gap 40 al scrollear */
.header--scrolled .btn--header {
  margin-left: 0;
  background: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy);
}

/* ==========================================================================
   Hero (bloque 1 — fondo azul primario, blob violeta, screenshot producto)
   ========================================================================== */
.hero {
  position: relative;
  background: var(--color-primary);
  /* 827px de hero + 80px extra de azul que asoma detrás de las esquinas
     redondeadas de la sección clara */
  min-height: 963px;
  overflow: hidden;
}
/* brillo sutil bajo la card del hero, en línea con los glows del resto del sitio */
.hero::after {
  content: '';
  position: absolute;
  left: 40%; top: 520px;
  width: 900px; height: 500px;
  background: radial-gradient(closest-side, rgba(134, 86, 209, 0.28), transparent 70%);
  pointer-events: none;
}
/* luz sutil arriba a la derecha del hero */
.hero::before {
  content: '';
  position: absolute;
  right: -260px; top: -360px;
  width: 1200px; height: 950px;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.18), transparent 70%);
  pointer-events: none;
}
.hero__art { position: absolute; left: calc(50% - 91px); top: 195px; width: 1133px; height: 1119px; pointer-events: none; }
.hero__blob {
  /* posición medida del render de Figma: la forma asoma 58px a la izquierda
     de la card (x630) desde y250 y baja hasta y820, junto a la sección clara */
  position: absolute;
  left: 23px; top: -35px;
  width: 612px; height: 570px;
  opacity: 0.9;
  animation: blob-float 9s ease-in-out infinite;
}
.hero__blob img { width: 100%; height: 100%; object-fit: contain; }
.hero__glow { position: absolute; left: 158px; top: 239px; width: 975px; height: 975px; }
.hero__glow img { position: absolute; inset: -41%; width: 182%; height: 182%; }
.hero__product {
  position: absolute;
  left: 59px; top: 0;
  /* la imagen entra completa: el borde derecho alinea con el container (art x685) */
  width: 799px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-el);
  animation: floaty 7s ease-in-out infinite;
}
.hero__product img { width: 100%; height: auto; border-radius: 0; }
/* elemento navy por encima de la card (enmarca la composición) */
.hero__frame {
  position: absolute;
  left: 760px; top: 250px;
  width: 150px; height: 240px;
  /* VIS-4 ⚠ gradiente mantido — aguardando sign-off do Luis */
  background: linear-gradient(160deg, #8fb3ff 0%, #5f8bff 55%, var(--color-primary) 100%);
  border-radius: 24px;
  opacity: 0.92;
  box-shadow: var(--shadow-el);
  animation: floaty 9s ease-in-out -3s infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes blob-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(14px) rotate(1.5deg); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1188px;
  margin: 0 auto;
  padding: 195px 24px 0;
}
@media (min-width: 1236px) { .hero__content { padding: 195px 0 0; } }
.hero__badge {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 4px 16px 4px 4px;
  border: 1px solid var(--color-border-lighter);
  border-radius: var(--border-pill);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(0, 28, 84, 0.2));
  margin-bottom: 42px;
  transition: transform .25s var(--ease-out);
}
/* brillo suave en loop sobre todo el badge */
.hero__badge::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 0;
  width: 40%;
  height: 140%;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-140%) skewX(-12deg);
  animation: chip-shine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes chip-shine {
  0% { transform: translateX(-140%) skewX(-12deg); }
  60%, 100% { transform: translateX(400%) skewX(-12deg); }
}
.hero__badge:hover { transform: translateY(-2px); }
.hero__badge-chip {
  background: var(--color-purple-chip);
  border-radius: var(--border-pill);
  padding: 2px 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--color-onhigh);
}
.hero__badge-arrow { width: 14px; height: 14px; flex-shrink: 0; transition: transform .25s var(--ease-out); }
.hero__badge:hover .hero__badge-arrow { transform: translateX(3px); }
.hero__badge-text { font-size: 14px; font-weight: 600; line-height: 20px; color: var(--color-onhigh); }
.hero__title {
  width: 505px;
  max-width: 100%;
  font-size: 63.13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.26px;
  color: var(--color-onhigh);
  margin-bottom: var(--spacing-sm);
}
.hero__subtitle {
  width: 505px;
  max-width: 100%;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: var(--color-onhigh-lighter);
  margin-bottom: 48px;
}
.hero__eco { margin-top: 32px; }
.hero__eco-text {
  font-size: 17px;
  line-height: 23px;
  letter-spacing: -0.13px;
  color: var(--color-onhigh);
  margin-bottom: 18px;
}
.hero__eco-text strong { font-weight: 700; }
.hero__eco-logos { display: flex; align-items: center; gap: 26px; }
.hero__eco-logos img { height: 32px; width: auto; display: block; opacity: 0.7; }
.hero__eco-sep { width: 1px; height: 23px; background: rgba(255, 255, 255, 0.28); }

/* ==========================================================================
   Fondo suave de la zona clara (glows azul/violeta del Figma)
   ========================================================================== */
.main {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  /* la sección clara monta sobre el azul del hero con esquinas redondeadas */
  margin-top: -80px;
  border-radius: 80px 80px 0 0;
  /* VIS-4 ⚠ gradiente decorativo mantido — aguardando sign-off do Luis */
  background:
    /* brillo violeta bajo el título "Sua operação imobiliária…" */
    radial-gradient(1000px 640px at 38% 360px, rgba(134, 86, 209, 0.30), transparent 68%),
    radial-gradient(900px 700px at 22% 240px, rgba(0, 70, 210, 0.14), transparent 65%),
    radial-gradient(1100px 900px at 78% 520px, rgba(134, 86, 209, 0.08), transparent 65%),
    radial-gradient(1000px 800px at 15% 2350px, rgba(0, 70, 210, 0.08), transparent 65%),
    radial-gradient(1200px 900px at 85% 3050px, rgba(134, 86, 209, 0.06), transparent 65%),
    radial-gradient(900px 700px at 50% 5450px, rgba(134, 86, 209, 0.07), transparent 65%),
    var(--color-bg);
}

.section { padding: 62px 0; }

/* ---- Encabezados de sección ---- */
.eyebrow {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}
.eyebrow--onnavy { color: var(--color-onhigh-lighter); }
.h2 {
  font-size: 47.36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.26px;
  color: var(--color-text);
}
.h2--onnavy { color: var(--color-onhigh); }
.h2--accent { color: var(--color-navy); font-weight: 500; }
.h2__accent { color: var(--color-primary); font-weight: 500; }
.h2__accent--onnavy { font-weight: 500; }
.h2__medium { font-weight: 500; }

.section-head--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 78px;
}
.section-head--split .h2 { max-width: 583px; }
.section-head__para {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: var(--color-text);
  max-width: 477px;
}
.section-head--center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-head__para--center { max-width: 862px; margin-top: 25px; }

/* ==========================================================================
   Bloque 2 — cards de funcionalidades
   ========================================================================== */
.features { padding-top: 124px; }
.cards { display: flex; gap: 39px; }
.card {
  flex: 1;
  min-height: 306px;
  background: var(--color-card-bg);
  border-radius: var(--border-lg);
  padding: var(--spacing-xlg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xlg);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-el); }
.card__icon {
  width: 46px; height: 46px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-sm-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__icon img { width: 24px; height: auto; }
.card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.4px;
  margin-bottom: var(--spacing-xs);
}
.card__text {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: var(--color-text-light);
}

/* ==========================================================================
   Bloque 3 — kanban
   ========================================================================== */
/* fondo suave propio de la sección (evita el tramo blanco del recorrido sticky) */
.kanban {
  background:
    radial-gradient(700px 600px at 18% 30%, rgba(0, 70, 210, 0.07), transparent 65%),
    radial-gradient(800px 700px at 85% 65%, rgba(134, 86, 209, 0.07), transparent 65%);
}
.kanban .section-head--center { margin-bottom: 0; }

/* ---- Showcase: 3 items, imagen centrada + texto alternado (scroll-driven) ---- */
.showcase { display: flex; flex-direction: column; gap: 140px; margin-top: 96px; }
.showcase__item {
  display: grid;
  grid-template-columns: 1fr minmax(0, 620px) 1fr;
  align-items: center;
  column-gap: var(--spacing-xlg);
}
.showcase__media {
  grid-column: 2;
  border-radius: var(--border-md);
  overflow: hidden;
  box-shadow: var(--shadow-el);
  will-change: transform, opacity;
  transform: scale(0.96);
  opacity: 0.5;
}
.showcase__media img {
  width: 100%;
  height: auto;
  display: block;
}
.showcase__text {
  width: 300px;
  max-width: 100%;
}
.showcase__item--left .showcase__text { grid-column: 1; justify-self: end; }
.showcase__item--right .showcase__text { grid-column: 3; justify-self: start; }
.showcase__icon {
  width: 46px; height: 46px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-sm-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}
.showcase__icon img { width: 21px; height: auto; }
.showcase__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin-bottom: var(--spacing-sm);
}
/* fade up del texto: mismo sistema [data-reveal] del sitio, 0.6s ease-out */
.showcase__text .revealed[data-reveal] {
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.showcase__para {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: var(--color-text-light);
}
@media (prefers-reduced-motion: reduce) {
  .showcase__media { transform: none; opacity: 1; }
}

/* ==========================================================================
   Bloque 4 — site (tarjeta navy)
   ========================================================================== */
.site-block {
  background: var(--color-navy);
  border-radius: var(--border-xl);
  padding: 72px 76px 56px;
  overflow: hidden;
}
.site-block__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 8px;
}
.site-block__title .h2 { max-width: 520px; font-size: 54px; }
.site-block__para {
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.4px;
  color: var(--color-onhigh-lighter);
  max-width: 460px;
  padding-top: 42px;
}
.site-block__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
/* ventana de recorte: la imagen entra a ancho completo y se corta solo abajo,
   quedando al ras del borde inferior de la card */
.site-block__mockup {
  position: relative;
  width: 560px;
  height: 340px;
  flex-shrink: 0;
  overflow: hidden;
  align-self: flex-end;
  margin-left: -76px;
  margin-bottom: -56px;
  border-top-right-radius: var(--border-sm-md);
}
.site-block__desktop {
  position: absolute;
  left: -16px; top: 0;
  width: 604px; height: auto;
  border-radius: 0;
}
.site-block__bottom .bullets { flex: 0 1 488px; min-width: 0; max-width: 560px; padding-bottom: 40px; gap: var(--spacing-md); align-self: flex-end; }

/* ---- Bullets con check ---- */
.bullets { display: flex; flex-direction: column; gap: var(--spacing-sm); }
.bullet {
  position: relative;
  display: flex;
  gap: var(--spacing-xs);
  align-items: flex-start;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: var(--color-onhigh);
}
.site-block__bottom .bullet { gap: var(--spacing-sm); font-size: 20px; line-height: 30px; align-items: flex-start; }
.bullet--gray { color: var(--color-text-light); }
.bullet__check { width: 32px; height: 32px; flex-shrink: 0; padding: 8px; box-sizing: border-box; }
.tag-ia {
  display: inline-block;
  background: var(--color-purple);
  border-radius: var(--border-pill);
  padding: 2px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.4px;
  color: var(--color-onhigh);
  margin-left: 6px;
}

/* ==========================================================================
   Bloque 5 — app
   ========================================================================== */
/* fondo azul del bloque app + ecossistema (Figma: banda con esquinas redondeadas) */
.app {
  margin-top: 124px;
  background: linear-gradient(180deg, rgba(0, 70, 210, 0.20), rgba(0, 70, 210, 0.08));
  border-radius: var(--border-xl) var(--border-xl) 0 0;
  padding-top: 96px;
  padding-bottom: 72px;
}
.app + .divider { display: none; }

.app__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.app__content { max-width: 519px; display: flex; flex-direction: column; gap: var(--spacing-md); }
.app__para {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: var(--color-text-light);
  max-width: 447px;
}
.stores { display: flex; gap: var(--spacing-sm); margin-top: var(--spacing-md); }
.store {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-md);
  padding: 12px 24px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.store:hover { transform: translateY(-2px); box-shadow: var(--shadow-el); }
.store__icon { width: 27px; height: auto; }
.store__text { display: flex; flex-direction: column; }
.store__hint { font-size: 12px; line-height: 1.33; color: var(--color-text); }
.store__name { font-size: 18px; font-weight: 700; line-height: 1.33; color: var(--color-text); }

.app__art { position: relative; width: 608px; flex-shrink: 0; }
.app__mockup {
  width: 100%;
  height: auto;
  animation: floaty 8s ease-in-out infinite;
}

/* ==========================================================================
   Divider
   ========================================================================== */
.divider {
  border: none;
  border-top: 1px solid var(--color-border-lighter);
  max-width: 1174px;
  margin: 0 auto;
}

/* ==========================================================================
   Bloque 6 — ecossistema (contadores animados)
   ========================================================================== */
.eco {
  padding-top: calc(62px + 96px);
  padding-bottom: calc(62px + 96px);
  background: linear-gradient(180deg, rgba(0, 70, 210, 0.08), rgba(0, 70, 210, 0));
}
.eco .section-head--center { margin-bottom: 56px; }

/* Prova social dentro do hero (banda azul, antes da zona clara) */
.proof { position: relative; z-index: 2; padding: 56px 0 168px; }
.proof__intro {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: rgba(251, 252, 252, 0.72);
  text-align: center;
  margin-bottom: 44px;
}
.proof__stats { align-items: flex-start; }
.proof .eco__stat { position: relative; gap: 14px; padding: 0 8px; }
.proof .eco__stat + .eco__stat::before {
  content: '';
  position: absolute;
  left: calc(var(--spacing-5xlg) / -2);
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--color-line, rgba(251, 252, 252, 0.22));
}
.proof .eco__number { font-size: 64px; line-height: 1.04; letter-spacing: -1.2px; color: var(--color-onhigh); }
.proof .eco__number .odo { --odo-h: 54px; }
.proof .eco__label { font-size: 17px; line-height: 22px; color: rgba(251, 252, 252, 0.76); }
@media (max-width: 900px) {
  .proof { padding: 4px 0 64px; }
  .proof__intro { margin-bottom: 32px; }
  .proof .eco__number { font-size: 44px; letter-spacing: -0.6px; }
  .proof .eco__label { font-size: 15px; line-height: 20px; }
  .proof .eco__stat + .eco__stat::before { display: none; }
}
.eco__stats { display: flex; justify-content: center; gap: var(--spacing-5xlg); }
.eco__stat { width: auto; min-width: 157px; max-width: 240px; display: flex; flex-direction: column; gap: var(--spacing-md); text-align: center; }
.eco__number {
  font-size: 84.15px;
  line-height: 0.84;
  letter-spacing: -1.68px;
  color: var(--color-purple);
}
/* roll tipo odómetro de los números */
.odo { display: inline-flex; --odo-h: 0.84em; }
.odo__digit { display: inline-block; overflow: hidden; height: var(--odo-h); }
.odo__col {
  display: block;
  transform: translateY(0);
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.odo__col span { display: block; height: var(--odo-h); line-height: var(--odo-h); }
.eco__label {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: var(--color-text);
}

/* ==========================================================================
   Bloque 7 — testimonial
   ========================================================================== */
.quote__grid { display: flex; align-items: center; gap: 116px; }
.quote__image { width: 517px; flex-shrink: 0; }
.quote__photo { width: 100%; height: auto; }
.quote__content { flex: 1; display: flex; flex-direction: column; gap: 52px; }
.quote__content .h2 { max-width: 559px; }
.quote__body { position: relative; display: flex; flex-direction: column; gap: var(--spacing-sm); }
.quote__stars { width: 160px; height: 28px; margin-bottom: var(--spacing-xs); }
.quote__text {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: var(--color-text);
  max-width: 559px;
}
/* micro animación al rotar el review (incluye el título grande) */
.quote__text, .quote__author, .quote__content .h2 { transition: opacity .45s var(--ease-out), transform .45s var(--ease-out); }
.quote__content--swap .quote__text, .quote__content--swap .quote__author, .quote__content--swap .h2 { opacity: 0; transform: translateY(8px); }
.quote__content--swap .quote__author { transition-delay: 40ms; }
/* alturas reservadas: el bloque no salta cuando cambia el largo del texto */
.quote__content .h2 { min-height: 96px; }
.quote__text { min-height: 120px; }
.quote__author { min-height: 24px; }
.quote__author { font-size: 20px; font-weight: 500; line-height: 24px; letter-spacing: -0.4px; margin-top: var(--spacing-xs); }
.quote__dots {
  display: flex; gap: 10px;
  align-self: center;
  margin-top: var(--spacing-md);
}
.quote__dot {
  width: 9px; height: 9px; padding: 0;
  border: 0; border-radius: 50%;
  background: rgba(30, 41, 89, .22);
  cursor: pointer;
  transition: background .25s var(--ease-out), width .25s var(--ease-out);
}
.quote__dot:hover { background: rgba(30, 41, 89, .4); }
.quote__dot.is-active { width: 26px; border-radius: 999px; background: var(--color-purple, #7c3aed); }
.quote__arrow {
  align-self: flex-end;
  width: 24px; height: 24px;
  transition: transform .25s var(--ease-out);
}
.quote__arrow img { width: 100%; height: 100%; }
.quote__arrow:hover { transform: translateX(6px); }

/* ==========================================================================
   Bloque 8 — FAQ (acordeón animado, patrón de Luis)
   ========================================================================== */
.faq__grid { display: flex; gap: var(--spacing-5xlg); align-items: flex-start; }
.faq__head { flex: 1; }
.faq__head .h2 { max-width: 583px; }
.faq__list { flex: 1; }
.accordion { border-bottom: 1px solid var(--color-border-lighter); }
.accordion__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: var(--color-text);
  text-align: left;
  transition: color .25s var(--ease-out);
}
.accordion__question:hover { color: var(--color-primary); }
.accordion__chevron { width: 24px; height: 24px; flex-shrink: 0; padding: 8px 4.7px; box-sizing: border-box; transition: transform .35s var(--ease-out); }
.accordion--open .accordion__chevron { transform: rotate(180deg); }
.accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.accordion__answer p {
  padding-bottom: var(--spacing-md);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: var(--color-text-light);
}

/* ==========================================================================
   Banner Domi (reemplaza Updates · Figma 471:66200)
   ========================================================================== */
.domi__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border-radius: var(--border-xl);
  padding: 78px 64px;
  /* lavanda derivada del token violeta sobre el fondo claro */
  background: linear-gradient(105deg,
    color-mix(in srgb, var(--color-purple) 4%, var(--color-bg)) 0%,
    color-mix(in srgb, var(--color-purple) 16%, #fff) 55%,
    color-mix(in srgb, var(--color-purple) 26%, #fff) 100%);
}
.domi__content { max-width: 645px; display: flex; flex-direction: column; align-items: flex-start; }
.domi__title { margin-bottom: var(--spacing-md); }
.domi__title-accent { color: var(--color-primary); font-weight: 500; }
.domi__para {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: var(--color-text);
  margin-bottom: var(--spacing-xlg);
}
.btn--outline {
  background: transparent;
  border: 1px solid var(--color-navy);
  color: var(--color-navy);
}
.btn--outline:hover { box-shadow: 0 10px 24px rgba(6, 39, 86, 0.15); }
.domi__logo { flex-shrink: 0; padding-right: 56px; }
.domi__logo img { height: 64px; width: auto; }
.domi__logo-fallback {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -1.6px;
  color: var(--color-text);
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta { padding: 124px 0 160px; }
.cta__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 46px; }
.cta__title {
  max-width: 645px;
  font-size: 47.36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.26px;
  color: var(--color-text);
}
.cta__title-medium { font-weight: 500; }
.cta__para {
  max-width: 645px;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: var(--color-text);
}

/* piezas del drawer mobile: ocultas en desktop */
.header__burger, .header__scrim, .header__drawer-head, .header__drawer-sep, .header__drawer-copy { display: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { padding: 62px 0 0; overflow: hidden; }
.footer__columns { display: flex; gap: 40px; }
.footer__col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__heading { font-size: 11px; font-weight: 600; line-height: 16px; letter-spacing: -0.2px; color: var(--color-text-light); margin-bottom: 4px; }
.footer__link {
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.2px;
  color: var(--color-text);
  transition: color .2s var(--ease-out);
}
.footer__link:hover { color: var(--color-primary); }
.footer__lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.2px;
  color: var(--color-text);
  padding: 0;
}
.footer__lang img { width: 16px; height: 16px; }
.footer__social { display: flex; gap: 20px; margin-top: 40px; }

.footer__mark { position: relative; max-width: 1188px; margin: 24px auto 0; padding: 0 24px; }
.footer__wordmark { width: 100%; height: auto; }
.footer__copy {
  position: absolute;
  right: 24px;
  bottom: 12%;
  text-align: right;
  font-size: 11px;
  line-height: 17px;
  letter-spacing: -0.1px;
  color: var(--color-text-light);
}

/* ==========================================================================
   Responsive básico (el diseño de Figma es desktop 1440)
   ========================================================================== */
@media (max-width: 1100px) {
  .showcase { gap: 88px; margin-top: 64px; }
  .showcase__item { grid-template-columns: minmax(0, 1fr); row-gap: var(--spacing-md); }
  .showcase__media, .showcase__item--left .showcase__text, .showcase__item--right .showcase__text { grid-column: 1; justify-self: stretch; }
  .showcase__text { width: 100%; }
  .showcase__item--right .showcase__media { order: 2; }

  /* Hero apilado: texto, imagen, números (evita solapamiento en tablet) */
  .hero { display: flex; flex-direction: column; min-height: 0; padding-bottom: 0; }
  .hero__content { order: 1; }
  .hero__art {
    order: 2;
    position: relative;
    left: 0; top: 0;
    width: 100%; height: auto;
    margin-top: 40px;
    padding: 0 24px;
  }
  .hero__blob, .hero__glow, .hero__frame { display: none; }
  .hero__product { position: relative; left: 0; top: 0; width: 100%; animation: none; }
  /* sin parallax/zoom en apilado: los transforms hacían que la imagen pisara el texto */
  .hero__art, .hero__product img { transform: none !important; }
  .proof { order: 3; padding: 40px 0 96px; }
  .cards, .updates__cards { flex-wrap: wrap; }
  .card, .update-card { flex: 1 1 300px; }
  .section-head--split, .site-block__head, .site-block__bottom, .app__grid, .quote__grid, .faq__grid, .domi__banner { flex-direction: column; align-items: flex-start; }
  .domi__banner { padding: 48px 32px; }
  .domi__logo { padding-right: 0; }
  .quote__grid { gap: 48px; }
  .app__art { width: 100%; }
  .app__mockup { width: 100%; margin: 0 auto; }
  .site-block { padding: 40px 32px; }
  .site-block__mockup { margin-bottom: 0; margin-left: 0; height: 392px; align-self: auto; }
  .site-block__bottom .bullets { flex: 1 1 auto; min-width: 0; padding-bottom: 0; align-self: flex-start; }
  .site-block__para { padding-top: 0; }
  .quote__image { width: 100%; }
  .eco__stats { flex-wrap: wrap; gap: 40px; }
  .footer__columns { flex-wrap: wrap; gap: 32px; }
  .footer__col { flex: 1 1 200px; }
  .hero__title { font-size: 48px; }
  .h2 { font-size: 38px; }
}

/* ==========================================================================
   MOBILE (<= 767px) — mismo diseño, layout en una columna.
   Todo dentro del media query: desktop queda intacto.
   ========================================================================== */
@media (max-width: 767px) {
  .showcase { gap: 64px; margin-top: 40px; }
  .showcase__media { border-radius: var(--border-sm-md); }
  .showcase__title { font-size: 22px; margin-bottom: var(--spacing-xs); }
  .showcase__para { font-size: 17px; line-height: 26px; }
  .showcase__icon { margin-bottom: var(--spacing-sm); }

  html, body { overflow-x: clip; }
  .container { padding: 0 8%; }
  img { max-width: 100%; }

  /* ---- Header: nav horizontal -> hamburguesa (mismo estilo visual) ---- */
  .header { height: 72px; }
  .header--scrolled { height: 64px; }
  .header__inner { padding: 0 8%; }
  .header--scrolled .header__inner {
    max-width: calc(100% - 24px);
    padding: 10px 12px 10px 20px;
  }
  .header__inner { justify-content: flex-start; position: relative; }
  .header__logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .header--nav-open .header__burger { opacity: 0; pointer-events: none; }
  .header__burger {
    order: -1;
    margin-left: -8px;
    transition: opacity .25s var(--ease-out);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    padding: 8px;
    border-radius: var(--border-pill);
  }
  .header__burger-bar {
    display: block;
    height: 2px;
    width: 22px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s var(--ease-out), opacity .2s var(--ease-out), background-color .4s var(--ease-out);
  }
  .header--scrolled .header__burger-bar { background: var(--color-navy); }

  .header__scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(6, 39, 86, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .38s var(--ease-out);
  }
  .header--nav-open .header__scrim { opacity: 1; pointer-events: auto; }

  .header__nav {
    position: fixed;
    left: 0; top: 0;
    height: 100dvh;
    width: 86%;
    max-width: 380px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 8% 32px;
    border-radius: 0 var(--border-lg) var(--border-lg) 0;
    background: #fff;
    box-shadow: 0 18px 48px rgba(6, 39, 86, 0.18);
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform .38s var(--ease-out), visibility 0s linear .38s;
    overflow-y: auto;
  }
  .header--nav-open .header__nav {
    transform: none;
    visibility: visible;
    transition: transform .38s var(--ease-out), visibility 0s;
  }

  .header__drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 64px; }
  .header__drawer-logo { display: flex; align-items: center; gap: 9px; }
  .header__drawer-logo img:first-child { height: 26px; width: auto; }
  .header__drawer-logo img:last-child { height: 19px; width: auto; }
  .header__drawer-close { position: relative; width: 40px; height: 40px; margin-right: -8px; }
  .header__drawer-close span {
    position: absolute;
    left: 9px; top: 19px;
    width: 22px; height: 2px;
    background: var(--color-text);
    border-radius: 2px;
  }
  .header__drawer-close span:first-child { transform: rotate(45deg); }
  .header__drawer-close span:last-child { transform: rotate(-45deg); }

  .header__link, .header--scrolled .header__link {
    color: var(--color-text);
    font-size: 18px;
    line-height: 24px;
    padding: 14px 0;
  }
  .header__link::after { display: none; }

  .header__drawer-sep { display: block; border: none; border-top: 1px solid var(--color-border-lighter); margin: 24px 0 32px; }
  .btn--header, .btn--header + .btn--header, .header--scrolled .btn--header + .btn--header { margin-left: 0; }
  .header__nav .btn--header,
  .header--scrolled .header__nav .btn--header {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 16px;
  }
  .header__nav-trial { display: none; }
  .header__drawer-copy {
    display: block;
    margin-top: auto;
    padding-top: 48px;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.2px;
    color: var(--color-text);
  }

  /* ---- Hero: texto primero, arte debajo a ancho completo ---- */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-bottom: 0;
  }
  .hero::before { right: -40%; top: -300px; width: 700px; height: 600px; }
  .hero::after { left: 0; top: auto; bottom: 0; width: 100%; height: 320px; }
  .hero__content { order: 1; padding: 128px 8% 0; width: 100%; min-width: 0; max-width: 100%; }
  .proof { order: 3; padding: 8px 0 72px; }
  .hero__art {
    order: 2;
    position: relative;
    left: 0; top: 0;
    width: 100%; height: auto;
    margin-top: 44px;
    padding: 0 8%;
  }
  .hero__blob, .hero__glow, .hero__frame { display: none; }
  .hero__product {
    position: relative;
    left: 0; top: 0;
    width: 100%;
    border-radius: var(--border-sm-md);
  }
  .hero__badge {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 28px;
    padding: 8px 12px 8px 8px;
    border-radius: 18px;
  }
  .hero__badge-chip { flex: 0 0 auto; font-size: 12px; line-height: 18px; padding: 1px 8px; }
  .hero__badge-text { flex: 1 1 auto; min-width: 0; font-size: 13px; line-height: 18px; }
  .hero__badge-arrow { display: none; }
  .hero__title { width: auto; font-size: 36px; letter-spacing: -0.9px; }
  .hero__subtitle { width: auto; font-size: 17px; line-height: 22px; margin-bottom: 32px; }
  .hero__subtitle br { display: none; }
  .btn--lg { padding: var(--spacing-sm) var(--spacing-md); }
  .hero__eco-text { font-size: 15px; line-height: 21px; }
  .hero__eco-logos { gap: 18px; flex-wrap: wrap; }
  .hero__eco-logos img { height: 26px; }

  /* ---- Zona clara ---- */
  .main { margin-top: -48px; border-radius: 24px 24px 0 0; }
  .section { padding: 44px 0; }
  .features { padding-top: 64px; }

  /* ---- Tipografía de sección (misma jerarquía, escala reducida) ---- */
  .h2 { font-size: 30px; letter-spacing: -0.8px; }
  .eyebrow { font-size: 17px; line-height: 22px; margin-bottom: var(--spacing-xs-sm); }
  .section-head__para { font-size: 17px; line-height: 24px; max-width: none; }
  .section-head--split { gap: var(--spacing-md); margin-bottom: 40px; }
  .section-head--center { text-align: left; align-items: flex-start; }
  .section-head__para--center { max-width: none; margin-top: var(--spacing-sm); }

  /* ---- Cards ---- */
  .cards { flex-direction: column; gap: var(--spacing-sm); }
  .card { flex: 0 0 auto; min-height: 0; padding: var(--spacing-md); gap: var(--spacing-sm); border-radius: var(--border-md); }
  .card__body { display: flex; flex-direction: column; }
  .card__body > :last-child { margin-bottom: 0; }
  .card__text { font-size: 16px; line-height: 26px; }
  .card__title { font-size: 19px; }
  .card__title br { display: none; }

  /* ---- Scrollytelling: 3 pasos apilados ---- */

  /* ---- Bloque site (navy) ---- */
  .site-block { border-radius: var(--border-md); padding: 32px 8%; }
  .site-block__head { gap: var(--spacing-md); margin-bottom: var(--spacing-md); }
  .site-block__title .h2 { font-size: 30px; max-width: none; }
  .site-block__para { font-size: 17px; line-height: 24px; max-width: none; }
  .site-block__bottom { gap: var(--spacing-md); }
  .site-block__mockup { width: 100%; height: auto; margin-bottom: 0; margin-left: 0; overflow: visible; }
  .site-block__desktop { position: relative; left: 0; top: 0; margin: 0; width: 100%; border-radius: var(--border-sm-md); }
  .site-block__bottom .bullet { font-size: 17px; line-height: 26px; gap: var(--spacing-xs); }
  .bullet { font-size: 16px; line-height: 25px; }
  .bullet__check { width: 26px; height: 26px; padding: 6px; }
  .tag-ia { font-size: 14px; padding: 1px 10px; }

  /* ---- App ---- */
  .app { margin-top: 64px; border-radius: var(--border-md) var(--border-md) 0 0; padding-top: 48px; padding-bottom: 40px; }
  .app__grid { gap: var(--spacing-lg); }
  .app__content { max-width: none; }
  .app__para { font-size: 17px; line-height: 24px; max-width: none; }
  .stores { gap: var(--spacing-xs-sm); }
  .store { flex: 1 1 0; min-width: 0; border-radius: var(--border-sm-md); padding: 10px 12px; gap: 8px; }
  .store__icon { width: 22px; }
  .store__hint { font-size: 11px; }
  .store__name { font-size: 15px; }

  /* ---- Ecossistema ---- */
  .eco { padding-top: 64px; padding-bottom: 64px; }
  .eco .section-head--center { margin-bottom: 40px; }
  .eco__stats { flex-wrap: wrap; gap: 32px 20px; justify-content: center; }
  .eco__stat { flex: 1 1 40%; min-width: 0; max-width: none; text-align: center; gap: var(--spacing-xs); }
  .eco__number { font-size: 48px; letter-spacing: -0.4px; }
  .eco__label { font-size: 16px; line-height: 22px; }

  /* ---- Depoimento ---- */
  .quote__grid { gap: var(--spacing-lg); }
  .quote__content { gap: var(--spacing-md); }
  .quote__content .h2 { max-width: none; min-height: 0; }
  .quote__text { font-size: 17px; line-height: 25px; max-width: none; min-height: 0; }
  .quote__author { font-size: 17px; min-height: 0; }
  .quote__stars { width: 130px; height: 23px; }

  /* ---- FAQ ---- */
  .faq__grid { gap: var(--spacing-md); }
  .faq__head .h2 { max-width: none; }
  .accordion__question { font-size: 17px; line-height: 23px; padding: var(--spacing-sm) 0; }
  .accordion__answer p { font-size: 16px; line-height: 25px; padding-bottom: var(--spacing-sm); }

  /* ---- Banner Domi ---- */
  .domi__banner { border-radius: var(--border-md); padding: 32px 8%; gap: var(--spacing-lg); }
  .domi__content { max-width: none; }
  .domi__logo img { height: 44px; }

  /* ---- CTA ---- */
  .cta { padding: 64px 0 80px; }
  .cta__inner { align-items: flex-start; text-align: left; gap: var(--spacing-md); }
  .cta__title { font-size: 30px; letter-spacing: -0.8px; max-width: none; }
  .cta__title br { display: none; }
  .cta__para { font-size: 17px; line-height: 24px; max-width: none; }

  /* ---- Footer ---- */
  .footer { padding: 40px 0 0; }
  .footer__columns { flex-wrap: wrap; gap: 28px 24px; }
  .footer__col { flex: 1 1 42%; gap: var(--spacing-xs); }
  .footer__link { font-size: 14px; line-height: 22px; }
  .footer__social { margin-top: 32px; flex-wrap: wrap; gap: 16px; }
  .footer__mark { padding: 0 8%; margin-top: 40px; }
  .footer__copy { position: static; text-align: left; margin-top: 16px; padding-bottom: 32px; }
}


/* ==========================================================================
   Copy pass 2026-08 — hierarquia de botões do header, pilares CTA, eco bullets
   ========================================================================== */
.btn--header-ghost,
.header--scrolled .btn--header-ghost { background: transparent; }
/* COPY-5: sobre o hero azul o primário precisa contrastar — branco com texto primário */
@media (min-width: 768px) {
  .header:not(.header--scrolled) .header__nav .header__nav-trial {
    background: var(--color-onhigh);
    border-color: var(--color-onhigh);
    color: var(--color-primary);
  }
}
.header--scrolled .header__nav .header__nav-trial {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-onhigh);
}
.cards-cta { display: flex; justify-content: center; margin-top: 56px; }
.eco__bullets {
  max-width: 720px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.eco__closing { margin: 28px auto 0; }
.eco__disclaimer { margin-top: 20px; font-size: 13px; color: var(--color-text-light); text-align: center; }
.eco__cta { display: flex; justify-content: center; margin: 32px 0 72px; }
.eco__cta--last { margin-bottom: 0; }
.quote__intro { margin-top: 12px; color: var(--color-text-light); line-height: 1.5; }
@media (max-width: 767px) {
  .header__nav .btn--header-ghost,
  .header--scrolled .header__nav .btn--header-ghost {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}

/* ==========================================================================
   Modal de demo — iframe do formulário de cadastro
   ========================================================================== */
.demo-modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 24px; }
.demo-modal[hidden] { display: none; }
.demo-modal__scrim { position: absolute; inset: 0; background: rgba(2, 24, 65, .55); opacity: 0; transition: opacity .24s var(--ease-out); }
.demo-modal.is-open .demo-modal__scrim { opacity: 1; }
.demo-modal__panel {
  position: relative; z-index: 1;
  width: min(560px, 100%); height: min(680px, calc(100vh - 48px));
  padding-top: 60px; box-sizing: border-box;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(2, 24, 65, .28);
  transform: translateY(14px) scale(.985); opacity: 0;
  transition: transform .28s var(--ease-out), opacity .28s var(--ease-out);
}
.demo-modal.is-open .demo-modal__panel { transform: none; opacity: 1; }
.demo-modal__frame { display: block; width: 100%; height: 100%; border: 0; }
.demo-modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(2, 24, 65, .06); cursor: pointer;
}
.demo-modal__close:hover { background: rgba(2, 24, 65, .12); }
.demo-modal__close span { position: absolute; top: 50%; left: 50%; width: 15px; height: 1.5px; background: #021841; }
.demo-modal__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.demo-modal__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.demo-modal__fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px; padding: 32px; text-align: center; background: #fff;
}
.demo-modal__fallback[hidden] { display: none; }
.demo-modal__fallback-text { font-size: 18px; line-height: 26px; color: var(--color-concreto, #6E6E64); }
@media (max-width: 600px) {
  .demo-modal { padding: 0; }
  .demo-modal__panel { width: 100%; height: 100%; border-radius: 0; }
}
