/* ============================================================
   Unicont — Landing Page Marketplace / Lucro Real
   Paleta baseada na logo: azul royal + prata metálico
   ============================================================ */

:root {
  /* Cores da marca (extraídas da logo) */
  --blue-900: #071e3d;   /* navy profundo (seções dark) */
  --blue-800: #0a2e5c;
  --blue-700: #0f4c9c;   /* azul principal da logo */
  --blue-600: #1a5cab;
  --blue-500: #2472c8;
  --blue-100: #e3edf9;
  --blue-50:  #f2f7fc;
  --silver:   #9aa7b5;
  --silver-light: #cdd6e0;
  --ink:      #14213a;   /* texto principal */
  --ink-soft: #46556e;   /* texto secundário */
  --bg:       #ffffff;
  --bg-alt:   #f6f9fd;
  --whats:    #25d366;
  --whats-dark: #1eb658;

  /* Movimento */
  --dur: .7s;
  --ease: cubic-bezier(.22, 1, .36, 1);

  /* Tipografia */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}
.container--narrow { width: min(820px, 92%); }

/* ---------- Acessibilidade: movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-draw path { stroke-dashoffset: 0 !important; }
  .hero__glow { animation: none !important; }
}

/* ============================================================
   Botões
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease;
  will-change: transform;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: .55em 1.1em; font-size: .88rem; }
.btn--lg { padding: .95em 1.7em; font-size: 1.05rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: #fff;
  box-shadow: 0 6px 20px rgba(15, 76, 156, .35);
}
.btn--primary:hover { box-shadow: 0 10px 28px rgba(15, 76, 156, .45); }

.btn--ghost {
  color: var(--blue-700);
  border: 1.5px solid var(--blue-100);
  background: rgba(255, 255, 255, .6);
}
.btn--ghost:hover { border-color: var(--blue-500); background: #fff; }

.btn--whats {
  background: var(--whats);
  color: #fff;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .35);
}
.btn--whats:hover { background: var(--whats-dark); box-shadow: 0 12px 32px rgba(37, 211, 102, .45); }

/* ============================================================
   Barra de progresso de scroll
   ============================================================ */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 1200;
  pointer-events: none;
  color: var(--blue-600);
}
.scroll-progress-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
  transform: scaleX(var(--p, 0));
  transform-origin: left center;
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding-block: 14px;
  background: rgba(255, 255, 255, 0);
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(7, 30, 61, .08);
  padding-block: 8px;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__logo img { width: 148px; height: auto; }
.header__nav {
  display: none;
  gap: 26px;
  margin-inline: auto;
}
.header__nav a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color .15s ease;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s var(--ease);
}
.header__nav a:hover { color: var(--blue-700); }
.header__nav a:hover::after { transform: scaleX(1); }

.header__cta { display: none; margin-left: auto; }

.header__toggle {
  margin-left: auto;
  width: 42px; height: 42px;
  display: grid;
  place-content: center;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--blue-100);
  border-radius: 10px;
  cursor: pointer;
}
.header__toggle span {
  width: 20px; height: 2px;
  background: var(--blue-800);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s ease;
}
.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* menu mobile */
.header.nav-open .header__nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  padding: 22px 6%;
  box-shadow: 0 18px 32px rgba(7, 30, 61, .12);
  gap: 18px;
}

@media (min-width: 900px) {
  .header__nav { display: flex; }
  .header__cta { display: inline-flex; }
  .header__toggle { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: clip;
  background: linear-gradient(180deg, var(--blue-50) 0%, #fff 100%);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
}
.hero__glow--1 {
  width: 520px; height: 520px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(36, 114, 200, .35), transparent 70%);
  animation: glow-drift 14s ease-in-out infinite alternate;
}
.hero__glow--2 {
  width: 420px; height: 420px;
  bottom: -200px; left: -140px;
  background: radial-gradient(circle, rgba(154, 167, 181, .35), transparent 70%);
  animation: glow-drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes glow-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-50px, 40px, 0) scale(1.12); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 76, 156, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 76, 156, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
}
.hero__inner { position: relative; }
.hero__grid-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
  text-align: center;
}
.hero__media {
  max-width: 340px;
  margin-inline: auto;
}
/* moldura: o anel decorativo fica preso SÓ à foto, não à legenda */
.hero__frame { position: relative; }
.hero__media-ring {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border-radius: 24px;
  background: linear-gradient(150deg, var(--blue-100), rgba(36, 114, 200, .3));
  z-index: 0;
  pointer-events: none;
}
.hero__photo {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  box-shadow: 0 26px 54px rgba(7, 30, 61, .2);
  /* trava a proporção da caixa: corta o retrato alto num enquadramento limpo */
  aspect-ratio: 4 / 5;
}
.hero__photo img {
  border-radius: 24px;
  object-position: 50% 8%; /* mantém rosto e braços cruzados no quadro */
}
/* brilho que atravessa a foto em loop (começa depois do reveal) */
.hero__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(255, 255, 255, .5) 48%,
    rgba(125, 180, 236, .25) 55%,
    transparent 65%);
  transform: translateX(-140%);
  animation: photo-shine 5s ease-in-out 2s infinite;
}
@keyframes photo-shine {
  0%        { transform: translateX(-140%); }
  38%, 100% { transform: translateX(140%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__photo::before { animation: none; opacity: 0; }
}
.hero__media-caption {
  margin-top: 18px;
  font-size: .88rem;
  color: var(--ink-soft);
  text-align: center;
}
.hero__media-caption strong {
  font-family: var(--font-display);
  color: var(--blue-700);
}
@media (min-width: 900px) {
  .hero__grid-split {
    grid-template-columns: 1.15fr .85fr;
    gap: 64px;
    text-align: left;
  }
  .hero__grid-split .hero__actions { justify-content: flex-start; }
  .hero__media { margin-inline: auto 0; max-width: 380px; }
}
.hero__badge {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-100);
  border: 1px solid rgba(15, 76, 156, .18);
  padding: .45em 1.1em;
  border-radius: 100px;
  margin-bottom: 26px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.02em;
  color: var(--blue-900);
}
.hero__title-accent {
  background: linear-gradient(100deg, var(--blue-700), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  max-width: 640px;
  margin: 26px auto 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink-soft);
}
.hero__sub strong { color: var(--blue-700); }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.hero__sub { margin-inline: auto; }
@media (min-width: 900px) {
  .hero__grid-split .hero__sub { margin-inline: 0; }
}
.hero__trust { margin-top: 44px; }
.hero__trust-label {
  font-size: .8rem;
  color: var(--silver);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ---------- Marquee de marcas (loop infinito) ---------- */
.marquee {
  overflow: hidden;
  /* esmaece as bordas para o loop entrar/sair suave */
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__list {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  padding-right: 48px;
}
@keyframes marquee-scroll {
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
}

/* Marcas com logo + nome — coloridas e visíveis desde o início */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  cursor: default;
}
.brand img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  flex: 0 0 auto;
}
.brand--tiktok     { color: #161823; font-weight: 800; letter-spacing: -.01em; }
.brand--meli       { color: #2d3277; }  /* azul Mercado Livre */
.brand--magalu     { color: #0086ff; font-weight: 800; }
.brand--shopee     { color: #ee4d2d; }
.brand--amazon     { color: #232f3e; font-family: var(--font-body); font-weight: 800; letter-spacing: -.02em; }
.brand--americanas { color: #e60014; font-weight: 800; }

/* ---------- Line Mask Reveal (headline do hero) ---------- */
.mask-reveal { --stagger: 120ms; }
.mask-reveal .line { display: block; overflow: hidden; }
.mask-reveal .line > span {
  display: block;
  transform: translateY(110%);
}
.mask-reveal.play .line > span {
  animation: line-rise .85s var(--ease) forwards;
  animation-delay: calc(var(--line-i, 0) * var(--stagger));
}
@keyframes line-rise { to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .mask-reveal .line > span { transform: none; }
}

/* ============================================================
   Reveals genéricos (observer compartilhado)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity var(--dur) var(--ease) var(--delay, 0s),
              transform var(--dur) var(--ease) var(--delay, 0s);
}
[data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

/* o headline usa máscara própria, não o fade-up genérico */
.mask-reveal[data-reveal], .mask-reveal { opacity: 1; transform: none; transition: none; }

/* Slide-in lateral (colunas do diferencial) */
.reveal-slide { --distance: 56px; }
.reveal-slide.from-left  { transform: translate3d(calc(-1 * var(--distance)), 0, 0); }
.reveal-slide.from-right { transform: translate3d(var(--distance), 0, 0); }
.reveal-slide.is-visible { transform: translate3d(0, 0, 0); }

/* Scale-in (cards de entrega) */
.reveal-scale {
  transform: scale(.9);
  transition: opacity .6s ease-out var(--delay, 0s),
              transform .6s cubic-bezier(.34, 1.56, .64, 1) var(--delay, 0s);
}
.reveal-scale.is-visible { transform: scale(1); }

/* Stagger de filhos (dores, passos, FAQ) */
.reveal-stagger { list-style: none; }
.reveal-stagger > * {
  --step: 100ms;
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: calc(var(--i, 0) * var(--step));
}

/* Count-up container — entrada: invisível, 18px abaixo, cascata via --stat-delay */
.reveal-count {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity .6s var(--ease) var(--stat-delay, 0s),
              transform .6s var(--ease) var(--stat-delay, 0s);
}
.reveal-count.is-visible { opacity: 1; transform: none; }
.reveal-count .count { font-variant-numeric: tabular-nums; }

/* SVG line draw */
.reveal-draw path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.1s ease-in-out .3s;
}
.reveal-draw.is-visible path { stroke-dashoffset: 0; }

/* Marker sweep (marca-texto) */
.marker {
  position: relative;
  isolation: isolate;
  white-space: nowrap;
  font-weight: 700;
  color: var(--blue-900);
}
.marker::before {
  content: '';
  position: absolute;
  inset: .08em -.15em;
  background: linear-gradient(100deg, #ffd977, #ffca3a);
  border-radius: .2em;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
}
.marker.play::before {
  animation: mark .6s cubic-bezier(.4, 0, .2, 1) .15s forwards;
}
@keyframes mark { to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .marker::before { transform: scaleX(1); animation: none; }
}

/* ============================================================
   Seções — base
   ============================================================ */
.section { padding: 96px 0; }

.section__eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.section__eyebrow--light { color: var(--silver-light); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.015em;
  color: var(--blue-900);
  max-width: 720px;
}
.section__title--light { color: #fff; }

.section__lead {
  max-width: 640px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.text-accent {
  background: linear-gradient(100deg, var(--blue-700), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-silver {
  background: linear-gradient(100deg, #e8eef5, var(--silver-light), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Dor
   ============================================================ */
.pain { background: var(--bg); }
.pain__grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
.pain__card {
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  padding: 28px 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pain__card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 76, 156, .3);
  box-shadow: 0 16px 36px rgba(7, 30, 61, .1);
}
.pain__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-100);
  color: var(--blue-700);
  margin-bottom: 18px;
}
.pain__card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.pain__card p { font-size: .94rem; color: var(--ink-soft); }

.pain__escalation {
  margin-top: 44px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-left: 4px solid var(--blue-600);
  border-radius: 0 16px 16px 0;
  padding: 28px 30px;
  max-width: 820px;
}
.pain__escalation p {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  color: var(--ink);
  line-height: 1.6;
}

@media (min-width: 700px)  { .pain__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .pain__grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   Números / prova social
   ============================================================ */
.stats {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  padding: 60px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 20px;
  text-align: center;
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  /* Gradiente vivo: diagonal com as cores da marca (tons claros p/ contraste
     na faixa azul); a última cor repete a primeira para o loop emendar. */
  background: linear-gradient(120deg, #ffffff, #7db4ec, var(--silver-light), #ffffff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Depois de entrar, o gradiente segue fluindo em loop infinito */
.reveal-count.is-visible .stat__number {
  animation: stat-grad-flow 3s linear infinite;
}
@keyframes stat-grad-flow {
  to { background-position: 300% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-count.is-visible .stat__number { animation: none; }
}
.stat__label {
  display: block;
  margin-top: 6px;
  font-size: .88rem;
  color: var(--silver-light);
}
@media (min-width: 900px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   Diferencial (dark)
   ============================================================ */
.diff {
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(36, 114, 200, .18), transparent 60%),
    var(--blue-900);
  overflow: clip;
}
.diff__compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 52px;
}
.diff__col {
  border-radius: 18px;
  padding: 34px 30px;
}
.diff__col--old {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(154, 167, 181, .25);
}
.diff__col--new {
  background: linear-gradient(160deg, rgba(36, 114, 200, .25), rgba(15, 76, 156, .12));
  border: 1px solid rgba(36, 114, 200, .5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}
.diff__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .45em 1em;
  border-radius: 100px;
  margin-bottom: 20px;
}
.diff__tag--old { background: rgba(154, 167, 181, .18); color: var(--silver-light); }
.diff__tag--new { background: var(--whats); color: #06301a; }
.diff__col ul { list-style: none; display: grid; gap: 14px; }
.diff__col li {
  position: relative;
  padding-left: 30px;
  font-size: .97rem;
  line-height: 1.55;
}
.diff__col--old li { color: var(--silver); }
.diff__col--old li::before {
  content: '✕';
  position: absolute; left: 0; top: 0;
  color: #e06a6a;
  font-weight: 700;
}
.diff__col--new li { color: #eaf2fb; }
.diff__col--new li strong { color: #fff; }
.diff__col--new li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--whats);
  font-weight: 700;
}

.diff__anchor {
  text-align: center;
  margin-top: 70px;
}
.diff__anchor-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.diff__underline { white-space: nowrap; }
.diff__draw {
  width: min(300px, 60vw);
  margin: 6px auto 0;
  display: block;
  color: var(--blue-500);
}
.diff__anchor-sub {
  max-width: 560px;
  margin: 22px auto 0;
  color: var(--silver-light);
  font-size: 1rem;
}

@media (min-width: 900px) { .diff__compare { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   Entregas
   ============================================================ */
.deliver { background: var(--bg-alt); }
.deliver__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
.deliver__card {
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: 18px;
  padding: 36px 30px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.deliver__card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-500);
  box-shadow: 0 20px 44px rgba(7, 30, 61, .12);
}
.deliver__icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(15, 76, 156, .3);
}
.deliver__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 10px;
}
.deliver__card p { color: var(--ink-soft); font-size: .97rem; }
.deliver__card strong { color: var(--blue-700); }

@media (min-width: 900px) { .deliver__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   Como funciona — sticky scrollytelling
   A seção "gruda" na tela e as etapas vão acendendo em sequência
   conforme o usuário rola (estilo timeline de portfólio).
   ============================================================ */
.how { background: var(--bg); }
.how__pin { position: relative; height: 260vh; }
.how__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 90px 0 40px;
}
/* etapas começam apagadas e acendem quando chegam na vez */
.how__step {
  opacity: .25;
  transition: opacity .45s var(--ease);
}
.how__step.is-active { opacity: 1; }
.how__step .how__num { transition: box-shadow .45s var(--ease), transform .45s var(--ease); }
.how__step.is-current .how__num {
  box-shadow: 0 8px 22px rgba(15, 76, 156, .35), 0 0 0 8px rgba(36, 114, 200, .15), 0 0 32px rgba(36, 114, 200, .55);
  transform: scale(1.06);
}
.how__step:not(:last-child)::before { opacity: .35; transition: opacity .45s var(--ease); }
.how__step.is-active:not(:last-child)::before { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .how__pin { height: auto; }
  .how__sticky { position: static; min-height: 0; padding: 96px 0; }
  .how__step { opacity: 1; }
}
.how__steps {
  list-style: none;
  margin-top: 52px;
  display: grid;
  gap: 0;
  position: relative;
  max-width: 760px;
}
.how__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding-bottom: 44px;
  position: relative;
}
.how__step:last-child { padding-bottom: 0; }
/* linha conectora */
.how__step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 60px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-500), var(--blue-100));
}
.how__num {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(15, 76, 156, .35);
}
.how__step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-900);
  margin: 12px 0 8px;
}
.how__step p { color: var(--ink-soft); font-size: .98rem; max-width: 560px; }

/* ============================================================
   Especialista (Andreia) — reveal cinematográfico (motionsites: Art Landing)
   ============================================================ */
.expert { background: var(--bg); overflow: clip; }
.expert__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.expert__media {
  position: relative;
  max-width: 400px;
  margin-inline: auto;
}
.expert__ring {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 24px;
  background: linear-gradient(150deg, var(--blue-100), rgba(36, 114, 200, .25));
  z-index: 0;
  pointer-events: none;
}
.expert__quote {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, var(--blue-800), var(--blue-700));
  color: #eaf2fb;
  border-radius: 24px;
  padding: 40px 34px;
  box-shadow: 0 28px 60px rgba(7, 30, 61, .22);
}
.expert__quote-mark { color: rgba(125, 180, 236, .6); margin-bottom: 14px; }
.expert__quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}
.expert__quote footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(154, 167, 181, .3);
  display: grid;
  gap: 2px;
}
.expert__quote footer strong { font-family: var(--font-display); color: #fff; }
.expert__quote footer span { font-size: .85rem; color: var(--silver-light); }

/* Cine reveal: wipe diagonal + Ken Burns settle + facho azul que varre 1x */
.cine-reveal {
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.05s var(--ease);
}
.cine-reveal.is-visible { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.cine-reveal > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16) translate3d(3%, 2%, 0);
  transition: transform 1.6s var(--ease);
  will-change: transform;
}
.cine-reveal.is-visible > img { transform: none; }
.cine-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-130%);
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(36, 114, 200, .5) 48%,
    rgba(125, 180, 236, .32) 56%,
    transparent 74%);
}
.cine-reveal.is-visible::after { animation: cine-sweep 1.15s var(--ease) .18s both; }
@keyframes cine-sweep {
  0%   { transform: translateX(-130%); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateX(130%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cine-reveal { clip-path: none; }
  .cine-reveal > img { transform: none; }
  .cine-reveal::after { display: none; }
}

.expert__name {
  margin-top: 20px;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.expert__name strong {
  font-family: var(--font-display);
  color: var(--blue-700);
  font-size: 1.1em;
}
.expert__bio { margin-top: 12px; color: var(--ink-soft); max-width: 520px; }
.expert__points {
  margin: 24px 0 30px;
  display: grid;
  gap: 12px;
}
.expert__points li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: .97rem;
}
.expert__points li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--blue-600);
  font-weight: 700;
}
@media (min-width: 900px) {
  .expert__inner { grid-template-columns: .85fr 1.15fr; gap: 72px; }
  .expert__media { margin-inline: 0 auto; }
}

/* ============================================================
   Spotlight + tilt nos cards (motionsites: Pulse 3D / spotlight 21st.dev)
   - Luz interna MUITO suave (nunca cobre o conteúdo)
   - Borda luminosa que segue o mouse (anel via mask, só na moldura)
   - Tilt 3D só nos cards de entrega, com perspective no próprio card
     (sem preserve-3d — evita o plano rotacionado "fatiar" o conteúdo)
   Só desktop (hover + pointer fine).
   ============================================================ */
.spot-card { position: relative; }
/* luz interna: bem sutil, atrás de nada — só um respiro de cor */
.spot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(36, 114, 200, .07), transparent 65%);
}
/* borda acesa: gradiente radial mascarado só no anel da moldura */
.spot-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  padding: 1.5px;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%),
    rgba(36, 114, 200, .8), rgba(125, 180, 236, .3) 45%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.spot-card.is-spot::before,
.spot-card.is-spot::after { opacity: 1; }

.tilt3d-in { height: 100%; }
@media (hover: hover) and (pointer: fine) {
  /* perspective no próprio card: o wrapper interno gira sozinho,
     sem contexto 3D compartilhado com os pseudo-elementos */
  .deliver__card { perspective: 800px; }
  .tilt3d-in {
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform .16s var(--ease);
    will-change: transform;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tilt3d-in { transform: none !important; }
  .spot-card::before, .spot-card::after { display: none; }
}

/* ============================================================
   BRILHO VARREDURA (shine sweep) nos cards de dor e entrega
   Entrada: sobe 22px com fade em cascata; logo depois um brilho
   diagonal varre o card UMA vez. O brilho vive num span próprio
   (.card-shine) porque ::before/::after já são do spotlight.
   ============================================================ */
.shine-group:not(.shine-done) > * {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity .55s cubic-bezier(.22, 1, .36, 1),
              transform .55s cubic-bezier(.22, 1, .36, 1);
}
.shine-group.shine-play:not(.shine-done) > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: calc(var(--i, 0) * .09s);
}
/* camada do brilho: recorta no próprio span (não precisa mexer no card) */
.card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}
.card-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  /* nota: em card branco o brilho branco da spec (.14) some — usamos o
     mesmo formato com tom azul da marca pra varredura ficar visível */
  background: linear-gradient(105deg,
    transparent 40%,
    rgba(36, 114, 200, .13) 50%,
    transparent 60%);
  transform: translateX(-130%);
}
.shine-group.shine-play .card-shine::after {
  /* varre em ~1s e descansa até completar o ciclo de 3.4s — em loop */
  animation: card-shine-sweep 3.4s ease-out infinite;
  animation-delay: calc(var(--i, 0) * .09s + .35s);
}
@keyframes card-shine-sweep {
  0%        { transform: translateX(-130%); }
  30%, 100% { transform: translateX(130%); }
}
@media (prefers-reduced-motion: reduce) {
  .shine-group > * { opacity: 1 !important; transform: none !important; transition: none; }
  .card-shine { display: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-alt); }
.faq__list { margin-top: 44px; display: grid; gap: 14px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: 14px;
  overflow: clip;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item[open] {
  border-color: rgba(15, 76, 156, .35);
  box-shadow: 0 10px 30px rgba(7, 30, 61, .08);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue-900);
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chevron {
  flex: 0 0 auto;
  width: 12px; height: 12px;
  border-right: 2px solid var(--blue-600);
  border-bottom: 2px solid var(--blue-600);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
  margin-top: -4px;
}
.faq__item[open] .faq__chevron { transform: rotate(225deg); margin-top: 4px; }
.faq__body { padding: 0 24px; }
.faq__body p { color: var(--ink-soft); font-size: .96rem; padding-bottom: 22px; }
.faq__body strong { color: var(--blue-700); }

/* animação de abertura via grid-rows (feita com wrapper JS-free) */
.faq__item .faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq__item .faq__body > p { overflow: hidden; min-height: 0; }
.faq__item[open] .faq__body { grid-template-rows: 1fr; }

/* ============================================================
   CTA final
   ============================================================ */
.cta {
  position: relative;
  padding: 110px 0;
  background: var(--blue-900);
  overflow: clip;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 110%, rgba(36, 114, 200, .35), transparent 65%),
    radial-gradient(ellipse 40% 40% at 85% -10%, rgba(154, 167, 181, .15), transparent 60%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) {
  .cta__inner { grid-template-columns: 1.05fr .95fr; gap: 64px; }
}
.cta__bullets {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.cta__bullets li {
  position: relative;
  padding-left: 30px;
  color: var(--silver-light);
  font-size: .97rem;
}
.cta__bullets li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--whats);
  font-weight: 700;
}

/* ---------- Formulário de diagnóstico ---------- */
.lead-form {
  background: #fff;
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
  display: grid;
  gap: 16px;
}
.lead-form__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 4px;
}
.lead-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 560px) {
  .lead-form__row { grid-template-columns: 1fr 1fr; }
}
.lead-form__field { display: grid; gap: 6px; }
.lead-form__field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.lead-form__field input,
.lead-form__field select {
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: 10px;
  padding: .7em .9em;
  width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.lead-form__field input::placeholder { color: var(--silver); }
.lead-form__field input:focus,
.lead-form__field select:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(36, 114, 200, .15);
}
.lead-form__field input.is-invalid,
.lead-form__field select.is-invalid { border-color: #e06a6a; }
.lead-form__submit { justify-content: center; margin-top: 6px; }
.lead-form__note {
  font-size: .8rem;
  color: var(--silver);
  text-align: center;
}
.lead-form__error {
  font-size: .85rem;
  font-weight: 600;
  color: #c94f4f;
  text-align: center;
}

.cta__inner .cta__copy { text-align: left; }
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
}
.cta__title em {
  font-style: normal;
  background: linear-gradient(100deg, #7db4ec, #cdd6e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta__sub {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--silver-light);
  font-size: 1.05rem;
}
.cta__sub strong { color: #fff; }
.cta__note {
  margin-top: 16px;
  font-size: .85rem;
  color: var(--silver);
}
.br-desk { display: none; }
@media (min-width: 700px) { .br-desk { display: block; } }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #05152b;
  color: var(--silver-light);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand img {
  width: 150px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
}
.footer__brand p {
  margin-top: 16px;
  font-size: .92rem;
  max-width: 300px;
  color: var(--silver);
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  text-decoration: none;
  font-size: .92rem;
  color: var(--silver);
  margin-bottom: 10px;
  transition: color .15s ease;
}
.footer__col a:hover { color: #fff; }
.footer__cnpj { font-size: .82rem; color: var(--silver); margin-top: 14px; }
.footer__unit {
  font-size: .85rem;
  color: var(--silver);
  line-height: 1.55;
  margin-bottom: 14px;
}
.footer__unit strong { color: var(--silver-light); }
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(154, 167, 181, .35);
  color: var(--silver-light);
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}
.footer__social a:hover {
  color: #fff;
  border-color: var(--blue-500);
  transform: translateY(-3px);
}
.footer__bottom {
  border-top: 1px solid rgba(154, 167, 181, .15);
  padding: 20px 0;
  font-size: .82rem;
  color: var(--silver);
}
@media (min-width: 800px) {
  .footer__inner { grid-template-columns: 1.2fr .8fr 1.1fr 1.2fr; }
}

/* ============================================================
   ABERTURA DO SITE (roda uma vez, ao carregar)
   Tela de marca em navy cobre tudo; a logo pulsa e uma ÍRIS
   abre no centro — como lente de câmera — revelando o site.
   Linha do tempo: logo entra (.1–.7s) → íris abre (.85–1.95s)
   → conteúdo do hero sobe em sequência (1.45s em diante).
   ============================================================ */
@property --iris-r {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(36, 114, 200, .25), transparent 65%),
    var(--blue-900);
  --iris-r: 0%;
  /* buraco transparente que cresce no centro = a íris abrindo */
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent var(--iris-r), #000 calc(var(--iris-r) + .5%));
  mask-image: radial-gradient(circle at 50% 50%, transparent var(--iris-r), #000 calc(var(--iris-r) + .5%));
  animation:
    intro-iris 1.4s cubic-bezier(.76, 0, .24, 1) 2.3s both,
    intro-fade .4s linear 3.3s both; /* fallback p/ navegador sem @property */
}
@keyframes intro-iris { to { --iris-r: 150%; } }
@keyframes intro-fade { to { opacity: 0; } }

/* conteúdo central: logo + tagline + barra; recolhe antes da íris abrir */
.site-intro__inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 22px;
  animation: intro-out .35s cubic-bezier(.76, 0, .24, 1) 2.15s both;
}
@keyframes intro-out {
  to { opacity: 0; transform: scale(.92); }
}
/* pulso de luz que expande atrás da logo */
.site-intro__pulse {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 240px;
  height: 240px;
  margin-left: -120px;
  margin-top: -86px;
  border-radius: 50%;
  border: 2px solid rgba(125, 180, 236, .5);
  opacity: 0;
  animation: intro-pulse 1.5s ease-out .7s 2;
}
@keyframes intro-pulse {
  0%   { opacity: .8; transform: scale(.35); }
  100% { opacity: 0;  transform: scale(1.25); }
}
.site-intro img {
  position: relative;
  width: min(220px, 55vw);
  height: auto;
  background: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  animation: intro-logo-in .7s cubic-bezier(.22, 1, .36, 1) .15s both;
}
@keyframes intro-logo-in {
  from { opacity: 0; transform: scale(.82); }
  to   { opacity: 1; transform: scale(1); }
}
.site-intro__tag {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-light);
  text-align: center;
  padding-inline: 20px;
  opacity: 0;
  animation: intro-rise-sm .7s cubic-bezier(.22, 1, .36, 1) .55s both;
}
@keyframes intro-rise-sm {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
/* barra de carregamento que preenche até a íris abrir */
.site-intro__bar {
  width: 180px;
  height: 3px;
  border-radius: 99px;
  background: rgba(154, 167, 181, .25);
  overflow: hidden;
  opacity: 0;
  animation: intro-rise-sm .6s cubic-bezier(.22, 1, .36, 1) .75s both;
}
.site-intro__bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-500), #7db4ec);
  transform: scaleX(0);
  transform-origin: left center;
  animation: intro-load 1.45s cubic-bezier(.45, 0, .2, 1) .8s both;
}
@keyframes intro-load { to { transform: scaleX(1); } }
/* contador 0→100% em CSS puro, perfeitamente sincronizado com a barra */
@property --pct {
  syntax: '<integer>';
  inherits: false;
  initial-value: 0;
}
.site-intro__pct {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
  color: var(--silver-light);
  margin-top: -12px;
  counter-reset: pct var(--pct);
  opacity: 0;
  animation:
    intro-rise-sm .6s cubic-bezier(.22, 1, .36, 1) .75s both,
    intro-count 1.45s cubic-bezier(.45, 0, .2, 1) .8s both;
}
.site-intro__pct::after { content: counter(pct) '%'; }
@keyframes intro-count { to { --pct: 100; } }
body.intro-lock { overflow: hidden; }

/* --- Conteúdo do hero sobe em sequência, sincronizado com a íris --- */
@keyframes iris-rise {
  from { opacity: 0; transform: translate3d(0, 26px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
/* o título sobe inteiro com fade — as linhas da máscara ficam neutras */
.hero__title .line > span { transform: none; animation: none !important; }
.hero__title {
  opacity: 0;
  animation: iris-rise .8s cubic-bezier(.22, 1, .36, 1) 2.9s both;
}
/* sequência de entrada: eyebrow → subtítulo → CTA → legenda → marcas */
.hero__badge[data-reveal],
.hero__sub[data-reveal],
.hero__actions[data-reveal],
.hero__media-caption[data-reveal],
.hero__trust[data-reveal] {
  transition: none;
  opacity: 0;
  animation: iris-rise .8s cubic-bezier(.22, 1, .36, 1) both;
}
.hero__badge[data-reveal]         { animation-delay: 3.05s; }
.hero__sub[data-reveal]           { animation-delay: 3.2s; }
.hero__actions[data-reveal]       { animation-delay: 3.35s; }
.hero__media-caption[data-reveal] { animation-delay: 3.5s; }
.hero__trust[data-reveal]         { animation-delay: 3.6s; }
/* a foto revela JUNTO com a íris abrindo (não espera terminar) */
.hero .cine-reveal,
.hero .cine-reveal > img { transition-delay: 2.55s; }
.hero .cine-reveal.is-visible::after { animation-delay: 2.85s; }

/* Sem vinheta (visitas repetidas na sessão): hero entra rápido,
   e a foto da Andreia aparece quase de imediato */
html.no-intro .hero__title                          { animation-delay: .15s; }
html.no-intro .hero__badge[data-reveal]             { animation-delay: .25s; }
html.no-intro .hero__sub[data-reveal]               { animation-delay: .35s; }
html.no-intro .hero__actions[data-reveal]           { animation-delay: .45s; }
html.no-intro .hero__media-caption[data-reveal]     { animation-delay: .55s; }
html.no-intro .hero__trust[data-reveal]             { animation-delay: .65s; }
html.no-intro .hero .cine-reveal,
html.no-intro .hero .cine-reveal > img              { transition-delay: .1s; }
html.no-intro .hero .cine-reveal.is-visible::after  { animation-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  .site-intro { display: none; }
  .hero__title,
  .hero__badge[data-reveal],
  .hero__sub[data-reveal],
  .hero__actions[data-reveal],
  .hero__media-caption[data-reveal],
  .hero__trust[data-reveal] {
    opacity: 1;
    animation: none;
    transform: none;
  }
  .hero .cine-reveal,
  .hero .cine-reveal > img { transition-delay: 0s; }
}

/* ============================================================
   WhatsApp flutuante
   ============================================================ */
.whats-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--whats);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: whats-pulse 2.6s ease-in-out infinite;
}
.whats-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(37, 211, 102, .55);
  animation-play-state: paused;
}
@keyframes whats-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .4); }
  55%      { box-shadow: 0 10px 30px rgba(37, 211, 102, .45), 0 0 0 16px rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .whats-float { animation: none; }
}
