/* ══════════════════════════════════════════
   DESIGN SYSTEM — High Conversion v2
   Aesthetic: Dark luxury editorial with sharp green accents
   ══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Color palette */
  --green:       #22c55e;
  --green-dark:  #16a34a;
  --green-glow:  rgba(34,197,94,0.15);
  --red:         #f87171;
  --red-glow:    rgba(248,113,113,0.12);
  --yellow:      #fbbf24;
  --yellow-glow: rgba(251,191,36,0.12);
  --blue:        #60a5fa;
  --blue-glow:   rgba(96,165,250,0.12);
  --purple:      #a78bfa;
  --purple-glow: rgba(167,139,250,0.12);

  /* Surfaces */
  --bg:          #080810;
  --bg-2:        #0d0d18;
  --surface:     #12121f;
  --surface-2:   #1a1a2e;
  --border:      rgba(255,255,255,0.07);
  --border-h:    rgba(255,255,255,0.14);

  /* Text */
  --text:        #e2e2f0;
  --muted:       #7878a0;
  --white:       #ffffff;

  /* Spacing */
  --r:     16px;
  --r-lg:  24px;
  --sec:   108px;

  /* Animation */
  --ease: cubic-bezier(0.4,0,0.2,1);
  --t: 0.3s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Type */
h1,h2,h3,h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
em { font-style: italic; }
strong { color: var(--white); font-weight: 600; }
address { font-style: normal; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ══ UTILITY ══ */
.c-green  { color: var(--green); }
.c-red    { color: var(--red); }
.c-yellow { color: var(--yellow); }
.c-blue   { color: var(--blue); }
.c-purple { color: var(--purple); }

.sec-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.sec-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 56px;
}
.cta-micro {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

/* ══ EYEBROWS ══ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow-green  { background: var(--green-glow);  color: var(--green);  border: 1px solid rgba(34,197,94,0.25); }
.eyebrow-red    { background: var(--red-glow);    color: var(--red);    border: 1px solid rgba(248,113,113,0.25); }
.eyebrow-yellow { background: var(--yellow-glow); color: var(--yellow); border: 1px solid rgba(251,191,36,0.25); }
.eyebrow-blue   { background: var(--blue-glow);   color: var(--blue);   border: 1px solid rgba(96,165,250,0.25); }
.eyebrow-purple { background: var(--purple-glow); color: var(--purple); border: 1px solid rgba(167,139,250,0.25); }

/* ══ BUTTONS ══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #050a05;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34,197,94,0.3);
}
.btn-primary:active { transform: translateY(0); }

.btn-cookie {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: #050a05;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t);
}
.btn-cookie:hover { background: #16a34a; }

/* ══ URGENCY BAR ══ */
.urgency-bar {
  background: linear-gradient(90deg, #0d0d18, #0f1a0f, #0d0d18);
  border-bottom: 1px solid rgba(34,197,94,0.2);
  padding: 10px 20px;
  position: relative;
  z-index: 200;
  transition: transform 0.3s ease;
}
.urgency-bar.hidden { display: none; }
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.urgency-inner p {
  font-size: 0.82rem;
  color: var(--text);
  text-align: center;
}
.urgency-inner strong { color: var(--green); }
.u-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.25} }
.u-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 4px 8px;
  margin-left: auto;
  flex-shrink: 0;
  transition: color 0.2s;
}
.u-close:hover { color: var(--white); }

/* ══ COOKIE BANNER ══ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(12,12,24,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(24px);
  padding: 14px 24px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.85rem; color: var(--muted); flex: 1; min-width: 200px; }
.cookie-inner a { color: var(--green); }

/* ══ HEADER ══ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.header.scrolled {
  background: rgba(8,8,16,0.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--green);
  color: #050a05;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-txt span {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.logo-txt small { font-size: 0.65rem; color: var(--muted); display: block; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a:not(.btn-nav-cta) {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--t);
}
.nav > a:not(.btn-nav-cta):hover { color: var(--white); background: rgba(255,255,255,0.05); }
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  transition: all var(--t);
  margin-left: 8px;
}
.btn-nav-cta:hover { background: var(--green); color: #050a05; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); }

/* ══ HERO ══ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}
.g1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #22c55e, transparent 70%);
  top: -200px; right: -150px;
  animation: gFloat 9s ease-in-out infinite;
}
.g2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  bottom: -100px; left: -80px;
  animation: gFloat 12s ease-in-out infinite reverse;
}
@keyframes gFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-25px) scale(1.06); }
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-inner { position: relative; z-index: 1; }

/* Trust strip */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 28px;
}
.trust-avs { display: flex; }
.ta {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.ta:first-child { margin-left: 0; }
.ta-more { background: var(--surface-2); font-size: 0.58rem; font-weight: 700; color: var(--muted); }
.trust-stars { color: #fbbf24; font-size: 0.75rem; letter-spacing: 1px; }
.hero-trust span { font-size: 0.78rem; color: var(--muted); }

/* Hero headline */
.hero-h1 {
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  color: var(--white);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-h1 em { color: var(--muted); font-style: italic; }
.hero-h1 mark {
  background: linear-gradient(135deg, var(--green), #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--white); }

/* Hero CTAs */
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: #050a05;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: 100px;
  transition: all var(--t) var(--ease);
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: ctaPulse 3s infinite;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
  50% { box-shadow: 0 0 0 14px rgba(34,197,94,0); }
}
.btn-hero-primary:hover { background: #16a34a; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(34,197,94,0.35) !important; }

.btn-hero-sec {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--t);
  padding: 4px 0;
  border-bottom: 1px dashed var(--border);
}
.btn-hero-sec:hover { color: var(--white); border-color: var(--border-h); }

.hero-micro {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 56px;
}
.hero-micro svg { color: var(--green); flex-shrink: 0; }

/* Metrics */
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.metric strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.metric sup { font-size: 1.1rem; vertical-align: super; color: var(--green); }
.metric p { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.m-sep { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ══ TICKER ══ */
.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}
.ticker-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-left: 28px;
  flex-shrink: 0;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-inner {
  display: flex;
  gap: 52px;
  width: max-content;
  animation: tickerScroll 22s linear infinite;
}
.ticker-inner span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  cursor: default;
  transition: color 0.2s;
}
.ticker-inner span:hover { color: var(--white); }
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══ SECTIONS ══ */
section { padding: var(--sec) 0; }

/* ══ PROBLEMA ══ */
.sec-problema { background: var(--bg); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.pain-wide { grid-column: span 2; }

.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--t) var(--ease);
}
.pain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(248,113,113,0.04), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}
.pain-card:hover { transform: translateY(-4px); border-color: rgba(248,113,113,0.25); }
.pain-card:hover::before { opacity: 1; }

.pain-icon-bg {
  width: 48px; height: 48px;
  background: var(--red-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.pain-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.pain-stat {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--red);
  background: var(--red-glow);
  border: 1px solid rgba(248,113,113,0.2);
  padding: 6px 12px;
  border-radius: 8px;
}
.pain-stat strong { color: var(--red); }

.pain-bridge {
  text-align: center;
  padding: 36px;
  background: var(--surface);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(34,197,94,0.04), var(--surface));
}
.pain-bridge p { color: var(--muted); margin-bottom: 20px; font-size: 1.05rem; }
.pain-bridge strong { color: var(--white); }

/* ══ SOLUÇÃO ══ */
.sec-solucao { background: var(--bg-2); }

.compare-box {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 64px;
}
.compare-col { padding: 36px; }
.compare-col.bad { background: rgba(248,113,113,0.04); }
.compare-col.good { background: rgba(34,197,94,0.04); }
.compare-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.compare-head span { font-size: 1.2rem; }
.compare-head h3 {
  font-size: 1.1rem;
  color: var(--white);
}
.compare-vs {
  width: 1px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  writing-mode: vertical-rl;
}
.compare-vs::before {
  content: 'VS';
  position: absolute;
  background: var(--bg-2);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  writing-mode: horizontal-tb;
  padding: 4px 8px;
}
.compare-col ul { list-style: none; }
.compare-col li {
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.compare-col li:last-child { border-bottom: none; }
.compare-col.bad li::before { content: '✗'; color: var(--red); flex-shrink: 0; }
.compare-col.good li::before { content: '✓'; color: var(--green); flex-shrink: 0; }
.compare-col.good li strong { color: var(--text); font-weight: 500; }

/* Steps */
.steps-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
}
.steps-eyebrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 40px;
  text-align: center;
}
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.step-card {
  text-align: center;
  padding: 28px 20px;
  position: relative;
  transition: var(--t);
}
.step-card:hover { transform: translateY(-4px); }
.step-n {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  background: var(--green);
  color: #050a05;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-ic { font-size: 2.2rem; margin-bottom: 14px; }
.step-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.step-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }
.step-time {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--green);
  background: var(--green-glow);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
}
.step-arr {
  font-size: 1.5rem;
  color: var(--green);
  opacity: 0.5;
  padding: 0 8px;
  margin-top: -20px;
}

/* ══ PORTFOLIO ══ */
.sec-portfolio { background: var(--bg); }
.pf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pf-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  transition: all var(--t) var(--ease);
}
.pf-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167,139,250,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.pf-thumb { position: relative; height: 180px; background: linear-gradient(135deg, var(--ca), var(--cb)); overflow: hidden; }
.pf-browser {
  background: rgba(0,0,0,0.7);
  height: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
}
.pf-dots { display: flex; gap: 4px; }
.pf-dots i { display: block; width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.15); font-style: normal; }
.pf-url { font-size: 0.6rem; color: rgba(255,255,255,0.3); margin-left: 6px; }
.pf-screen { padding: 8px; }
.pf-mock {
  border-radius: 4px;
  padding: 14px 12px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pm-l { height: 6px; background: rgba(255,255,255,0.25); border-radius: 3px; }
.pl-h { width: 72%; height: 8px; background: rgba(255,255,255,0.45); }
.pl-s { width: 52%; }
.pm-btn { height: 16px; width: 44%; border-radius: 100px; background: #22c55e; margin-top: 4px; }
.pf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.pf-overlay span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 8px 20px;
  border-radius: 100px;
  color: #050a05;
}
.pf-card:hover .pf-overlay { opacity: 1; }
.pf-info { padding: 16px; }
.pf-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 5px;
}
.pf-info h3 { font-size: 0.92rem; color: var(--white); margin-bottom: 4px; }
.pf-result { font-size: 0.78rem; color: var(--green); }

/* ══ DEPOIMENTOS ══ */
.sec-depo { background: var(--bg-2); }
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.depo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  position: relative;
  transition: all var(--t);
}
.depo-card:hover { transform: translateY(-3px); }
.depo-featured {
  border-color: rgba(34,197,94,0.25);
  background: linear-gradient(135deg, rgba(34,197,94,0.05), var(--surface));
}
.depo-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--yellow-glow);
  color: var(--yellow);
  border: 1px solid rgba(251,191,36,0.25);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.depo-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.depo-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.depo-top strong { display: block; font-size: 0.88rem; color: var(--white); font-family: 'Bricolage Grotesque', sans-serif; }
.depo-top span { display: block; font-size: 0.75rem; color: var(--muted); }
.depo-card > p { font-size: 0.88rem; color: var(--muted); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.depo-result { font-size: 0.75rem; color: var(--green); margin-bottom: 10px; }
.depo-stars { color: #fbbf24; font-size: 0.85rem; letter-spacing: 2px; }

/* ══ SOBRE ══ */
.sec-sobre { background: var(--bg); }
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.sobre-vis { position: relative; display: flex; justify-content: center; }
.sobre-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34,197,94,0.18), transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(48px);
}
.sobre-circle {
  width: 240px; height: 240px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(34,197,94,0.3);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.sobre-b1, .sobre-b2 {
  position: absolute;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.sobre-b1 { bottom: 20px; right: -10px; }
.sobre-b2 { top: 20px; right: -16px; }
.sobre-b1 strong, .sobre-b2 strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
}
.sobre-b1 span, .sobre-b2 span { font-size: 0.72rem; color: var(--muted); }

.sobre-content p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; line-height: 1.75; }
.sobre-quote {
  border-left: 3px solid var(--green);
  padding: 16px 20px;
  margin: 28px 0;
  background: var(--surface);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 0.92rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
}
.sobre-quote cite { display: block; margin-top: 8px; font-size: 0.78rem; font-style: normal; color: var(--muted); }
.skill-pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0 28px; }
.skill-pills span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-glow);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ══ FAQ ══ */
.sec-faq { background: var(--bg-2); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; background: var(--surface); transition: border-color var(--t); }
.faq-item.open { border-color: rgba(96,165,250,0.3); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-q span { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); }
.faq-arr { color: var(--muted); flex-shrink: 0; transition: transform var(--t); }
.faq-item.open .faq-arr { transform: rotate(180deg); color: var(--blue); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ══ CTA FINAL ══ */
.sec-cta-final {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0;
}
.cta-final-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.o1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.1), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.o2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.1), transparent 70%);
  top: 10%; right: 10%;
}
.cta-final-inner { position: relative; z-index: 1; }
.cta-scarcity {
  display: inline-block;
  background: var(--yellow-glow);
  border: 1px solid rgba(251,191,36,0.3);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.cta-scarcity strong { color: var(--yellow); }
.sec-cta-final h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 16px;
}
.sec-cta-final h2 span { color: var(--green); }
.sec-cta-final > .cta-final-inner > p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.btn-mega {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--green);
  color: #050a05;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 22px 48px;
  border-radius: 100px;
  transition: all var(--t) var(--ease);
  box-shadow: 0 0 50px rgba(34,197,94,0.2);
  animation: ctaPulse 3s infinite;
}
.btn-mega:hover { transform: translateY(-4px); box-shadow: 0 16px 60px rgba(34,197,94,0.4) !important; background: #16a34a; }
.cta-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 32px;
  list-style: none;
}
.cta-checks li { font-size: 0.82rem; color: var(--muted); }
.cta-checks li::first-letter { color: var(--green); }

/* ══ LOCALIZAÇÃO ══ */
.sec-local { background: var(--bg-2); }
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.local-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 12px;
  transition: var(--t);
}
.local-card:hover { border-color: var(--border-h); }
.li-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.local-card strong { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.92rem; color: var(--white); margin-bottom: 4px; }
.local-card p, .local-card address { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }
.local-card a { color: var(--green); font-size: 0.88rem; }
.coverage-box {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 24px;
}
.coverage-box strong { display: block; font-size: 0.82rem; color: var(--white); margin-bottom: 12px; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.coverage-tags span {
  font-size: 0.72rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ══ FOOTER ══ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.85rem; color: var(--muted); margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.6;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green); }
.footer-seo { font-size: 0.78rem !important; line-height: 1.7 !important; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }

/* ══ WHATSAPP FLOAT ══ */
.wpp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9000;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--t);
}
.wpp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.wpp-float:hover .wpp-label { opacity: 1; transform: translateX(0); }
.wpp-ripple {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 3px solid #25d366;
  animation: ripple 2.2s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wpp-label {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(10,10,16,0.95);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--t);
  backdrop-filter: blur(12px);
}

/* ══ EXIT MODAL ══ */
.exit-modal { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.exit-modal[hidden] { display: none; }
.exit-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.75); backdrop-filter: blur(8px); }
.exit-box {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  animation: exitPop 0.3s var(--ease);
}
@keyframes exitPop { from{transform:scale(0.9);opacity:0} to{transform:scale(1);opacity:1} }
.exit-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--t);
}
.exit-close:hover { background: var(--surface-2); color: var(--white); }
.exit-emoji { font-size: 2.5rem; margin-bottom: 16px; }
.exit-box h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 16px; }
.exit-box p { font-size: 0.9rem; color: var(--muted); margin-bottom: 12px; line-height: 1.65; }
.exit-box p strong { color: var(--white); }
.exit-dismiss {
  display: block;
  margin-top: 16px;
  width: 100%;
  background: none;
  border: none;
  font-size: 0.75rem;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.exit-dismiss:hover { color: var(--red); }

/* ══ SCROLL ANIMATIONS ══ */
[data-anim] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
[data-anim="right"] { transform: translateX(-28px); }
[data-anim="left"]  { transform: translateX(28px); }
[data-anim].visible { opacity: 1; transform: translate(0,0); }

/* ══ RESPONSIVE ══ */
@media(max-width:1100px) {
  .pf-grid { grid-template-columns: repeat(2,1fr); }
  .pain-grid { grid-template-columns: repeat(2,1fr); }
  .pain-wide { grid-column: span 2; }
}

@media(max-width:900px) {
  :root { --sec: 80px; }
  .compare-box { grid-template-columns: 1fr; }
  .compare-vs { display: none; }
  .depo-grid { grid-template-columns: 1fr; }
  .sobre-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .sobre-vis { justify-content: center; }
  .sobre-b1, .sobre-b2 { display: none; }
  .skill-pills { justify-content: center; }
  .sobre-quote { text-align: left; }
  .local-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .step-arr { transform: rotate(90deg); text-align: center; margin: -16px 0; }
  .steps-wrap { padding: 32px 24px; }
}

@media(max-width:768px) {
  .nav {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(8,8,16,0.98);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav > a:not(.btn-nav-cta) { padding: 12px 16px; width: 100%; }
  .btn-nav-cta { margin: 8px 0 0; justify-content: center; }
  .hamburger { display: flex; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-wide { grid-column: span 1; }
  .pf-grid { grid-template-columns: 1fr; }
  .hero-metrics { gap: 20px; flex-wrap: wrap; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media(max-width:520px) {
  .hero-ctas { flex-direction: column; }
  .btn-hero-primary { width: 100%; justify-content: center; }
  .hero-h1 { font-size: 2.4rem; }
  .sec-cta-final h2 { font-size: 1.9rem; }
  .btn-mega { padding: 18px 32px; font-size: 1rem; }
}
