/* ===================================================================
   CHOFFERANDO — base operacional do motorista de app (BH)
   Direção: central operacional. Foto real e quente + camada técnica fria.
   Paleta: tinta / grafite / ouro champagne / osso.
   =================================================================== */

/* ---------- TOKENS ---------- */
:root {
  --ink:        #0A0A0B;
  --graphite:   #141417;
  --graphite-2: #1B1B20;
  --graphite-3: #232329;
  --line:       #2C2C33;
  --gold:       #C9A35B;
  --gold-bright:#D9B978;
  --bone:       #EDEAE3;
  --muted:      #8A8A92;
  --muted-2:    #6A6A72;

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, monospace;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 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(--ink);
  color: var(--bone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.narrow { max-width: 820px; }
.section { padding-block: clamp(4.5rem, 11vw, 9rem); position: relative; }

/* ---------- TIPOGRAFIA ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1.4rem;
}
.eyebrow--dark { color: var(--gold); }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,163,91,0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,163,91,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(201,163,91,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,163,91,0); }
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-lead, .lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--muted);
  margin-top: 1.2rem;
  max-width: 60ch;
}
.lead + .lead { margin-top: 1rem; }
.gold { color: var(--gold); }
.muted { color: var(--muted-2); }
.nowrap { white-space: nowrap; }

/* ---------- BOTÕES ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85em 1.5em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn .ic { width: 1.15em; height: 1.15em; transition: transform 0.25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .ic { transform: translateX(3px); }

.btn--gold {
  background: var(--gold);
  color: #1a1206;
  box-shadow: 0 8px 26px -10px rgba(201,163,91,0.7);
}
.btn--gold:hover { background: var(--gold-bright); box-shadow: 0 12px 34px -10px rgba(201,163,91,0.85); }

.btn--ghost { border-color: var(--line); color: var(--bone); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--lg { padding: 1.05em 1.9em; font-size: 1.02rem; }
.btn--sm { padding: 0.6em 1.15em; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,11,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 76px; transition: height 0.3s; }
.site-header.scrolled .header-inner { height: 64px; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-logo { height: 42px; width: auto; flex: none; border-radius: 8px; }
.brand-mark { width: 34px; height: 18px; fill: var(--gold); flex: none; }
.brand-name {
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: 0.04em; font-size: 1.02rem; color: var(--bone);
}
.brand-loc { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; }

.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav a { font-size: 0.92rem; color: var(--muted); transition: color 0.2s; position: relative; }
.nav a:hover { color: var(--bone); }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.25s var(--ease);
}
.nav a:hover::after { width: 100%; }

.header-cta { margin-left: 0.5rem; }
.menu-toggle { display: none; background: none; border: 0; color: var(--bone); cursor: pointer; padding: 6px; margin-left: auto; }

/* ---------- MENU MOBILE ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(10,10,11,0.97); backdrop-filter: blur(8px);
  display: grid; place-items: center;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.mobile-menu a { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--bone); }
.mobile-menu .btn { font-size: 1.05rem; margin-top: 1rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 76px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; filter: grayscale(0.2) brightness(0.6) contrast(1.05); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.2) 35%, rgba(10,10,11,0.85) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.4) 60%, rgba(10,10,11,0.2) 100%);
}
.hero-glow {
  position: absolute; width: 60vw; height: 60vw; max-width: 820px; max-height: 820px;
  right: -10%; top: 10%;
  background: radial-gradient(circle, rgba(201,163,91,0.16) 0%, rgba(201,163,91,0) 65%);
  pointer-events: none;
}
.hero-content { position: relative; padding-block: 4rem; max-width: 800px; }
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.95; letter-spacing: -0.035em;
  margin: 0.4rem 0 1.6rem;
}
.hero-sub { font-size: clamp(1.05rem, 2.3vw, 1.4rem); color: #c9c9cf; max-width: 56ch; }
.hero-sub strong { color: var(--bone); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.8rem; margin-top: 2.6rem;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.04em;
  color: var(--muted); text-transform: uppercase;
}
.hero-trust li { position: relative; padding-left: 1.1rem; }
.hero-trust li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid var(--line); border-radius: 100px; display: grid; place-items: start center; padding-top: 7px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--gold); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(10px); } 100% { opacity: 0; } }

/* ---------- PROBLEMA ---------- */
.section--problem { background: var(--ink); text-align: center; }
.section--problem .eyebrow, .section--problem .section-title { display: block; }
.problem-lines { margin: 2.8rem auto 0; max-width: 720px; display: flex; flex-direction: column; gap: 1.1rem; }
.problem-lines p { font-size: clamp(1.1rem, 2.6vw, 1.5rem); color: #b8b8bf; font-weight: 500; }
.problem-close {
  margin-top: 3rem; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.9rem); color: var(--bone); line-height: 1.25;
}

/* ---------- A VIRADA ---------- */
.section--turn { background: var(--graphite); }
.turn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.turn-media { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.turn-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(0.25) contrast(1.05) brightness(0.92); }
.media-tag {
  position: absolute; left: 1rem; bottom: 1rem;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.15em;
  color: var(--bone); background: rgba(10,10,11,0.7); backdrop-filter: blur(6px);
  padding: 0.4rem 0.7rem; border-radius: 100px; border: 1px solid var(--line);
}

/* ---------- A BASE / BENTO ---------- */
.section--base { background: var(--ink); }
.base-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; grid-auto-flow: dense; gap: 14px;
}
.bento {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line); background: var(--graphite-2);
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
}
.bento img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  filter: grayscale(0.3) brightness(0.78) contrast(1.05);
  transition: transform 0.6s var(--ease), filter 0.5s;
}
.bento::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,11,0) 30%, rgba(10,10,11,0.88) 100%);
}
.bento:hover img { transform: scale(1.05); filter: grayscale(0.05) brightness(0.85) contrast(1.05); }
.bento--tall { grid-row: span 2; }
.bento--wide { grid-column: span 2; }
.bento-body { padding: 1.3rem; }
.bento-kicker {
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em;
  color: var(--gold); display: block; margin-bottom: 0.4rem;
}
.bento h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
.bento p { font-size: 0.92rem; color: var(--muted); margin-top: 0.3rem; max-width: 30ch; }

/* cards de spec (sem foto) */
.bento--spec {
  background: var(--graphite-2); justify-content: flex-start;
  padding: 1.3rem; display: flex;
}
.bento--spec::after { display: none; }
.bento--spec .bento-kicker { margin-top: auto; }
.spec-ic { width: 30px; height: 30px; color: var(--gold); margin-bottom: auto; }

.base-close {
  margin-top: 2.6rem; text-align: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

/* ---------- REDE DE APOIO ---------- */
.section--support { background: var(--graphite); }
.section--support .ic--gold { width: 1em; height: 1em; }
.support-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-top: 3rem; counter-reset: step;
}
.support-steps li {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--graphite-2); padding: 1.6rem;
  position: relative; overflow: hidden;
}
.support-steps li::before {
  content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.step-no { font-family: var(--font-mono); font-size: 0.85rem; color: var(--gold); letter-spacing: 0.1em; }
.support-steps h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin: 0.5rem 0 0.4rem; }
.support-steps p { color: var(--muted); font-size: 0.96rem; }
.disclaimer { font-size: 0.82rem; color: var(--muted-2); margin-top: 2rem; max-width: 60ch; line-height: 1.5; }

/* ---------- BENEFÍCIOS ---------- */
.section--benefits { background: var(--ink); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit-card {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--graphite-2); padding: 1.8rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}
.benefit-card:hover { border-color: var(--gold); transform: translateY(-4px); background: var(--graphite-3); }
.benefit-ic { width: 36px; height: 36px; color: var(--gold); margin-bottom: 1rem; }
.benefit-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.benefit-card p { color: var(--muted); font-size: 0.95rem; margin-top: 0.4rem; }
.benefit-card .muted { display: block; font-size: 0.8rem; margin-top: 0.3rem; }
.benefit-anchor {
  margin-top: 2.6rem; text-align: center; font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--muted);
}
.benefit-anchor strong { color: var(--bone); font-weight: 700; }

/* ---------- COMUNIDADE (3 canais) ---------- */
.section--community { background: var(--graphite); }
.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.5vw, 1.8rem); }
.channel { display: flex; flex-direction: column; gap: 1rem; }
.channel-head { display: flex; align-items: center; justify-content: space-between; }
.channel-label { display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone); }
.channel-label .ic { width: 1.1em; height: 1.1em; color: var(--gold); }
.channel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted-2); flex: none; }
.channel-dot--wpp { background: #25D366; }
.channel-dot--live { background: #ff7a1a; animation: pulse-live 2s infinite; }
@keyframes pulse-live { 0% { box-shadow: 0 0 0 0 rgba(255,122,26,0.5); } 70% { box-shadow: 0 0 0 7px rgba(255,122,26,0); } 100% { box-shadow: 0 0 0 0 rgba(255,122,26,0); } }

.phone { position: relative; aspect-ratio: 9 / 16; border-radius: 26px; border: 1px solid var(--line); background: #0c0c0e; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.85); }
.phone::before { content: ''; position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 64px; height: 5px; border-radius: 5px; background: rgba(255,255,255,0.14); z-index: 3; }
.phone > img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.channel figcaption { font-size: 0.9rem; color: var(--muted); text-align: center; }
.channel figcaption strong { color: var(--gold); font-weight: 600; }

/* WhatsApp mock (sem dados pessoais) */
.wa { height: 100%; background: #0b141a; display: flex; flex-direction: column; padding-top: 20px; }
.wa-top { display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.wa-logo { width: 34px; height: 34px; border-radius: 8px; flex: none; }
.wa-top strong { display: block; font-family: var(--font-body); font-size: 0.8rem; color: #e9edef; line-height: 1.2; }
.wa-top span { font-size: 0.66rem; color: #8696a0; }
.wa-list { flex: 1; overflow: hidden; }
.wa-list li { display: flex; align-items: center; gap: 0.55rem; padding: 0.42rem 0.8rem; }
.wa-ic { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center; background: rgba(201,163,91,0.12); }
.wa-ic .ic { width: 15px; height: 15px; color: var(--gold); }
.wa-list strong { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.76rem; color: #e9edef; line-height: 1.25; }
.wa-list span { font-size: 0.64rem; color: #8696a0; }
.wa-foot { margin-top: auto; margin-bottom: 0.8rem; align-self: center; background: #1f6b3b; color: #eafff0; font-size: 0.72rem; font-weight: 600; padding: 0.5rem 1.1rem; border-radius: 100px; }

/* ---------- PROVA SOCIAL ---------- */
.section--proof { background: var(--ink); text-align: center; }
.section--proof .section-head { margin-inline: auto; }
.stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  border-block: 1px solid var(--line); padding-block: 2.4rem; margin-bottom: 3.5rem;
}
.stat { display: flex; flex-direction: column; gap: 0.4rem; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--gold); line-height: 1; }
.stat-num--text { font-size: clamp(1.5rem, 4vw, 2.4rem); }
.stat-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; text-align: left; }
.testimonial { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--graphite-2); padding: 1.8rem; display: flex; flex-direction: column; gap: 1.4rem; }
.testimonial blockquote { font-size: 1.05rem; line-height: 1.5; color: var(--bone); }
.testimonial figcaption { display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; color: var(--muted); margin-top: auto; }
.testimonial figcaption img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; filter: grayscale(0.3); }
.testimonial figcaption strong { color: var(--bone); }

/* ---------- OFERTA ---------- */
.section--offer { background: var(--graphite); text-align: center; }
.section--offer .section-head { margin-inline: auto; }
.offer-card {
  max-width: 560px; margin-inline: auto;
  background: linear-gradient(180deg, var(--graphite-3), var(--graphite-2));
  border: 1px solid var(--gold); border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 30px 80px -40px rgba(201,163,91,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
  text-align: left;
}
.offer-price { display: flex; align-items: baseline; justify-content: center; gap: 0.15rem; margin-bottom: 2rem; color: var(--bone); }
.offer-currency { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; }
.offer-value { font-family: var(--font-display); font-weight: 900; font-size: clamp(3.4rem, 9vw, 4.6rem); line-height: 1; letter-spacing: -0.03em; }
.offer-cents { font-size: 0.45em; }
.offer-period { font-family: var(--font-mono); color: var(--muted); font-size: 1rem; }
.offer-list { display: flex; flex-direction: column; gap: 0.95rem; margin-bottom: 2rem; }
.offer-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 1rem; color: #d7d7dc; }
.offer-list .ic { width: 1.25rem; height: 1.25rem; flex: none; margin-top: 0.15rem; }
.offer-note { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }
.ic--gold { color: var(--gold); }

/* ---------- FAQ ---------- */
.section--faq { background: var(--ink); }
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.4rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.02rem, 2.3vw, 1.2rem);
  color: var(--bone); transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-chev { width: 20px; height: 20px; flex: none; color: var(--gold); transform: rotate(90deg); transition: transform 0.3s var(--ease); }
.faq-item[open] .faq-chev { transform: rotate(-90deg); }
.faq-answer { padding: 0 0 1.5rem; }
.faq-answer p { color: var(--muted); max-width: 64ch; }
.faq-answer a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.faq-foot { margin-top: 2rem; color: var(--muted); }
.faq-foot a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- PARCEIROS ---------- */
.section--partners { background: linear-gradient(135deg, var(--graphite-3), var(--graphite)); border-block: 1px solid var(--line); }
.partners-inner { max-width: 760px; }
.partners-list { display: flex; flex-direction: column; gap: 0.8rem; margin: 1.8rem 0 2.2rem; }
.partners-list li { display: flex; align-items: center; gap: 0.7rem; color: #d7d7dc; }
.partners-list .ic { width: 1.2rem; height: 1.2rem; flex: none; }

/* ---------- FECHAMENTO ---------- */
.section--final { background: var(--ink); text-align: center; position: relative; overflow: hidden; padding-block: clamp(5rem, 13vw, 11rem); }
.final-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(48% 46% at 50% 38%, rgba(201,163,91,0.13), transparent 70%); }
.final-logo { width: 96px; height: auto; margin: 0 auto 1.6rem; display: block; }
.final-inner { position: relative; }
.final-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.4rem, 8vw, 5rem); letter-spacing: -0.03em; line-height: 1; }
.final-sub { color: var(--muted); font-size: clamp(1.05rem, 2.4vw, 1.3rem); margin: 1.2rem 0 2.4rem; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--graphite); border-top: 1px solid var(--line); padding-block: 3.5rem 2rem; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.footer-loc { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }
.footer-loc .ic { width: 1.1em; height: 1.1em; color: var(--gold); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-nav a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--bone); }
.footer-social { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-social a { display: flex; align-items: center; gap: 0.55rem; color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }
.footer-social .ic { width: 1.15em; height: 1.15em; }
.footer-bottom { padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.footer-copy { font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted-2); letter-spacing: 0.04em; }
.build { color: var(--gold); }

/* ---------- STICKY CTA (mobile) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; align-items: center; justify-content: center; gap: 0.4rem;
  background: var(--gold); color: #1a1206;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 1rem; box-shadow: 0 -8px 30px -12px rgba(0,0,0,0.7);
}
.sticky-cta strong { font-weight: 700; }

/* ---------- ÍCONES ---------- */
.ic { width: 1.1em; height: 1.1em; display: inline-block; vertical-align: middle; }

/* ---------- REVEAL (animação de entrada) ----------
   Só esconde quando o JS está ativo (classe .js no <html>).
   Sem JS, o conteúdo aparece normalmente — nunca fica invisível. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* =================================================================== */
/* RESPONSIVO                                                          */
/* =================================================================== */
@media (max-width: 980px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .turn-grid { grid-template-columns: 1fr; }
  .turn-media img { aspect-ratio: 16/10; }
  .base-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .bento--wide { grid-column: span 2; }
  .bento--tall { grid-row: span 1; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .support-steps { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  .base-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .bento--wide { grid-column: span 1; }
  .benefit-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .sticky-cta { display: flex; }
  .site-footer { padding-bottom: 6rem; }
  .footer-grid { flex-direction: column; }
}

/* Canais (comunidade): vira carrossel horizontal em telas estreitas */
@media (max-width: 820px) {
  .channels {
    display: flex; gap: 1rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: calc(-1 * var(--pad)); padding-inline: var(--pad);
    padding-bottom: 0.6rem; -webkit-overflow-scrolling: touch;
  }
  .channels::-webkit-scrollbar { height: 0; }
  .channel { flex: 0 0 78%; width: 78%; max-width: 320px; scroll-snap-align: center; }
}
@media (max-width: 520px) {
  .channel { flex-basis: 86%; width: 86%; }
}

/* ---------- ACESSIBILIDADE: movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
