/* Fontes carregadas via <link> no HTML (sem @import: mais rápido e compatível com a CSP) */

/* ─── TOKENS (paleta neutra) ───────────────────────────── */
:root {
  --bg:        #0B0B0D;
  --bg-2:      #101013;
  --text:      #F4F4F6;
  --muted:     #A6A6AE;
  --accent:    #F5A520;            /* âmbar da marca, usado com parcimônia */
  --accent-2:  #FFB733;
  --wa:        #25D366;

  --glass-bg:      linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.03) 58%);
  --glass-bg-soft: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02) 58%);
  --glass-border:  rgba(255,255,255,.13);
  --glass-border-hover: rgba(255,255,255,.26);
  --glass-shadow:  0 14px 44px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.14);
  --border:        rgba(255,255,255,.08);

  --f-display: 'Space Grotesk', sans-serif;
  --f-body:    'DM Sans', sans-serif;
  --f-mono:    'IBM Plex Mono', monospace;
  --ease:      cubic-bezier(.25,.46,.45,.94);
  --maxw:      1180px;
  --radius:    20px;
}

/* ─── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--f-body); line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
/* fundo líquido neutro: brilhos suaves atrás do vidro */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(48% 38% at 82% 6%,  rgba(245,165,32,.07), transparent 60%),
    radial-gradient(55% 42% at 8% 32%,  rgba(255,255,255,.05), transparent 62%),
    radial-gradient(60% 48% at 90% 78%, rgba(150,160,190,.06), transparent 65%),
    radial-gradient(42% 36% at 30% 96%, rgba(245,165,32,.045), transparent 60%),
    var(--bg);
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ─── UTILITY ──────────────────────────────────────────── */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem,5vw,3rem); }
.mono { font-family: var(--f-mono); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-mono); font-size: .66rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem;
}
.eyebrow--accent { color: var(--accent); }

/* superfície de vidro (liquid glass) */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  position: relative; overflow: hidden;
}
.glass::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,.16) 0%, transparent 22%, transparent 78%, rgba(255,255,255,.05) 100%);
  opacity: .5;
}

/* ─── REVEAL ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .08s; }
.reveal--d2 { transition-delay: .16s; }
.reveal--d3 { transition-delay: .24s; }
.reveal--d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; }
}

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.8rem; border-radius: 999px;
  font-family: var(--f-body); font-size: .95rem; font-weight: 600;
  transition: background .18s, border-color .18s, transform .18s, box-shadow .18s;
  white-space: nowrap; text-align: center;
}
.btn--primary { background: var(--accent); color: #17110a; box-shadow: 0 6px 24px rgba(245,165,32,.25); }
.btn--primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,165,32,.32); }
.btn--primary:active { transform: none; }
.btn--ghost {
  background: rgba(255,255,255,.06); color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.btn--ghost:hover { border-color: var(--glass-border-hover); background: rgba(255,255,255,.1); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 6px 24px rgba(37,211,102,.22); }
.btn--wa:hover { background: #1fbe5a; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,.3); }
.btn--lg { font-size: 1.05rem; padding: 1.1rem 2.2rem; }

/* ─── TOPBAR (vidro) ───────────────────────────────────── */
.topbar {
  position: fixed; top: 12px; left: 50%; transform: translateX(-50%); z-index: 200;
  width: min(var(--maxw), calc(100% - 24px));
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; padding: 0 clamp(1rem,3vw,1.6rem);
  background: linear-gradient(160deg, rgba(20,20,24,.62), rgba(20,20,24,.4));
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: 0 10px 36px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.12);
  transition: background .3s, box-shadow .3s;
}
.topbar--scrolled { background: linear-gradient(160deg, rgba(14,14,17,.9), rgba(14,14,17,.78)); }
.topbar__logo img { height: 28px; width: auto; }
.topbar .btn { padding: .6rem 1.25rem; font-size: .86rem; }

/* ─── CINE (vídeo parallax que segue o mouse) ──────────── */
.cine { position: relative; overflow: hidden; isolation: isolate; }
.cine__media { position: absolute; inset: -6%; z-index: 0; will-change: transform; }
.cine__media video, .cine__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.02); }
.cine__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.cine__noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}
.cine__content { position: relative; z-index: 2; will-change: transform; }

/* ─── 1 · HERO ─────────────────────────────────────────── */
.hero { min-height: 100svh; display: flex; align-items: center; padding: 108px 0 3.5rem; }
.hero .cine__scrim {
  background:
    linear-gradient(to right, rgba(11,11,13,.96) 0%, rgba(11,11,13,.88) 40%, rgba(11,11,13,.55) 68%, rgba(11,11,13,.3) 100%),
    linear-gradient(to top, rgba(11,11,13,.92), transparent 42%);
}
.hero__inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem,5vw,3rem); }
.hero__content { max-width: 680px; }
.hero__chip {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.07); border: 1px solid var(--glass-border); border-radius: 999px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: .45rem 1rem; font-family: var(--f-mono); font-size: .64rem;
  color: var(--text); letter-spacing: .1em; margin-bottom: 1.8rem;
}
.chip__rec { width: 7px; height: 7px; border-radius: 50%; background: #E84040; animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.25;} }
.hero h1 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(2.7rem,6.2vw,5rem); line-height: 1.03; letter-spacing: -.025em; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub { font-size: clamp(1.02rem,1.9vw,1.18rem); color: #C9C9CF; max-width: 580px; line-height: 1.7; margin-bottom: 2rem; }
.hero__sub strong { color: var(--text); font-weight: 600; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; color: var(--muted); }
.hero__trust svg { color: var(--accent); flex-shrink: 0; }
.hero__proof { margin-top: 2.2rem; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .05em; color: var(--muted); text-transform: uppercase; }
.hero__proof b { color: var(--text); font-weight: 500; }

/* ─── MARQUEE (faixa de vidro) ─────────────────────────── */
.marquee {
  overflow: hidden; padding: .9rem 0; display: flex; flex-direction: column; gap: .55rem;
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.marquee__track { display: flex; width: max-content; }
.marquee__track--a { animation: marqA 38s linear infinite; }
.marquee__track--b { animation: marqB 44s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--f-display); font-weight: 500; font-size: 1rem; letter-spacing: -.01em;
  color: var(--muted); padding: 0 1.4rem; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 1.4rem;
}
.marquee__item::after { content: '✦'; color: var(--accent); font-size: .65rem; opacity: .6; }
.marquee__item--hi { color: var(--text); }
@keyframes marqA { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqB { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ─── SECTION BASE ─────────────────────────────────────── */
.section { padding: clamp(4.5rem,9vw,7.5rem) 0; position: relative; }
.section--alt { background: var(--bg-2); }
.section__header { margin-bottom: clamp(2.5rem,5vw,4rem); max-width: 780px; }
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.9rem,4vw,3rem); line-height: 1.1; letter-spacing: -.02em; }
.section h2 em { font-style: normal; color: var(--accent); }
.section__intro { color: var(--muted); font-size: 1.02rem; line-height: 1.75; max-width: 620px; margin-top: 1rem; }
.section__header--center .section__intro { margin-left: auto; margin-right: auto; }
.section-cta { margin-top: clamp(2.5rem,5vw,3.5rem); }
.section-cta--center { text-align: center; }

/* ─── 2 · PROPOSTA DE VALOR ────────────────────────────── */
.proposta__pains { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: clamp(2.5rem,5vw,3.5rem); }
.pain {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center;
  padding: 1.1rem 1.3rem;
  background: var(--glass-bg-soft);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border); border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  transition: border-color .2s, transform .2s;
}
.pain:hover { border-color: var(--glass-border-hover); transform: translateY(-2px); }
.pain__num { font-family: var(--f-mono); font-size: 1.05rem; color: var(--accent); opacity: .85; }
.pain p { font-size: .95rem; color: var(--text); line-height: 1.5; font-weight: 500; }
.proposta__lead { font-size: 1.05rem; color: var(--muted); max-width: 640px; line-height: 1.7; margin-bottom: clamp(2rem,4vw,3rem); }
.proposta__lead strong { color: var(--text); }

.proposta__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.proposta__visual { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); position: relative; aspect-ratio: 4/3; box-shadow: var(--glass-shadow); }
.proposta__visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); }
.proposta__visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,13,.5), transparent 55%); }
.metodo__steps { display: flex; flex-direction: column; gap: 1rem; margin: 1.8rem 0; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
  padding: 1.1rem 1.25rem;
  background: var(--glass-bg-soft);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border); border-radius: 16px;
}
.step__n { font-family: var(--f-mono); font-size: .66rem; font-weight: 500; color: var(--accent); border: 1px solid rgba(245,165,32,.45); border-radius: 999px; padding: .3rem .7rem; white-space: nowrap; margin-top: .1rem; }
.step h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.08rem; margin-bottom: .3rem; }
.step p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.metodo__assure { font-size: .88rem; color: var(--muted); border-left: 2px solid var(--accent); padding-left: 1rem; margin-bottom: .4rem; line-height: 1.65; }
.consult__modes { display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; margin-top: 1.6rem; }
.mode {
  padding: 1rem 1.05rem; text-align: left;
  background: var(--glass-bg-soft);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border); border-radius: 14px; transition: border-color .2s;
}
.mode:hover { border-color: var(--glass-border-hover); }
.mode b { font-family: var(--f-display); font-size: .92rem; display: block; margin-bottom: .15rem; }
.mode span { font-size: .78rem; color: var(--muted); line-height: 1.45; display: block; }
@media (max-width: 880px) {
  .proposta__pains { grid-template-columns: 1fr; }
  .proposta__grid { grid-template-columns: 1fr; }
  .proposta__visual { order: -1; max-height: 300px; aspect-ratio: auto; }
  .consult__modes { grid-template-columns: 1fr; }
}

/* ─── 3 · RECURSOS (3 resultados com ícones) ───────────── */
.recursos { position: relative; overflow: hidden; }
.recursos__bg { position: absolute; inset: 0; z-index: 0; opacity: .1; pointer-events: none; }
.recursos__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.6); }
.recursos .container { position: relative; z-index: 1; }
.outcomes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.outcome {
  padding: 2rem 1.7rem;
  background: var(--glass-bg);
  backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  transition: transform .2s, border-color .2s;
}
.outcome:hover { transform: translateY(-4px); border-color: var(--glass-border-hover); }
.outcome__ic {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 1.2rem;
  border-radius: 14px; color: var(--accent);
  background: rgba(245,165,32,.1); border: 1px solid rgba(245,165,32,.28);
}
.outcome__k { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); margin-bottom: .7rem; }
.outcome h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.32rem; margin-bottom: 1rem; letter-spacing: -.01em; }
.outcome ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.outcome li { font-size: .88rem; color: var(--muted); line-height: 1.55; padding-left: 1.35rem; position: relative; }
.outcome li::before { content: ''; position: absolute; left: 0; top: .48em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: .85; }
.fazemos__note { text-align: center; margin-top: clamp(2.5rem,5vw,3.5rem); font-size: 1.05rem; color: var(--text); max-width: 640px; margin-left: auto; margin-right: auto; }
.fazemos__note strong { color: var(--accent); font-weight: 600; }
@media (max-width: 880px) { .outcomes { grid-template-columns: 1fr; } }

/* ─── IA SHOWCASE (vídeo parallax #2) ──────────────────── */
.ia { min-height: 88vh; display: flex; align-items: center; padding: clamp(4rem,8vw,7rem) 0; }
.ia .cine__scrim { background: linear-gradient(to left, rgba(11,11,13,.95) 0%, rgba(11,11,13,.85) 42%, rgba(11,11,13,.55) 75%, rgba(11,11,13,.35) 100%); }
.ia__grid { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem,5vw,3rem); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.ia__copy h2 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.9rem,3.6vw,2.9rem); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 1.1rem; }
.ia__copy h2 em { font-style: normal; color: var(--accent); }
.ia__copy > p { font-size: 1rem; color: #C9C9CF; line-height: 1.75; margin-bottom: 1.6rem; max-width: 480px; }
.ia__items { list-style: none; display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2rem; }
.ia__items li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; color: var(--text); }
.ia__items svg { color: var(--accent); flex-shrink: 0; margin-top: .15rem; }
.ia__visual {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--glass-border); aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.12);
}
.ia__visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); }
.ia__badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  font-family: var(--f-mono); font-size: .56rem; letter-spacing: .12em; color: var(--text);
  border: 1px solid var(--glass-border); background: rgba(15,15,18,.55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: .35rem .7rem; border-radius: 999px;
}
@media (max-width: 880px) { .ia__grid { grid-template-columns: 1fr; } .ia__visual { max-width: 380px; } }

/* ─── 4 · PROVA SOCIAL (perfis reais) ──────────────────── */
.social__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1rem; }
.ig-card {
  padding: 1.5rem 1.4rem;
  background: var(--glass-bg);
  backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  transition: transform .2s, border-color .2s;
}
.ig-card:hover { transform: translateY(-3px); border-color: var(--glass-border-hover); }
.ig-card__head { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.ig-card__head svg { color: var(--muted); flex-shrink: 0; }
.ig-card__handle { font-family: var(--f-mono); font-size: .72rem; color: var(--muted); }
.ig-card h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.1rem; margin-bottom: .2rem; }
.ig-card__niche { font-size: .78rem; color: var(--muted); margin-bottom: .9rem; }
.ig-card__stat { font-family: var(--f-display); font-weight: 700; font-size: 1.35rem; color: var(--accent); line-height: 1.1; }
.ig-card__stat span { display: block; font-family: var(--f-body); font-weight: 400; font-size: .76rem; color: var(--muted); margin-top: .15rem; }
.social__note { text-align: center; margin-top: 2rem; font-size: .95rem; color: var(--muted); }
.social__note b { color: var(--text); }

/* ─── 5 · ESTUDOS DE CASO ──────────────────────────────── */
.prova__feature {
  display: grid; grid-template-columns: 300px 1fr; gap: clamp(2rem,5vw,4rem); align-items: center;
  margin-bottom: clamp(3rem,6vw,4.5rem);
  padding: clamp(1.5rem,3vw,2.5rem);
  background: var(--glass-bg-soft);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}
.prova__feature-img { border-radius: 14px; overflow: hidden; border: 1px solid var(--glass-border); background: #0E0E10; aspect-ratio: 3/4; }
.prova__feature-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.prova__feature-txt h3 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.4rem,2.8vw,2rem); line-height: 1.15; letter-spacing: -.02em; margin-bottom: .9rem; }
.prova__feature-txt h3 em { font-style: normal; color: var(--accent); }
.prova__feature-txt p { font-size: .95rem; color: var(--muted); line-height: 1.75; margin-bottom: .9rem; max-width: 520px; }
.tag-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.1rem; }
.tag-pill {
  font-family: var(--f-mono); font-size: .58rem; letter-spacing: .09em; text-transform: uppercase;
  padding: .32rem .7rem; border: 1px solid var(--glass-border); border-radius: 999px; color: var(--muted);
  background: rgba(255,255,255,.04);
}
.reels__label, .sites__head {
  font-family: var(--f-mono); font-size: .64rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.25rem; display: flex; align-items: center; gap: .6rem;
}
.reels__label::after, .sites__head::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.sites__head { margin: clamp(3.5rem,7vw,5rem) 0 1.25rem; }
.reels { display: grid; grid-template-columns: repeat(2,minmax(220px,300px)); gap: 1.25rem; }
.reel {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--glass-border); background: #000; aspect-ratio: 9/16;
  box-shadow: var(--glass-shadow);
  transition: border-color .2s, transform .2s;
}
.reel:hover { border-color: var(--glass-border-hover); transform: translateY(-3px); }
.reel video { width: 100%; height: 100%; object-fit: cover; }
.reel__cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 2.5rem .9rem .85rem; background: linear-gradient(to top, rgba(0,0,0,.92) 10%, rgba(0,0,0,.4) 60%, transparent); pointer-events: none; }
.reel__client { font-family: var(--f-display); font-weight: 700; font-size: 1rem; color: #fff; line-height: 1.1; }
.reel__type { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-top: .25rem; }
.reel__badge {
  position: absolute; top: .7rem; left: .7rem; z-index: 2;
  background: rgba(0,0,0,.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  padding: .25rem .6rem; font-family: var(--f-mono); font-size: .55rem;
  letter-spacing: .06em; text-transform: uppercase; color: #fff; display: flex; align-items: center; gap: .35rem;
}
.reel__badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.sites__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 1rem; }
.site-card {
  position: relative; padding: 1.6rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  box-shadow: var(--glass-shadow); overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.site-card:hover { border-color: var(--glass-border-hover); transform: translateY(-2px); }
.site-card__tag { font-family: var(--f-mono); font-size: .56rem; color: var(--muted); letter-spacing: .09em; text-transform: uppercase; margin-bottom: .55rem; }
.site-card h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.12rem; margin-bottom: .5rem; }
.site-card p { font-size: .84rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.site-card__link { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 600; color: var(--accent); transition: gap .15s; }
.site-card__link:hover { gap: .65rem; }
@media (max-width: 760px) {
  .prova__feature { grid-template-columns: 1fr; gap: 1.75rem; }
  .prova__feature-img { max-width: 280px; }
  .reels { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) { .reels { grid-template-columns: 1fr; max-width: 320px; } }

/* ─── 7 · CTA FINAL ────────────────────────────────────── */
.cta-final { position: relative; overflow: hidden; text-align: center; padding: clamp(5rem,10vw,8rem) 0; }
.cta-final__bg { position: absolute; inset: 0; z-index: 0; }
.cta-final__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; filter: saturate(.7); }
.cta-final__bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(11,11,13,.74) 0%, rgba(11,11,13,.92) 70%, var(--bg) 100%); }
.cta-final .container { position: relative; z-index: 1; }
.cta-final__inner {
  max-width: 720px; margin: 0 auto; padding: clamp(2.5rem,5vw,3.5rem);
  background: var(--glass-bg-soft);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border); border-radius: 24px;
  box-shadow: var(--glass-shadow);
}
.cta-final h2 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.9rem,4.2vw,3rem); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 1.1rem; }
.cta-final h2 em { font-style: normal; color: var(--accent); }
.cta-final p { color: #D3D3D9; font-size: 1.08rem; margin-bottom: 2rem; line-height: 1.65; }
.cta-final__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-final__assure { margin-top: 1.5rem; font-family: var(--f-mono); font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.cta-final__scarcity {
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.4rem;
  font-size: .8rem; color: var(--text);
  border: 1px solid var(--glass-border); background: rgba(255,255,255,.05);
  border-radius: 999px; padding: .42rem .95rem;
}
.cta-final__scarcity svg { color: var(--accent); }

/* ─── 6 · FAQ ──────────────────────────────────────────── */
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .7rem; }
.faq__item {
  background: var(--glass-bg-soft);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border); border-radius: 16px;
  padding: 0 1.3rem; transition: border-color .2s;
}
.faq__item:hover, .faq__item.open { border-color: var(--glass-border-hover); }
.faq__item h3 { margin: 0; }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 0; font-weight: 600; font-size: .98rem; color: var(--text); text-align: left; transition: color .15s; }
.faq__q:hover { color: var(--accent); }
.faq__q svg { flex-shrink: 0; transition: transform .25s var(--ease); color: var(--accent); }
.faq__item.open .faq__q svg { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s var(--ease); }
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; font-size: .92rem; color: var(--muted); line-height: 1.72; }
.faq__item.open .faq__a-inner { padding-bottom: 1.25rem; }
.faq__cta { text-align: center; margin-top: 2.5rem; }

/* ─── FOOTER ───────────────────────────────────────────── */
.footer { background: #060607; border-top: 1px solid var(--border); padding: 3rem clamp(1.25rem,5vw,3rem); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer__logo img { height: 30px; width: auto; }
.footer__links { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer__link { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: .4rem; transition: color .15s; }
.footer__link:hover { color: var(--accent); }
.footer__copy { font-size: .75rem; color: var(--muted); width: 100%; padding-top: 1.5rem; border-top: 1px solid var(--border); margin-top: .5rem; }

/* ─── CTA FLUTUANTE + BARRA MOBILE (vidro) ─────────────── */
.fab-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 300;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--wa); color: #fff; border-radius: 999px;
  padding: .9rem 1.4rem; font-weight: 600; font-size: .92rem;
  box-shadow: 0 12px 36px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(24px) scale(.95); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .2s;
}
.fab-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.fab-cta:hover { background: #1fbe5a; transform: translateY(-2px); }
.fab-cta__pulse { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.6);} 70%{box-shadow:0 0 0 9px rgba(255,255,255,0);} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);} }

.mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 300; display: none; gap: .55rem;
  padding: .6rem .7rem;
  background: linear-gradient(160deg, rgba(18,18,22,.85), rgba(18,18,22,.72));
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border); border-radius: 20px;
  box-shadow: 0 12px 36px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.12);
}
.mobile-cta .btn { flex: 1; padding: .85rem .5rem; font-size: .88rem; }

@media (max-width: 860px) {
  .fab-cta { display: none; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 84px; }
}
@media (max-width: 640px) {
  .topbar .btn { display: none; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .cta-final__btns { flex-direction: column; align-items: stretch; }
}

/* Fallback quando o navegador nao suporta backdrop-filter */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .topbar, .topbar--scrolled { background: rgba(14,14,17,.97); }
  .mobile-cta { background: rgba(14,14,17,.97); }
  .glass, .outcome, .ig-card, .site-card, .faq__item, .pain, .step, .mode, .prova__feature, .cta-final__inner { background: rgba(24,24,28,.92); }
}

/* ─── RESPONSIVE GLOBAL ────────────────────────────────── */
@media (max-width: 768px) {
  .hero h1 { font-size: clamp(2.3rem,9vw,3.2rem); }
  .section h2 { font-size: clamp(1.7rem,6vw,2.3rem); }
}

/* ─── UTILITÁRIOS (substituem estilos inline p/ CSP estrita) ── */
.eyebrow--center { justify-content: center; }
.h2--compact { font-size: clamp(1.6rem,3vw,2.2rem); }
.footer__link--static { pointer-events: none; }
.hero__ctas--spaced { margin-top: 2rem; }

/* ─── TOPBAR NAV ───────────────────────────────────────── */
.topbar__nav { display: flex; align-items: center; gap: 1.1rem; }
.topbar__link { font-size: .88rem; font-weight: 600; color: var(--muted); transition: color .15s; }
.topbar__link:hover { color: var(--text); }

/* ─── BLOG · CARDS ─────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.1rem; }
.blog-grid--home { grid-template-columns: repeat(3,1fr); }
.post-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  transition: transform .2s, border-color .2s;
}
.post-card:hover { transform: translateY(-4px); border-color: var(--glass-border-hover); }
.post-card__cover { aspect-ratio: 16/9; overflow: hidden; border-bottom: 1px solid var(--border); }
.post-card__cover img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); transition: transform .3s var(--ease); }
.post-card:hover .post-card__cover img { transform: scale(1.04); }
.post-card__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.post-card__tag { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .11em; text-transform: uppercase; color: var(--accent); }
.post-card h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.08rem; line-height: 1.3; letter-spacing: -.01em; }
.post-card h3 a { transition: color .15s; }
.post-card h3 a:hover { color: var(--accent); }
.post-card__excerpt { font-size: .86rem; color: var(--muted); line-height: 1.6; }
.post-card__meta { margin-top: auto; padding-top: .6rem; font-family: var(--f-mono); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 880px) { .blog-grid--home { grid-template-columns: 1fr; } }

/* ─── BLOG · PÁGINA DE ARTIGO ──────────────────────────── */
.post-hero { padding: 148px 0 2.5rem; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; font-family: var(--f-mono); font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--accent); opacity: .7; }
.post-hero h1 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.9rem,4.4vw,3.1rem); line-height: 1.12; letter-spacing: -.02em; max-width: 820px; margin-bottom: 1.1rem; }
.post-hero__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; font-family: var(--f-mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.post-hero__meta b { color: var(--accent); font-weight: 500; }
.post__cover { max-width: 860px; margin: 0 auto 2.5rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow); aspect-ratio: 16/8; }
.post__cover img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); }
.post__layout { max-width: 720px; margin: 0 auto; padding-bottom: clamp(3rem,6vw,5rem); }
.post__prose { font-size: 1.02rem; line-height: 1.8; color: #D6D6DC; }
.post__prose p { margin-bottom: 1.35rem; }
.post__prose h2 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.35rem,2.6vw,1.75rem); line-height: 1.22; letter-spacing: -.015em; color: var(--text); margin: 2.6rem 0 1rem; }
.post__prose h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.14rem; color: var(--text); margin: 1.9rem 0 .75rem; }
.post__prose ul, .post__prose ol { margin: 0 0 1.35rem 1.3rem; display: flex; flex-direction: column; gap: .55rem; }
.post__prose li::marker { color: var(--accent); }
.post__prose strong { color: var(--text); }
.post__prose a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(245,165,32,.4); text-underline-offset: 3px; transition: text-decoration-color .15s; }
.post__prose a:hover { text-decoration-color: var(--accent); }
.post__prose blockquote { border-left: 2px solid var(--accent); padding: .35rem 0 .35rem 1.15rem; margin: 0 0 1.35rem; color: var(--muted); font-style: italic; }
.post-cta {
  margin: 2.8rem 0; padding: clamp(1.6rem,3vw,2.2rem); text-align: center;
  background: var(--glass-bg-soft);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}
.post-cta h2 { font-family: var(--f-display); font-weight: 700; font-size: 1.35rem; line-height: 1.25; margin-bottom: .6rem; }
.post-cta h2 em { font-style: normal; color: var(--accent); }
.post-cta p { font-size: .92rem; color: var(--muted); margin-bottom: 1.3rem; }
.post-cta__assure { margin-top: .9rem; font-family: var(--f-mono); font-size: .6rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.post__faq { margin-top: 2.6rem; }
.post__faq h2 { font-family: var(--f-display); font-weight: 700; font-size: 1.4rem; margin-bottom: 1.1rem; color: var(--text); }
.related { padding: clamp(3rem,6vw,4.5rem) 0 clamp(4rem,7vw,5.5rem); border-top: 1px solid var(--border); }
.related h2 { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; margin-bottom: 1.4rem; }
.blog-hero { padding: 168px 0 clamp(2.5rem,5vw,3.5rem); }
.blog-hero h1 { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.2rem,5vw,3.6rem); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 1rem; }
.blog-hero h1 em { font-style: normal; color: var(--accent); }
.blog-hero p { color: var(--muted); font-size: 1.05rem; max-width: 620px; line-height: 1.7; }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .post-card, .post-cta { background: rgba(24,24,28,.92); }
}
