/* =============================================================
   ATAKOY STORE — styles.css
   CSS único compartilhado por todas as páginas
============================================================= */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --ink:    #07090F;
  --s1:     #0C0F1C;
  --s2:     #111526;
  --s3:     #161B2E;
  --rule:   rgba(255,255,255,0.06);
  --rule2:  rgba(255,255,255,0.12);
  --blue:   #2B5BFF;
  --blue-a: rgba(43,91,255,0.12);
  --blue-b: rgba(43,91,255,0.25);
  --gold:   #E8A500;
  --gold-a: rgba(232,165,0,0.10);
  --green:  #00C87A;
  --grn-a:  rgba(0,200,122,0.10);
  --amber:  #F5A623;
  --t1:     #FFFFFF;
  --t2:     rgba(255,255,255,0.54);
  --t3:     rgba(255,255,255,0.27);
  --wa:     #25D366;
  --wa2:    #1aab57;
  --hd:     'Barlow Condensed', Impact, sans-serif;
  --bd:     'Manrope', system-ui, sans-serif;
  --mo:     'JetBrains Mono', 'Courier New', monospace;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --r:      8px;
  --rl:     14px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--bd);
  background: var(--ink);
  color: var(--t1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--bd); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.w { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) { .w { padding: 0 20px; } }

.sec     { padding: 72px 0; }
.sec-alt { padding: 72px 0; background: var(--s1); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.sec-drk { padding: 72px 0; background: var(--s2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

/* ── TIPOGRAFIA DE SEÇÃO ─────────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.sec-h {
  font-family: var(--hd);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800; letter-spacing: -.01em;
  text-transform: uppercase; line-height: 1.05; margin-bottom: 16px;
}
.sec-p { font-size: 15px; color: var(--t2); line-height: 1.8; max-width: 600px; }

/* ── BOTÕES ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: var(--r); font-family: var(--bd);
  font-weight: 700; font-size: 14px;
  transition: transform .18s var(--ease), box-shadow .18s, background .18s;
  cursor: pointer; white-space: nowrap; text-decoration: none; padding: 13px 24px;
}
.btn:active { transform: scale(.98); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa2); box-shadow: 0 10px 28px rgba(37,211,102,.25); transform: translateY(-1px); }
.btn-wa.lg { padding: 16px 30px; font-size: 15px; }
.btn-ghost { background: transparent; color: var(--t2); border: 1px solid var(--rule2); }
.btn-ghost:hover { color: var(--t1); border-color: var(--blue); background: var(--blue-a); }
.btn-ghost.lg { padding: 16px 28px; font-size: 15px; }
.ico-wa { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ── CHIPS / BADGES ──────────────────────────────────────── */
.chip {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 3px; margin-top: 3px;
}
.chip-v { background: var(--blue-a); color: var(--blue); border: 1px solid rgba(43,91,255,.22); }
.chip-g { background: var(--grn-a);  color: var(--green); border: 1px solid rgba(0,200,122,.2); }
.chip-a { background: var(--gold-a); color: var(--gold);  border: 1px solid rgba(232,165,0,.22); }

/* ── HEADER (injetado via JS) ────────────────────────────── */
.hdr {
  position: sticky; top: 0; z-index: 100; height: 60px;
  background: rgba(7,9,15,.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--rule);
}
.hdr > .w { display: flex; align-items: center; height: 100%; }
.hdr-i { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 40px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-sq {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--blue); display: grid; place-items: center;
  font-family: var(--hd); font-size: 15px; font-weight: 800; color: #fff;
}
.logo-name { font-family: var(--hd); font-size: 20px; font-weight: 800; letter-spacing: .02em; }
.hdr-nav { display: flex; align-items: center; gap: 24px; }
.hdr-nav a { font-size: 13px; font-weight: 500; color: var(--t2); transition: color .15s; }
.hdr-nav a:hover,
.hdr-nav a.active { color: var(--t1); }
.live-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: var(--green);
  letter-spacing: .07em; text-transform: uppercase;
}
.live-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
@media (max-width: 820px) { .hdr-nav { display: none; } }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.bc { background: var(--s1); border-bottom: 1px solid var(--rule); padding: 11px 0; }
.bc ol { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--t3); }
.bc a { transition: color .15s; }
.bc a:hover { color: var(--t2); }
.bc-sep { opacity: .45; font-size: 10px; }

/* ── HERO COMPARTILHADO ──────────────────────────────────── */
.hero { padding: 72px 0 64px; position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; top: -120px; right: -80px;
  width: 580px; height: 580px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,91,255,.055) 0%, transparent 65%);
  pointer-events: none;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 20px;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: blink 2s infinite;
}
.hero h1 {
  font-family: var(--hd); font-weight: 800; text-transform: uppercase;
  letter-spacing: -.02em; line-height: .93;
  font-size: clamp(48px, 7.5vw, 100px); margin-bottom: 6px;
}
.h1-solid { display: block; color: var(--t1); }
.h1-stroke { display: block; -webkit-text-stroke: 2px rgba(255,255,255,.5); color: transparent; }
.hero-desc {
  margin-top: 22px; margin-bottom: 32px;
  font-size: 16px; color: var(--t2); line-height: 1.75; max-width: 520px;
}
.hero-desc strong { color: var(--t1); font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Stats do hero */
.hero-stats { display: flex; align-items: stretch; border-top: 1px solid var(--rule); padding-top: 28px; }
.hs { flex: 1; padding: 0 22px; border-right: 1px solid var(--rule); }
.hs:first-child { padding-left: 0; }
.hs:last-child  { border-right: none; }
.hs-n { font-family: var(--hd); font-size: 36px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.hs-n .u { font-size: 18px; color: var(--t3); margin-left: 1px; }
.hs-l { font-size: 11px; color: var(--t3); margin-top: 5px; }
@media (max-width: 540px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hs { flex: 0 0 calc(50% - 10px); border-right: none; padding: 0; }
}

/* Grid hero split */
.hero-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

/* ── PAINEL CONTA EM DESTAQUE ────────────────────────────── */
.feat-panel {
  background: var(--s1); border: 1px solid var(--rule);
  border-radius: var(--rl); overflow: hidden; position: relative;
}
.feat-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}
.fp-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; background: var(--s2); border-bottom: 1px solid var(--rule); }
.fp-bar-title { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--t3); }
.fp-live { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: var(--green); letter-spacing: .07em; text-transform: uppercase; }
.fp-live::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }

.fp-cards { position: relative; }
.fp-card { display: none; }
.fp-card.active { display: block; }

.fp-card-hero {
  padding: 28px 22px 22px;
  background: linear-gradient(160deg, var(--s3) 0%, var(--s1) 100%);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; gap: 16px;
}
.fp-card-ico { font-size: 36px; width: 64px; height: 64px; background: var(--s2); border: 1px solid var(--rule2); border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; }
.fp-card-nicho { font-size: 18px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 6px; }
.fp-card-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.fp-yr { font-family: var(--hd); font-size: 13px; font-weight: 800; color: var(--gold); background: var(--gold-a); border: 1px solid rgba(232,165,0,.18); padding: 2px 8px; border-radius: 4px; }

.fp-card-body { padding: 20px 22px; border-bottom: 1px solid var(--rule); }
.fp-stat { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.fp-stat:last-child { margin-bottom: 0; }
.fp-stat-k { font-size: 12px; color: var(--t3); }
.fp-stat-v { font-size: 13px; font-weight: 600; font-family: var(--mo); }
.fp-stat-v.ok { color: var(--green); }

.fp-seg-bar { height: 3px; background: var(--s3); border-radius: 2px; overflow: hidden; margin: 4px 0 12px; }
.fp-seg-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--green)); transition: width .6s var(--ease); }

.fp-card-foot { padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; }
.fp-price-label { font-size: 10px; color: var(--t3); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.fp-price { font-family: var(--hd); font-size: 32px; font-weight: 800; letter-spacing: -.02em; color: var(--gold); line-height: 1; }
.fp-status { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; }
.dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.d-g { background: var(--green); }
.d-a { background: var(--amber); }

.fp-dots { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px; border-top: 1px solid var(--rule); }
.fp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rule2); cursor: pointer; transition: background .2s, transform .2s; }
.fp-dot.on { background: var(--blue); transform: scale(1.3); }
.fp-foot { padding: 14px 18px; background: var(--s2); border-top: 1px solid var(--rule); }

/* ── ESTOQUE (tabela) ────────────────────────────────────── */
.stock-hdr { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.filters { display: flex; gap: 6px; flex-wrap: wrap; }
.flt { padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; background: var(--s3); color: var(--t3); border: 1px solid var(--rule); cursor: pointer; transition: all .15s; }
.flt.on, .flt:hover { background: var(--blue-a); color: var(--blue); border-color: rgba(43,91,255,.28); }

.ac-head {
  display: grid; grid-template-columns: 42px 1fr 90px 160px 130px 136px;
  gap: 16px; padding: 8px 22px 10px;
  font-family: var(--mo); font-size: 9px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--t3);
  border-bottom: 1px solid var(--rule); margin-bottom: 4px;
}
.acl { display: flex; flex-direction: column; gap: 3px; }
.ac {
  display: grid; grid-template-columns: 42px 1fr 90px 160px 130px 136px;
  align-items: center; gap: 16px; padding: 18px 22px;
  background: var(--s1); border: 1px solid var(--rule);
  border-left: 3px solid transparent; border-radius: var(--r);
  transition: background .15s, border-left-color .18s;
}
.ac:hover { background: var(--s2); border-left-color: var(--blue); }
.ac-ava {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--s3); border: 1px solid var(--rule2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; position: relative; overflow: hidden; flex-shrink: 0;
}
.ac-ava img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ac-name { font-size: 14px; font-weight: 600; letter-spacing: -.01em; }
.ac-id { font-family: var(--mo); font-size: 10px; color: var(--t3); margin-top: 3px; }
.ac-yr { font-family: var(--hd); font-size: 15px; font-weight: 800; color: var(--gold); background: var(--gold-a); border: 1px solid rgba(232,165,0,.18); padding: 3px 9px; border-radius: 5px; display: inline-block; }
.ac-seg { font-size: 14px; font-weight: 600; }
.ac-seg small { display: block; font-family: var(--mo); font-size: 10px; color: var(--t3); font-weight: 400; margin-top: 2px; }
.ac-price { font-family: var(--hd); font-size: 20px; font-weight: 700; letter-spacing: -.01em; color: var(--gold); }
.ac-price small { font-family: var(--bd); font-size: 10px; color: var(--t3); font-weight: 400; display: block; margin-top: 2px; }
.ac-status { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; }

.stock-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: var(--s2); border: 1px solid var(--rule);
  border-radius: var(--r); margin-top: 3px; flex-wrap: wrap;
}
.sf-txt { font-size: 14px; color: var(--t2); }
.sf-txt strong { color: var(--t1); }

@media (max-width: 900px) {
  .ac, .ac-head { grid-template-columns: 1fr; }
  .ac-head { display: none; }
  .ac { gap: 6px; padding: 16px; border-left-width: 1px; }
}

/* ── PROCESSO (4 steps) ──────────────────────────────────── */
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.proc-grid::before {
  content: ''; position: absolute; top: 15px;
  left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 1px; background: linear-gradient(90deg, var(--blue), rgba(43,91,255,.15));
}
.pc { padding: 0 24px 0 0; position: relative; z-index: 1; }
.pc:last-child { padding-right: 0; }
.pc-num-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.pc-circle { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; background: var(--s3); border: 1px solid var(--rule2); display: grid; place-items: center; font-family: var(--mo); font-size: 11px; font-weight: 500; color: var(--blue); }
.pc-line { flex: 1; height: 1px; background: var(--rule); }
.pc h3 { font-size: 16px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.pc p { font-size: 13px; color: var(--t2); line-height: 1.7; }
@media (max-width: 760px) {
  .proc-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .proc-grid::before { display: none; }
  .pc { padding: 0; }
  .pc-line { display: none; }
}
@media (max-width: 480px) { .proc-grid { grid-template-columns: 1fr; } }

/* ── HUB DE CONTEÚDO ─────────────────────────────────────── */
.hub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.hc { display: block; overflow: hidden; background: var(--s1); border: 1px solid var(--rule); transition: border-color .18s; }
.hc:hover { border-color: var(--rule2); }
.hc.feat { grid-column: span 2; }
.hc-img { width: 100%; height: 160px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hc.feat .hc-img { height: 210px; }
.hc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.hc:hover .hc-img img { transform: scale(1.04); }
.hc-img-ico { font-size: 36px; position: relative; z-index: 1; }
.hc-body { padding: 22px 24px 26px; }
.hc-cat { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.hc-title { font-size: 15px; font-weight: 700; letter-spacing: -.02em; line-height: 1.35; margin-bottom: 8px; }
.hc.feat .hc-title { font-size: 18px; }
.hc-exc { font-size: 13px; color: var(--t2); line-height: 1.65; margin-bottom: 14px; }
.hc-lnk { font-size: 12px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; }
.hc-arr { transition: transform .18s var(--ease); display: inline-block; }
.hc:hover .hc-arr { transform: translateX(4px); }
@media (max-width: 760px) { .hub-grid { grid-template-columns: 1fr 1fr; } .hc.feat { grid-column: span 2; } }
@media (max-width: 520px) { .hub-grid { grid-template-columns: 1fr; } .hc.feat { grid-column: span 1; } }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-layout { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
@media (max-width: 840px) { .faq-layout { grid-template-columns: 1fr; gap: 40px; } }
.faq-side { position: sticky; top: 80px; }
.faq-side-note { margin-top: 28px; padding: 20px 22px; background: var(--s3); border: 1px solid var(--rule); border-radius: var(--r); }
.faq-side-note p { font-size: 13px; color: var(--t2); line-height: 1.7; }

.faq-list { display: flex; flex-direction: column; gap: 2px; }
.fq { background: var(--s1); border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden; transition: border-color .18s; }
.fq.open { border-color: rgba(43,91,255,.28); }
.fq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-size: 15px; font-weight: 600; letter-spacing: -.015em; text-align: left; color: var(--t1); background: transparent; cursor: pointer; transition: background .15s; }
.fq-btn:hover { background: rgba(255,255,255,.02); }
.fq.open .fq-btn { background: rgba(43,91,255,.06); }
.fq-ico { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--rule2); display: grid; place-items: center; font-size: 14px; flex-shrink: 0; color: var(--t3); transition: transform .28s var(--ease), background .18s, color .18s, border-color .18s; }
.fq.open .fq-ico { transform: rotate(45deg); background: var(--blue-a); color: var(--blue); border-color: rgba(43,91,255,.28); }
.fq-body { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease); }
.fq.open .fq-body { max-height: 400px; }
.fq-inner { padding: 18px 22px 22px; font-size: 14px; color: var(--t2); line-height: 1.8; border-top: 1px solid var(--rule); }
.fq-inner strong { color: var(--t1); }

/* ── AVALIAÇÕES ───────────────────────────────────────────── */
.rv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 820px) { .rv-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .rv-grid { grid-template-columns: 1fr; } }
.rv { background: var(--s2); border: 1px solid var(--rule); border-radius: var(--rl); padding: 24px; }
.rv-stars { color: var(--amber); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.rv-txt { font-size: 13px; color: var(--t2); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.rv-aut { display: flex; align-items: center; gap: 10px; }
.rv-ava { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--blue), #7340e0); display: grid; place-items: center; font-family: var(--hd); font-size: 13px; font-weight: 800; color: #fff; }
.rv-name { font-size: 13px; font-weight: 600; }
.rv-date { font-family: var(--mo); font-size: 11px; color: var(--t3); margin-top: 1px; }

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-sec { padding: 64px 0; text-align: center; border-top: 1px solid var(--rule); }
.cta-sec h2 { font-family: var(--hd); font-size: clamp(26px,4vw,46px); font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 14px; }
.cta-sec p { font-size: 15px; color: var(--t2); margin-bottom: 28px; }

/* ── FOOTER (injetado via JS) ─────────────────────────────── */
.footer { padding: 56px 0 28px; border-top: 1px solid var(--rule); position: relative; overflow: hidden; }
.ft-bg { font-family: var(--hd); font-size: 200px; font-weight: 800; position: absolute; bottom: -20px; right: -24px; color: rgba(255,255,255,.017); line-height: 1; user-select: none; pointer-events: none; letter-spacing: -.04em; text-transform: uppercase; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; position: relative; }
@media (max-width: 840px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.fc-desc { font-size: 14px; color: var(--t3); margin-top: 14px; line-height: 1.7; }
.fc-h { font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--t3); margin-bottom: 16px; }
.fc-links { display: flex; flex-direction: column; gap: 11px; }
.fc-links a { font-size: 14px; color: var(--t2); transition: color .15s; }
.fc-links a:hover { color: var(--t1); }
.footer-bot { display: flex; align-items: flex-start; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--rule); gap: 16px; flex-wrap: wrap; position: relative; }
.fc-copy { font-size: 12px; color: var(--t3); }
.fc-disc { font-size: 12px; color: var(--t3); max-width: 460px; line-height: 1.6; text-align: right; }
@media (max-width: 600px) { .fc-disc { text-align: left; } }

/* ── MOBILE STICKY CTA ────────────────────────────────────── */
.mob { display: none; position: fixed; inset: auto 0 0 0; z-index: 99; padding: 10px 16px 14px; background: rgba(7,9,15,.96); backdrop-filter: blur(18px); border-top: 1px solid var(--rule2); }
.mob a { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; padding: 16px; background: var(--wa); border-radius: var(--r); font-size: 15px; font-weight: 700; color: #fff; }
@media (max-width: 820px) { .mob { display: block; } body { padding-bottom: 76px; } }

/* ── ANIMAÇÕES ────────────────────────────────────────────── */
@keyframes up { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.hero-tag   { animation: up .4s ease both; }
.hero h1    { animation: up .4s .07s ease both; }
.hero-desc  { animation: up .4s .14s ease both; }
.hero-actions { animation: up .4s .20s ease both; }
.hero-stats { animation: up .4s .30s ease both; }

/* ── UTILITÁRIOS DE PÁGINA ────────────────────────────────── */
.why-grid { border: 1px solid var(--rule); border-radius: var(--rl); overflow: hidden; }
.why-row  { display: grid; grid-template-columns: 1fr 1fr; }
.why-row + .why-row { border-top: 1px solid var(--rule); }
.wc { padding: 44px 36px; background: var(--s1); position: relative; overflow: hidden; }
.wc + .wc { border-left: 1px solid var(--rule); }
.wc-bg { font-family: var(--hd); font-size: 160px; font-weight: 800; position: absolute; bottom: -16px; right: -8px; color: rgba(255,255,255,.022); line-height: 1; user-select: none; pointer-events: none; letter-spacing: -.04em; }
.wc-ey { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.wc-stat { font-family: var(--hd); font-weight: 800; text-transform: uppercase; font-size: clamp(30px,4vw,52px); letter-spacing: -.02em; line-height: 1; margin-bottom: 12px; }
.wc-stat em { color: var(--gold); font-style: normal; }
.wc h3 { font-size: 17px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.wc p { font-size: 14px; color: var(--t2); line-height: 1.75; max-width: 340px; }
.why-bottom { padding: 36px 44px; background: var(--s2); border-top: 1px solid var(--rule); }
.why-bottom-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.wb-title { font-family: var(--hd); font-weight: 800; text-transform: uppercase; font-size: clamp(24px,3vw,38px); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 10px; }
.wb-title em { color: var(--gold); font-style: normal; }
.wb-p { font-size: 13px; color: var(--t2); line-height: 1.7; }
@media (max-width: 760px) {
  .why-row { grid-template-columns: 1fr; }
  .wc + .wc { border-left: none; border-top: 1px solid var(--rule); }
  .wc { padding: 36px 28px; }
  .why-bottom { padding: 32px 28px; }
  .why-bottom-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) { .why-bottom-grid { grid-template-columns: 1fr; } }
