/* ============================================================
   wflux — site institucional
   Aesthetic: "clareza financeira" — petróleo escuro + verde-menta (fluxo
   de dinheiro) + âmbar. Display serif (Fraunces) + sans (Hanken Grotesk).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* cor — identidade nova (manual wflux) */
  --ink:        #02231b;   /* verde escuro / petróleo */
  --ink-2:      #0a3a2e;
  --forest:     #0e4d3a;
  --mint:       #33e0a9;   /* acento principal (positivo / o "w") */
  --mint-light: #b3e5d8;   /* menta clara (tints) */
  --mint-deep:  #12b886;
  --gold:       #f8c54a;   /* acento quente (o ponto) */
  --coral:      #ff7a59;   /* alertas / saídas */
  --paper:      #f4f0e8;   /* fundo claro quente (Fundo Claro) */
  --card:       #ffffff;
  --sand:       #e5e1d9;   /* bege / areia */
  --line:       rgba(6, 35, 28, .12);
  --line-strong:rgba(6, 35, 28, .22);
  --text:       #0c2a22;
  --muted:      #4a5c55;
  --on-dark:    #eaf3ee;
  --on-dark-mut:rgba(234, 243, 238, .66);
  --on-dark-line: rgba(234, 243, 238, .14);

  /* tipografia */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* medidas */
  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(6,35,28,.06), 0 4px 12px rgba(6,35,28,.05);
  --shadow:    0 12px 32px rgba(6,35,28,.10), 0 2px 8px rgba(6,35,28,.06);
  --shadow-lg: 0 30px 70px rgba(6,35,28,.18);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  font-size: 1.05rem;
  font-feature-settings: "ss01" on;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--mint-deep); outline-offset: 3px; border-radius: 6px; }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.06; letter-spacing: -.015em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 560; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.eyebrow {
  font-family: var(--body); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--mint-deep);
  display: inline-flex; align-items: center; gap: .5rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--mint-deep); border-radius: 2px; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 60ch; }
.serif-accent { font-family: var(--display); font-style: italic; font-weight: 500; color: var(--mint-deep); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.stack > * + * { margin-top: 1.1rem; }
.grid { display: grid; gap: 28px; }
@media (min-width: 720px)  { .g2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px)  { .g3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px)  { .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .g4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: .98rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--ink); color: var(--on-dark); box-shadow: var(--shadow-sm); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--mint { background: var(--mint); color: var(--ink); box-shadow: 0 8px 24px rgba(47,227,166,.35); }
.btn--mint:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(47,227,166,.45); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(6,35,28,.04); }
.btn--on-dark { background: rgba(234,243,238,.08); color: var(--on-dark); border: 1.5px solid var(--on-dark-line); }
.btn--on-dark:hover { background: rgba(234,243,238,.16); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.center .btn-row { justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: saturate(140%) blur(12px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 600; font-size: 1.5rem; letter-spacing: -.02em; color: var(--ink); }
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand b { font-weight: 600; }
/* Logotipo oficial (wordmark) — header (fundo claro) e footer (fundo escuro). */
.brand-logo { height: 30px; width: auto; display: block; }
.brand-logo--footer { height: 36px; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 600; font-size: .98rem; color: var(--text); position: relative; padding-block: 4px; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--mint-deep); border-radius: 2px; transition: width .3s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: none; align-items: center; gap: .8rem; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 940px) {
  .nav-links, .nav-actions { display: flex; }
  .nav-toggle { display: none; }
}
/* menu mobile */
.mobile-menu {
  position: fixed; inset: 76px 0 auto 0; z-index: 55;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 18px 24px 28px; display: grid; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s var(--ease);
}
.nav-open .mobile-menu { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { padding: 12px 6px; font-weight: 600; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
.mobile-menu .btn-row { margin-top: 14px; }
@media (min-width: 940px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden;
  padding-block: clamp(70px, 11vw, 150px);
}
.hero::before { /* gradient mesh */
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 120%;
  background:
    radial-gradient(40% 50% at 78% 18%, rgba(47,227,166,.30), transparent 70%),
    radial-gradient(36% 44% at 14% 8%, rgba(18,184,134,.22), transparent 72%),
    radial-gradient(50% 60% at 88% 90%, rgba(244,183,64,.14), transparent 70%);
  filter: blur(8px); pointer-events: none;
}
.hero::after { /* grão */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: var(--on-dark); }
.hero h1 em { font-style: italic; color: var(--mint); }
.hero .lead { color: var(--on-dark-mut); }
.hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 40px; } }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; color: var(--on-dark-mut); font-weight: 600; font-size: .92rem; }
.hero-badges li { display: inline-flex; align-items: center; gap: .5rem; }
.hero-badges svg { width: 18px; height: 18px; color: var(--mint); }

/* imagem-screenshot (hero / sobre) */
.hero-shot { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.5); }

/* mockup de dashboard (CSS puro) */
.mock {
  background: linear-gradient(180deg, #ffffff, #f3f7f4);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.5); overflow: hidden; color: var(--text);
}
.mock-top { display: flex; align-items: center; gap: 6px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.mock-top i { width: 11px; height: 11px; border-radius: 50%; background: var(--sand); display: inline-block; }
.mock-top i:nth-child(1){ background:#ff6159; } .mock-top i:nth-child(2){ background:#ffbd2e; } .mock-top i:nth-child(3){ background:#28c840; }
.mock-top span { margin-left: auto; font-size: .78rem; color: var(--muted); font-weight: 700; letter-spacing: .04em; }
.mock-body { padding: 22px; display: grid; gap: 16px; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kpi { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; }
.kpi small { font-size: .72rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.kpi b { display: block; font-family: var(--display); font-size: 1.45rem; margin-top: 4px; }
.kpi.pos b { color: var(--mint-deep); } .kpi.neg b { color: var(--coral); }
.mock-chart { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; }
.mock-chart .bars { display: flex; align-items: flex-end; gap: 8px; height: 110px; margin-top: 10px; }
.mock-chart .bars span { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--mint), var(--mint-deep)); opacity: .85; animation: grow 1.1s var(--ease) backwards; }
.mock-chart .bars span:nth-child(even) { background: linear-gradient(180deg, #cfeee2, #a7ddca); }
@keyframes grow { from { height: 0 !important; opacity: 0; } }

/* ---------- Cards genéricos ---------- */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; height: 100%; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: color-mix(in srgb, var(--mint) 22%, var(--paper)); color: var(--forest); margin-bottom: 18px; }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .98rem; }

/* faixa escura de seção */
.band { background: var(--ink-2); color: var(--on-dark); border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 64px); position: relative; overflow: hidden; }
.band h2, .band h3 { color: var(--on-dark); }
.band p { color: var(--on-dark-mut); }
.band .eyebrow { color: var(--mint); }
.band .eyebrow::before { background: var(--mint); }

/* lista de checagem */
.checks { display: grid; gap: 12px; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; color: var(--muted); }
.checks svg { width: 22px; height: 22px; flex: none; color: var(--mint-deep); margin-top: 2px; }
.checks b { color: var(--text); }

/* ---------- Feature blocks (recursos) ---------- */
.feature-area { border-top: 1px solid var(--line); padding-top: 38px; }
.feature-head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.feature-head .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--ink); color: var(--mint); flex: none; }
.feature-head .ic svg { width: 24px; height: 24px; }
.feature-list { display: grid; gap: 22px; }
.feature-list .item { padding-left: 16px; border-left: 2px solid var(--line); }
.feature-list .item h4 { font-family: var(--display); font-size: 1.15rem; color: var(--ink); margin-bottom: .25rem; }
.feature-list .item p { color: var(--muted); font-size: .96rem; }

/* ---------- Passos ---------- */
.steps { counter-reset: s; display: grid; gap: 28px; }
.step { position: relative; padding-left: 70px; }
.step::before { counter-increment: s; content: "0" counter(s); position: absolute; left: 0; top: -6px; font-family: var(--display); font-size: 2.2rem; color: var(--mint-deep); font-weight: 600; }
.step h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.step p { color: var(--muted); }

/* ---------- Stats ---------- */
.stats { display: grid; gap: 24px; text-align: center; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat b { display: block; font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--mint); line-height: 1; }
.stat span { color: var(--on-dark-mut); font-weight: 600; margin-top: .5rem; display: block; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; gap: 24px; align-items: stretch; }
@media (min-width: 920px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); position: relative; }
.plan.featured { background: var(--ink); color: var(--on-dark); border-color: var(--ink); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.plan.featured h3, .plan.featured .price { color: var(--on-dark); }
.plan.featured .checks li { color: var(--on-dark-mut); } .plan.featured .checks b { color: var(--on-dark); }
.plan .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--mint); color: var(--ink); font-weight: 800; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.plan .pname { font-family: var(--display); font-size: 1.5rem; }
.plan .pdesc { color: var(--muted); font-size: .92rem; min-height: 2.6em; margin-top: 4px; }
.plan.featured .pdesc { color: var(--on-dark-mut); }
.price { font-family: var(--display); font-size: 2.8rem; color: var(--ink); margin: 18px 0 4px; line-height: 1; }
.price small { font-family: var(--body); font-size: .95rem; color: var(--muted); font-weight: 600; }
.plan.featured .price small { color: var(--on-dark-mut); }
.plan .checks { margin: 22px 0 26px; }
.plan .btn { width: 100%; margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 800px; margin-inline: auto; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px; transition: border-color .3s, box-shadow .3s; }
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-weight: 700; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--display); font-size: 1.6rem; color: var(--mint-deep); transition: transform .3s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); padding-bottom: 20px; max-width: 68ch; }

/* ---------- CTA final ---------- */
.cta-final { position: relative; background: var(--ink); color: var(--on-dark); border-radius: var(--radius-lg); padding: clamp(40px, 7vw, 84px); overflow: hidden; text-align: center; }
.cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 0%, rgba(47,227,166,.25), transparent 70%); }
.cta-final > * { position: relative; }
.cta-final h2 { color: var(--on-dark); }
.cta-final p { color: var(--on-dark-mut); margin-inline: auto; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: .92rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; padding: .85rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line-strong);
  background: var(--card); color: var(--text); transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--mint-deep); box-shadow: 0 0 0 4px rgba(47,227,166,.18); }
.field--hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--muted); }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: .95rem; }
.alert--ok { background: color-mix(in srgb, var(--mint) 26%, var(--paper)); color: var(--forest); border: 1px solid var(--mint-deep); }
.alert--err { background: #fdece8; color: #b3341d; border: 1px solid #f0a692; }
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact-info li { display: flex; gap: .8rem; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-info svg { width: 22px; height: 22px; color: var(--mint-deep); flex: none; margin-top: 3px; }
.contact-info b { display: block; color: var(--ink); }
.contact-info span { color: var(--muted); font-size: .95rem; }

/* ---------- Conteúdo legal (privacidade/termos) ---------- */
.legal { max-width: 820px; }
.legal h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 42px 0 14px; }
.legal h3 { font-size: 1.2rem; margin: 26px 0 10px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal ul li { margin-bottom: 8px; }
.legal strong { color: var(--text); }
.legal a { color: var(--mint-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal .toc { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 30px; }
.legal .toc ol { padding-left: 20px; columns: 2; column-gap: 30px; }
.legal .toc a { color: var(--text); text-decoration: none; font-weight: 600; font-size: .94rem; line-height: 2; }
.legal .toc a:hover { color: var(--mint-deep); }
.page-hero { background: var(--ink); color: var(--on-dark); padding-block: clamp(60px, 8vw, 96px); }
.page-hero h1 { color: var(--on-dark); }
.page-hero .lead { color: var(--on-dark-mut); }
.page-hero .eyebrow { color: var(--mint); } .page-hero .eyebrow::before { background: var(--mint); }
.placeholder-note { background: #fff8e6; border: 1px dashed var(--gold); color: #7a5a00; padding: 12px 16px; border-radius: 10px; font-size: .9rem; margin-bottom: 22px; }

/* ---------- Logos / prova social ---------- */
.trust { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 38px; opacity: .8; }
.trust span { font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark-mut); padding-block: 64px 32px; }
.footer-grid { display: grid; gap: 38px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer .brand { color: var(--on-dark); margin-bottom: 14px; }
.site-footer h4 { font-family: var(--body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 16px; font-weight: 800; }
.site-footer a { color: var(--on-dark-mut); display: block; padding: 6px 0; font-size: .96rem; transition: color .2s; }
.site-footer a:hover { color: var(--mint); }
.footer-about p { font-size: .96rem; max-width: 34ch; }
.footer-bottom { border-top: 1px solid var(--on-dark-line); margin-top: 48px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: .88rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--on-dark-line); border-radius: 50%; display: grid; place-items: center; padding: 0; }
.footer-social a:hover { background: rgba(234,243,238,.08); }
.footer-social svg { width: 18px; height: 18px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Hero load animation ---------- */
.hero .anim { opacity: 0; transform: translateY(20px); animation: heroIn .9s var(--ease) forwards; }
.hero .anim.a1 { animation-delay: .05s; } .hero .anim.a2 { animation-delay: .18s; } .hero .anim.a3 { animation-delay: .31s; } .hero .anim.a4 { animation-delay: .44s; } .hero .anim.a5 { animation-delay: .57s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* utils */
.mt0{margin-top:0}.mb0{margin-bottom:0}.muted{color:var(--muted)}
.divider{height:1px;background:var(--line);border:0;margin:0}

/* ===== Banner de consentimento de cookies (LGPD / Consent Mode v2) ===== */
.cookie-bar{
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000;
  display: flex; justify-content: center;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.cookie-bar.is-visible{ opacity: 1; transform: none; pointer-events: auto; }
.cookie-bar__inner{
  width: min(720px, 100%);
  background: var(--card); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-bar__text{ margin: 0; flex: 1 1 320px; font-size: .92rem; line-height: 1.5; color: var(--muted); }
.cookie-bar__text a{ color: var(--mint-deep); font-weight: 600; }
.cookie-bar__actions{ display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-bar__actions .btn{ padding: .5rem 1.1rem; }
@media (max-width: 520px){
  .cookie-bar__actions{ width: 100%; }
  .cookie-bar__actions .btn{ flex: 1; }
}
@media (prefers-reduced-motion: reduce){
  .cookie-bar{ transition: none; transform: none; }
}
