/* =========================================================
   Paulo Jorge — Landing Page TRG
   Mobile-first. Híbrido claro/navy. Fraunces + Hanken Grotesk.
   ========================================================= */

:root {
  /* Marca */
  --navy:        #0e1a3a;
  --navy-deep:   #0a1330;
  --navy-soft:   #16244d;
  --wine:        #b23344;
  --wine-deep:   #9a2838;
  --amber:       #d9a441;

  /* Base clara (papel quente) */
  --paper:       #f6f1e9;
  --paper-2:     #efe7da;
  --white:       #ffffff;

  /* Texto */
  --ink:         #182037;
  --ink-soft:    #4a5168;
  --on-navy:     #eef1f8;
  --on-navy-dim: #aeb8d4;

  /* Sistema */
  --line:        #e2d9ca;
  --radius:      18px;
  --radius-sm:   12px;
  --shadow:      0 18px 50px -24px rgba(14, 26, 58, .35);
  --shadow-card: 0 12px 30px -18px rgba(14, 26, 58, .28);
  --maxw:        1180px;
  --ease:        cubic-bezier(.22, .61, .36, 1);

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.section { padding: 72px 0; }
.section--navy { background: var(--navy); color: var(--on-navy); }
.section--soft { background: var(--paper-2); }

/* ---------- Tipografia base ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -.01em; }

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 14px;
}
.kicker--light { color: var(--amber); }

.section__head { max-width: 620px; margin: 0 auto 44px; text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__title { font-size: clamp(1.85rem, 6vw, 2.7rem); }
.section__intro { margin-top: 16px; color: var(--ink-soft); font-size: 1.05rem; }
.section--navy .section__intro { color: var(--on-navy-dim); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 100px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--primary { position: relative; overflow: hidden; background: var(--wine); color: #fff; box-shadow: 0 12px 26px -12px rgba(178, 51, 68, .65); }
.btn--primary::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 70%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease); pointer-events: none;
}
.btn--primary:hover { background: var(--wine-deep); transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(178, 51, 68, .7); }
.btn--primary:hover::before { left: 130%; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.4); color: var(--on-navy); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }
.btn--ghost-dark { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--ghost-dark:hover { background: var(--navy); color: #fff; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(246, 241, 233, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.header__inner { display: flex; align-items: center; gap: 18px; }

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; color: var(--on-navy); }
.scrolled .brand { color: var(--ink); }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; line-height: 1; display: flex; flex-direction: column; gap: 3px; }
.brand__sub { font-family: var(--font-body); font-weight: 500; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }

.nav { display: none; gap: 26px; }
.nav a { font-size: .95rem; font-weight: 500; color: var(--on-navy); opacity: .85; transition: opacity .2s; }
.scrolled .nav a { color: var(--ink); }
.nav a:hover { opacity: 1; }

.header__cta { display: none; }

.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: currentColor; color: var(--on-navy); border-radius: 2px; transition: .3s var(--ease); }
.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* menu mobile aberto */
.nav.open {
  display: flex; flex-direction: column; gap: 0;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); padding: 8px 22px 18px;
  box-shadow: var(--shadow); border-top: 1px solid var(--line);
}
.nav.open a { color: var(--ink); padding: 13px 0; border-bottom: 1px solid var(--line); opacity: 1; }
.nav.open a:last-child { border-bottom: 0; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; background: var(--navy); color: var(--on-navy); padding: 104px 0 56px; overflow: hidden; }
.hero__inner { position: relative; display: grid; gap: 36px; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 600; letter-spacing: .06em; color: var(--on-navy-dim); text-transform: uppercase; margin-bottom: 20px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(217,164,65,.22); }

.hero__title { font-size: clamp(2.4rem, 10vw, 4.1rem); font-weight: 600; }
.hero__title em { color: var(--amber); font-style: italic; }
.hero__sub { margin-top: 22px; font-size: 1.12rem; color: var(--on-navy-dim); max-width: 30ch; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__micro { margin-top: 16px; font-size: .9rem; color: var(--on-navy-dim); max-width: 38ch; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.hero__trust li {
  flex: 1; min-width: 90px;
  padding: 14px 18px;
  font-size: .82rem; color: var(--on-navy-dim); line-height: 1.3;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero__trust li:last-child { border-right: none; }
.hero__trust strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: #fff; font-weight: 700; line-height: 1; margin-bottom: 4px; }

/* foto — painel que envolve a figura + cards flutuantes */
.hero__media { position: relative; justify-self: center; max-width: 380px; width: 100%; margin-top: 10px; }
.hero__panel {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(140% 90% at 50% 0%, var(--navy-soft) 0%, var(--navy-deep) 80%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 30px 60px -28px rgba(0,0,0,.55);
}
.hero__panel-glow {
  position: absolute; inset: auto 0 0 0; height: 45%; pointer-events: none;
  background: radial-gradient(80% 100% at 50% 100%, rgba(178,51,68,.35), transparent 72%);
  animation: glowPulse 5.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: .7; }
  50%      { opacity: 1; }
}
.hero__photo-wrap {
  position: absolute; inset: 0; z-index: 1;
  border-radius: 28px; overflow: hidden;
}
.hero__photo {
  position: absolute; left: 50%; bottom: -18%; transform: translateX(-50%);
  width: 113%; max-width: none; height: auto;
  animation: heroPhotoIn 1.3s var(--ease) both;
}
@keyframes heroPhotoIn {
  from { opacity: 0; transform: translateX(-50%) scale(1.06); }
  to   { opacity: 1; transform: translateX(-50%) scale(1); }
}
.hero__chip {
  position: absolute; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  width: 126px;
  background: var(--white); color: var(--navy);
  border-radius: 14px; padding: 11px 12px; box-shadow: 0 12px 36px -8px rgba(14,26,58,.28), 0 2px 8px rgba(0,0,0,.08);
}
.hero__chip-ic {
  display: grid; place-items: center; flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 10px;
}
.hero__chip-ic svg { width: 17px; height: 17px; }
.hero__chip-ic--navy { background: var(--navy); color: #fff; }
.hero__chip-ic--wine { background: var(--wine); color: #fff; }
.hero__chip-tx strong { display: block; font-size: .82rem; font-weight: 700; line-height: 1.2; color: var(--navy); }
.hero__chip-tx small { display: block; font-size: .68rem; font-weight: 500; line-height: 1.3; color: var(--ink-soft); margin-top: 2px; }
.hero__chip--top { top: 38%; left: -16px; animation: chipFloat 6s ease-in-out infinite; }
.hero__chip--bottom { bottom: 8%; right: -16px; animation: chipFloat 7s ease-in-out -3.5s infinite; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* =========================================================
   INTRO
   ========================================================= */
.intro { padding: 64px 0; background: var(--paper); }
.intro__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.intro__lead { font-family: var(--font-display); font-size: clamp(1.4rem, 4.5vw, 2rem); line-height: 1.3; color: var(--ink); }
.intro__lead em { color: var(--ink-soft); }
.intro__answer { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 5vw, 2.2rem); color: var(--wine); margin: 22px 0; }
.intro__body { color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; margin-inline: auto; }

/* =========================================================
   HELP (cards)
   ========================================================= */
.help__grid { display: grid; gap: 18px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -22px rgba(14,26,58,.4); border-color: rgba(178,51,68,.35); }
.card__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--paper-2); color: var(--wine); margin-bottom: 18px; transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.card:hover .card__icon { background: var(--wine); color: #fff; transform: scale(1.06); }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.25rem; margin-bottom: 9px; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* =========================================================
   STEPS
   ========================================================= */
.steps__list { display: grid; gap: 16px; max-width: 720px; margin: 0 auto; }
.step { display: flex; gap: 20px; align-items: flex-start; background: var(--navy-soft); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 24px; }
.step__num { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--amber); line-height: 1; flex: none; }
.step h3 { font-size: 1.2rem; color: #fff; margin-bottom: 6px; }
.step p { color: var(--on-navy-dim); font-size: .98rem; }
.steps__cta { display: flex; margin: 36px auto 0; width: fit-content; }

/* =========================================================
   WHY (bento)
   ========================================================= */
.why__grid { display: grid; gap: 16px; }
.feat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-card); }
.feat h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--navy); }
.feat p { color: var(--ink-soft); font-size: .98rem; }
.feat--accent { background: var(--navy); color: var(--on-navy); border-color: var(--navy); }
.feat--accent h3 { color: var(--amber); }
.feat--accent p { color: var(--on-navy-dim); }

/* =========================================================
   PROOF
   ========================================================= */
/* Baralho de depoimentos (deck em leque, navegado por setas) */
.proof__deck { display: flex; flex-direction: column; align-items: center; }
.proof__stage {
  position: relative;
  width: min(74vw, 330px);
  aspect-ratio: 1 / 1;
  margin: 8px auto 0;
}
.proof__card {
  position: absolute; inset: 0;
  background: var(--navy-soft); border-radius: var(--radius); padding: 10px;
  border: 1px solid rgba(255,255,255,.08); overflow: hidden;
  box-shadow: 0 22px 45px -22px rgba(0,0,0,.75);
  transform-origin: center center;
  transition: transform .55s cubic-bezier(.3, 1.15, .4, 1), opacity .45s var(--ease), box-shadow .55s var(--ease);
  will-change: transform;
}
.proof__card img { border-radius: 10px; width: 100%; height: 100%; object-fit: cover; display: block; }

/* pos0 frente · pos1 espia à direita · pos3 espia à esquerda · pos2 fundo escondido */
.proof__card[data-pos="0"] { z-index: 4; opacity: 1;   transform: translateX(0)     scale(1)   rotate(0);    box-shadow: 0 30px 55px -20px rgba(0,0,0,.8); }
.proof__card[data-pos="1"] { z-index: 3; opacity: .8;  transform: translateX(26%)   scale(.88) rotate(6deg);  box-shadow: 0 18px 38px -22px rgba(0,0,0,.7); }
.proof__card[data-pos="3"] { z-index: 2; opacity: .8;  transform: translateX(-26%)  scale(.88) rotate(-6deg); box-shadow: 0 18px 38px -22px rgba(0,0,0,.7); }
.proof__card[data-pos="2"] { z-index: 1; opacity: .45; transform: translateY(-7%)   scale(.8)  rotate(0);    box-shadow: 0 12px 30px -24px rgba(0,0,0,.6); }

/* Controles: seta · dots · seta */
.proof__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.proof__nav {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--wine); color: #fff; border: none; cursor: pointer;
  box-shadow: 0 8px 20px -8px rgba(178,51,68,.8);
  transition: background .2s, transform .2s;
}
.proof__nav:hover { background: var(--wine-deep); transform: scale(1.07); }
.proof__nav:active { transform: scale(.96); }
.proof__nav svg { width: 22px; height: 22px; }

/* Dots */
.proof__dots { display: flex; justify-content: center; gap: 9px; }
.proof__dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0; border: none; cursor: pointer;
  background: rgba(255,255,255,.28); transition: background .2s, transform .2s;
}
.proof__dot.is-active { background: var(--wine); transform: scale(1.25); }

/* Transição do baralho roda sempre (decisão do projeto, ver topo do bloco REVEAL). */
.proof__feature {
  max-width: 760px; margin: 36px auto 0; text-align: center;
  background: linear-gradient(150deg, var(--navy-soft), rgba(178,51,68,.28));
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 30px 26px;
}
.proof__feature p { font-family: var(--font-display); font-size: clamp(1.15rem, 4vw, 1.5rem); line-height: 1.35; color: #fff; }
.proof__feature cite { display: block; margin-top: 16px; font-style: normal; font-size: .82rem; color: var(--on-navy-dim); letter-spacing: .02em; }

/* =========================================================
   ABOUT
   ========================================================= */
.about__inner { display: grid; gap: 34px; align-items: center; }
.about__media { position: relative; max-width: 380px; justify-self: center; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about__seal {
  position: absolute; bottom: -14px; right: -8px;
  background: var(--wine); color: #fff; font-size: .76rem; font-weight: 600; line-height: 1.3;
  padding: 12px 16px; border-radius: 12px; max-width: 180px; box-shadow: var(--shadow);
}
.about__copy .section__title { font-size: clamp(2rem, 7vw, 2.8rem); margin-bottom: 18px; }
.about__copy p { color: var(--ink-soft); margin-bottom: 16px; }
.about__mission { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--navy); border-left: 3px solid var(--wine); padding-left: 18px; }
.about__copy .btn { margin-top: 10px; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing__grid { display: grid; gap: 18px; }
.plan { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.plan--featured { border: 2px solid var(--wine); box-shadow: 0 24px 50px -24px rgba(178,51,68,.45); }
.plan__tag { position: absolute; top: -13px; left: 26px; background: var(--wine); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 13px; border-radius: 100px; }
.plan__name { font-size: 1.3rem; color: var(--navy); }
.plan__price { font-family: var(--font-display); font-weight: 700; font-size: 3rem; color: var(--navy); line-height: 1; margin-top: 12px; }
.plan__price span { font-size: 1.2rem; vertical-align: super; margin-right: 2px; color: var(--ink-soft); }
.plan__unit { color: var(--ink-soft); font-size: .9rem; margin-top: 6px; }
.plan__list { margin: 22px 0 26px; display: grid; gap: 11px; }
.plan__list li { position: relative; padding-left: 26px; font-size: .96rem; color: var(--ink-soft); }
.plan__list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 15px; height: 9px; border-left: 2px solid var(--wine); border-bottom: 2px solid var(--wine); transform: rotate(-45deg); }
.plan .btn { margin-top: auto; width: 100%; }
.pricing__note { text-align: center; margin-top: 28px; color: var(--ink-soft); font-size: .92rem; }

/* =========================================================
   FAQ
   ========================================================= */
.faq__inner { display: grid; gap: 30px; }
.faq__list { display: grid; gap: 12px; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 20px; box-shadow: var(--shadow-card); }
.faq__item summary { cursor: pointer; list-style: none; padding: 16px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--font-body); font-weight: 400; font-size: 1.6rem; color: var(--wine); transition: transform .3s var(--ease); line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 18px; color: var(--ink-soft); }

/* =========================================================
   LOCALIZAÇÃO / MAPA
   ========================================================= */
.location__inner { display: grid; gap: 30px; }
.location__lead { margin-top: 16px; color: var(--ink-soft); font-size: 1.05rem; max-width: 46ch; }

.location__address {
  display: flex; align-items: flex-start; gap: 14px;
  font-style: normal; line-height: 1.6; font-size: 1.02rem;
  margin-top: 26px; color: var(--ink);
}
.location__ic {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wine); color: #fff;
}
.location__ic svg { width: 20px; height: 20px; }

.location__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.location__map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  width: 100%;
  background: var(--paper-2);
}
.location__map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}

@media (min-width: 860px) {
  .location__inner { grid-template-columns: 1fr 1.1fr; align-items: center; gap: 56px; }
  .location__map { aspect-ratio: 5 / 4; }
}

/* Telas muito estreitas: mapa mais alto pra não ficar achatado */
@media (max-width: 480px) {
  .location__map { aspect-ratio: 3 / 4; }
  .location__actions .btn { flex: 1 1 100%; }
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final__inner { text-align: center; max-width: 700px; margin-inline: auto; }
.final__title { font-size: clamp(1.9rem, 6.5vw, 3rem); }
.final__sub { margin: 20px auto 30px; color: var(--on-navy-dim); font-size: 1.08rem; max-width: 52ch; }
.final__micro { margin-top: 18px; font-size: .88rem; color: var(--on-navy-dim); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--navy-deep); color: var(--on-navy-dim); padding: 56px 0 30px; }
.footer__inner { display: grid; gap: 32px; }
.brand__name--footer { color: #fff; font-size: 1.4rem; }
.footer__mission { margin-top: 14px; font-size: .92rem; max-width: 38ch; }
.footer__col h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.footer__col ul { display: grid; gap: 0; }
.footer__col li { line-height: 1.7; }
.footer__col a { font-size: .94rem; }
.footer__col a:hover { color: #fff; }
.footer address { font-style: normal; line-height: 1.7; font-size: .94rem; }
.footer address span { color: var(--amber); }
.footer__bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: grid; gap: 8px; font-size: .8rem; }
.footer__disclaimer { opacity: .7; }

/* =========================================================
   STICKY CTA (mobile)
   ========================================================= */
.sticky-cta {
  position: fixed; bottom: 14px; left: 14px; right: 14px; z-index: 90;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--wine); color: #fff; font-weight: 600; font-size: 1rem;
  padding: 15px; border-radius: 100px;
  box-shadow: 0 16px 30px -10px rgba(178,51,68,.6);
  transform: translateY(120%); transition: transform .4s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta svg { width: 22px; height: 22px; }

/* =========================================================
   REVEAL (scroll animation)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Decisão do projeto (Ryan): as animações rodam sempre, independente da
   preferência de movimento do sistema. As animações são suaves e lentas,
   sem flash nem movimento brusco — risco de desconforto baixo. */

/* =========================================================
   BREAKPOINTS
   ========================================================= */
@media (min-width: 640px) {
  .help__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  body { font-size: 18px; }
  .section { padding: 100px 0; }
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .sticky-cta { display: none; }

  .hero { padding: 150px 0 90px; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 50px; }
  .hero__media { justify-self: end; max-width: 480px; margin-top: 0; }

  .help__grid { grid-template-columns: repeat(4, 1fr); }
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }

  .why__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
  .feat--wide { grid-column: span 2; }

  .proof__stage { width: 460px; }

  .about__inner { grid-template-columns: .9fr 1.1fr; gap: 56px; }
  .about__media { justify-self: start; }

  .faq__inner { grid-template-columns: .9fr 1.1fr; align-items: start; gap: 50px; }
  .section__head--left { position: sticky; top: 110px; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 4.3rem; }
}

/* ---------- Telas estreitas (<= 400px) ---------- */
@media (max-width: 400px) {
  /* botões longos quebram linha em vez de estourar a tela */
  .btn { white-space: normal; text-align: center; max-width: 100%; }
  .btn--lg { padding: 15px 20px; }

  /* trust stats do hero: impede o número de quebrar e desalinhar */
  .hero__trust li { padding: 12px 8px; min-width: 0; }
  .hero__trust strong { font-size: 1.25rem; white-space: nowrap; }
}

/* baralho de depoimentos: puxa as cartas laterais pra dentro da tela em celulares */
@media (max-width: 600px) {
  .proof__stage { width: min(70vw, 320px); }
  .proof__card[data-pos="1"] { transform: translateX(20%)  scale(.86) rotate(5deg); }
  .proof__card[data-pos="3"] { transform: translateX(-20%) scale(.86) rotate(-5deg); }
}

/* =========================================================
   BANNER DE CONSENTIMENTO (LGPD / ANPD)
   ========================================================= */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: flex; justify-content: center;
  padding: 16px;
  transform: translateY(140%);
  transition: transform .55s var(--ease);
  pointer-events: none;
}
.cookie.show { transform: translateY(0); pointer-events: auto; }
.cookie__inner {
  width: 100%; max-width: 760px;
  background: var(--navy-deep);
  color: var(--on-navy);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .6);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.cookie__text { font-size: .95rem; line-height: 1.55; color: var(--on-navy-dim); }
.cookie__text strong { color: var(--on-navy); font-weight: 600; }
.cookie__text a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie__actions .btn { flex: 1 1 auto; min-width: 150px; }
.cookie .btn--ghost { border-color: rgba(255, 255, 255, .35); }

@media (min-width: 620px) {
  .cookie__inner { flex-direction: row; align-items: center; gap: 22px; }
  .cookie__actions { flex: 0 0 auto; flex-wrap: nowrap; }
  .cookie__actions .btn { min-width: 130px; }
}

