/* =====================================================
   LUCRE COM DADOS — Main Page
   Azul #0f2d7a | Verde #6ab04c | Ciano #00b4d8
   ===================================================== */

:root {
  --azul:        #0f2d7a;
  --azul-medio:  #1a4db5;
  --azul-claro:  #2563eb;
  --verde:       #6ab04c;
  --verde-claro: #8dc55e;
  --ciano:       #00b4d8;
  --ciano-claro: #38d2ed;
  --vermelho:    #ef4444;
  --branco:      #ffffff;
  --off-white:   #f5f8ff;
  --cinza-claro: #f0f4ff;
  --texto:       #0d1b3e;
  --texto-sub:   #374151;
  --muted:       #6b7280;
  --borda:       rgba(15,45,122,0.1);

  --grad-hero: linear-gradient(150deg, #040d24 0%, #0a1f5c 50%, #073434 100%);
  --grad-nav:  linear-gradient(135deg, #0d2d6e 0%, #1148a8 60%, #0a6e6e 100%);
  --grad-azul: linear-gradient(135deg, #0f2d7a, #1a4db5);
  --grad-verde: linear-gradient(135deg, #4a8a2c, #6ab04c);
  --grad-ciano: linear-gradient(135deg, #0891b2, #00b4d8);

  --shadow-sm: 0 2px 8px rgba(15,45,122,0.07);
  --shadow-md: 0 8px 28px rgba(15,45,122,0.12);
  --shadow-lg: 0 20px 60px rgba(15,45,122,0.18);

  --radius:    14px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--texto); background: #fff;
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--texto-sub); line-height: 1.75; }

.container    { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px;  margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }


/* ───────────────────────────────────────────────────────
   LABELS / CHIPS
──────────────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px;
}
.chip-verde { background: rgba(106,176,76,0.1); color: #3d7a22; border: 1px solid rgba(106,176,76,0.3); }
.chip-azul  { background: rgba(15,45,122,0.07); color: var(--azul-medio); border: 1px solid rgba(15,45,122,0.18); }
.chip-ciano { background: rgba(0,180,216,0.08); color: #0891b2; border: 1px solid rgba(0,180,216,0.25); }
.chip-dot::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(1.6); }
}


/* ───────────────────────────────────────────────────────
   BOTÕES
──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 15px 30px; border-radius: 50px; border: 2px solid transparent;
  cursor: pointer; transition: all .25s ease; white-space: nowrap; line-height: 1;
}
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }

.btn-verde {
  background: var(--grad-verde); color: #fff;
  box-shadow: 0 6px 22px rgba(106,176,76,.4);
}
.btn-verde:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(106,176,76,.55); }

.btn-azul {
  background: var(--grad-azul); color: #fff;
  box-shadow: 0 6px 22px rgba(15,45,122,.3);
}
.btn-azul:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(15,45,122,.45); }

.btn-outline {
  background: transparent; color: var(--azul-medio);
  border-color: rgba(15,45,122,.25);
}
.btn-outline:hover { background: var(--cinza-claro); border-color: rgba(15,45,122,.4); }

.btn-outline-white {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.8); }

.btn-whatsapp {
  background: linear-gradient(135deg, #128c7e, #25d366); color: #fff;
  box-shadow: 0 6px 22px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

.btn svg { flex-shrink: 0; }


/* ───────────────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(15,45,122,.1);
  box-shadow: 0 2px 16px rgba(15,45,122,.08);
  transition: all .35s ease;
}
#navbar.scrolled {
  padding: 9px 0;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(15,45,122,.13);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--texto-sub); font-size: .87rem; font-weight: 600;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
  height: 2px; background: var(--verde); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s;
}
.nav-links a:hover { color: var(--azul); }
.nav-links a:hover::after { transform: scaleX(1); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--azul); border-radius: 2px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: 65px; left: 0; right: 0; bottom: 0;
  z-index: 999; background: #fff;
  border-top: 1px solid rgba(15,45,122,.08);
  box-shadow: 0 8px 32px rgba(15,45,122,.1);
  padding: 20px 24px; flex-direction: column; gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--texto-sub); font-size: 1rem; font-weight: 600;
  padding: 14px 0; border-bottom: 1px solid var(--borda); transition: color .2s;
}
.mobile-menu a:hover { color: var(--azul); }


/* ───────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────────── */
#hero {
  background: var(--grad-hero);
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 90px; position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,180,216,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow-a {
  position: absolute; top: -10%; right: -8%;
  width: 700px; height: 700px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(0,180,216,.08) 0%, transparent 65%);
}
.hero-glow-b {
  position: absolute; bottom: -15%; left: -5%;
  width: 520px; height: 520px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(106,176,76,.07) 0%, transparent 65%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.hero-text {}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--verde-claro); background: rgba(106,176,76,.1);
  border: 1px solid rgba(106,176,76,.3); padding: 7px 16px; border-radius: 50px;
  margin-bottom: 28px;
}
.hero-eyebrow span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--verde-claro);
  animation: pulse-dot 2.2s infinite;
}
.hero-title { color: #fff; margin-bottom: 26px; }
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #8dc55e, #38d2ed);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  color: rgba(255,255,255,.68); font-size: clamp(.95rem, 1.8vw, 1.1rem);
  max-width: 520px; margin-bottom: 40px; line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-size: 1.6rem; font-weight: 900; color: #fff; }
.stat-num span { font-size: 1rem; font-weight: 700; opacity: .7; }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }

/* Hero visual / card flutuante */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-wrap { position: relative; }
.hero-card {
  background: rgba(255,255,255,.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  padding: 36px; width: 340px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.05);
}
.hero-card-ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--grad-verde); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(106,176,76,.4);
}
.hero-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.hero-card p  { color: rgba(255,255,255,.58); font-size: .88rem; line-height: 1.6; }
.hero-card-divider {
  height: 1px; background: rgba(255,255,255,.08); margin: 24px 0;
}
.hero-card-row {
  display: flex; justify-content: space-between; align-items: center;
}
.hero-card-row span:first-child { color: rgba(255,255,255,.5); font-size: .8rem; }
.hero-card-row strong { color: var(--verde-claro); font-size: .9rem; }

/* Badge flutuante */
.hero-badge {
  position: absolute; bottom: -20px; left: -28px;
  background: #fff; border-radius: 12px; padding: 12px 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
  display: flex; align-items: center; gap: 10px;
}
.hero-badge-ico {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(239,68,68,.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.hero-badge-text strong {
  display: block; font-size: .78rem; font-weight: 800; color: var(--texto); line-height: 1.3;
}
.hero-badge-text span { font-size: .7rem; color: var(--muted); }

.hero-badge-2 {
  position: absolute; top: -18px; right: -24px;
  background: var(--grad-verde); border-radius: 12px; padding: 12px 18px;
  box-shadow: 0 12px 32px rgba(106,176,76,.35);
  display: flex; align-items: center; gap: 10px;
}
.hero-badge-2 strong { display: block; font-size: .78rem; font-weight: 800; color: #fff; line-height: 1.3; }
.hero-badge-2 span   { font-size: .7rem; color: rgba(255,255,255,.7); }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.35); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase;
  animation: bounce-down 2.5s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ───────────────────────────────────────────────────────
   BARRA DE PROVA
──────────────────────────────────────────────────────── */
#prova-barra {
  background: var(--cinza-claro);
  border-top: 1px solid var(--borda); border-bottom: 1px solid var(--borda);
  padding: 28px 0;
}
.prova-items {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 40px;
}
.prova-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: var(--muted); font-weight: 500;
}
.prova-item strong { color: var(--texto); font-weight: 700; }
.prova-item-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--borda); }


/* ───────────────────────────────────────────────────────
   SEÇÃO DOR
──────────────────────────────────────────────────────── */
#dor { background: #fff; }
.dor-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.dor-header .section-label { margin-bottom: 16px; }
.dor-header h2 { margin-bottom: 16px; }
.dor-intro {
  font-size: 1.05rem; color: var(--texto-sub); max-width: 580px; margin: 0 auto;
}

.dor-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 56px;
}
.dor-card {
  background: #fff; border: 1px solid var(--borda);
  border-radius: var(--radius); padding: 32px 28px;
  transition: all .3s ease;
  position: relative; overflow: hidden;
}
.dor-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--vermelho), rgba(239,68,68,.3));
  opacity: 0; transition: opacity .3s;
}
.dor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.dor-card:hover::before { opacity: 1; }

.dor-icon {
  font-size: 2rem; margin-bottom: 16px;
}
.dor-card h4 { font-size: .95rem; margin-bottom: 10px; color: var(--texto); }
.dor-card p  { font-size: .88rem; color: var(--muted); line-height: 1.7; }

.dor-alerta {
  background: linear-gradient(135deg, #fef2f2, #fff5f5);
  border: 1px solid rgba(239,68,68,.2);
  border-left: 4px solid var(--vermelho);
  border-radius: var(--radius); padding: 28px 36px;
  display: flex; align-items: flex-start; gap: 20px;
  max-width: 780px; margin: 0 auto;
}
.dor-alerta-ico { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.dor-alerta-text h4 { color: #991b1b; font-size: 1rem; margin-bottom: 8px; }
.dor-alerta-text p  { color: #b91c1c; font-size: .92rem; line-height: 1.7; margin: 0; }


/* ───────────────────────────────────────────────────────
   SEÇÃO O QUE É
──────────────────────────────────────────────────────── */
#oque-e { background: var(--cinza-claro); }
.oque-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.oque-visual {
  position: relative;
}
.oque-visual-bg {
  background: var(--grad-azul); border-radius: var(--radius-lg);
  aspect-ratio: 1; max-width: 420px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.oque-visual-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.oque-big-icon { font-size: 5rem; position: relative; z-index: 1; }
.oque-float-1 {
  position: absolute; top: 16px; right: -20px;
  background: #fff; border-radius: 12px; padding: 12px 16px;
  box-shadow: var(--shadow-md); font-size: .8rem; font-weight: 700; color: var(--texto);
  display: flex; align-items: center; gap: 8px;
}
.oque-float-2 {
  position: absolute; bottom: 20px; left: -20px;
  background: var(--grad-verde); border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(106,176,76,.35); font-size: .8rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 8px;
}

.oque-text .chip { margin-bottom: 20px; }
.oque-text h2   { margin-bottom: 20px; }
.oque-text .lead {
  font-size: 1.05rem; color: var(--texto-sub); margin-bottom: 28px; line-height: 1.8;
}
.oque-text p { margin-bottom: 20px; font-size: .95rem; }

.oque-pilares { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.pilar-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border-radius: var(--radius); padding: 16px 18px;
  border: 1px solid var(--borda); transition: box-shadow .25s;
}
.pilar-item:hover { box-shadow: var(--shadow-sm); }
.pilar-num {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: var(--grad-azul); color: #fff;
  font-size: .78rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.pilar-item h4 { font-size: .9rem; margin-bottom: 3px; }
.pilar-item p  { font-size: .82rem; color: var(--muted); margin: 0; line-height: 1.55; }


/* ───────────────────────────────────────────────────────
   BENEFÍCIOS
──────────────────────────────────────────────────────── */
#beneficios { background: #fff; }
.beneficios-header {
  text-align: center; max-width: 680px; margin: 0 auto 64px;
}
.beneficios-header .chip { margin-bottom: 16px; }
.beneficios-header h2   { margin-bottom: 16px; }

.beneficios-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 64px;
}
.beneficio-card {
  padding: 32px 28px; border-radius: var(--radius);
  border: 1px solid var(--borda); background: #fff;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.beneficio-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-verde); transform: scaleX(0); transition: transform .3s;
}
.beneficio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.beneficio-card:hover::after { transform: scaleX(1); }

.bene-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.bene-icon-azul  { background: rgba(15,45,122,.08); }
.bene-icon-verde { background: rgba(106,176,76,.1); }
.bene-icon-ciano { background: rgba(0,180,216,.08); }

.beneficio-card h3 { font-size: .97rem; margin-bottom: 10px; color: var(--texto); }
.beneficio-card p  { font-size: .87rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* Destaque central */
.beneficios-destaque {
  background: var(--grad-azul); border-radius: var(--radius-lg);
  padding: 56px; text-align: center; position: relative; overflow: hidden;
}
.beneficios-destaque::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.destaque-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.destaque-inner h3 {
  color: #fff; font-size: clamp(1.3rem, 2.5vw, 2rem);
  margin-bottom: 16px; line-height: 1.3;
}
.destaque-inner p { color: rgba(255,255,255,.68); font-size: 1rem; margin-bottom: 32px; }
.destaque-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }


/* ───────────────────────────────────────────────────────
   PARA QUEM É
──────────────────────────────────────────────────────── */
#para-quem { background: var(--cinza-claro); }
.para-quem-header {
  text-align: center; max-width: 620px; margin: 0 auto 56px;
}
.para-quem-header .chip { margin-bottom: 16px; }
.para-quem-header h2   { margin-bottom: 14px; }

.para-quem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px;
}
.pq-card {
  background: #fff; border-radius: var(--radius); padding: 28px 22px;
  border: 1px solid var(--borda); text-align: center; transition: all .3s;
}
.pq-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(106,176,76,.35); }
.pq-emoji { font-size: 2rem; margin-bottom: 12px; }
.pq-card h4 { font-size: .88rem; margin-bottom: 6px; color: var(--texto); }
.pq-card p  { font-size: .8rem; color: var(--muted); line-height: 1.6; margin: 0; }

.para-quem-nao {
  max-width: 680px; margin: 0 auto;
  background: rgba(15,45,122,.04); border: 1px solid rgba(15,45,122,.12);
  border-radius: var(--radius); padding: 28px 32px;
  display: flex; align-items: flex-start; gap: 16px;
}
.para-quem-nao-ico { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.para-quem-nao-text p { font-size: .9rem; color: var(--texto-sub); margin: 0; }
.para-quem-nao-text strong { color: var(--azul); }


/* ───────────────────────────────────────────────────────
   COMO FUNCIONA
──────────────────────────────────────────────────────── */
#como-funciona { background: #fff; }
.como-header {
  text-align: center; max-width: 640px; margin: 0 auto 64px;
}
.como-header .chip { margin-bottom: 16px; }
.como-header h2   { margin-bottom: 14px; }

.como-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative;
}
.como-steps::before {
  content: ''; position: absolute; top: 40px; left: 12%; right: 12%;
  height: 2px; background: linear-gradient(90deg, var(--borda), var(--verde), var(--borda));
  z-index: 0;
}
.como-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; background: #fff;
  border: 3px solid var(--borda); transition: all .3s;
  position: relative;
}
.step-num.ativo {
  background: var(--grad-verde); color: #fff;
  border-color: transparent; box-shadow: 0 8px 24px rgba(106,176,76,.4);
}
.como-step h4 { font-size: .92rem; margin-bottom: 8px; color: var(--texto); }
.como-step p  { font-size: .83rem; color: var(--muted); line-height: 1.65; }


/* ───────────────────────────────────────────────────────
   CTA FINAL
──────────────────────────────────────────────────────── */
#cta-final {
  background: var(--grad-hero); position: relative; overflow: hidden;
  padding: 100px 0;
}
#cta-final .hero-grid { opacity: .6; }
.cta-final-inner {
  position: relative; z-index: 2; text-align: center;
  max-width: 680px; margin: 0 auto;
}
.cta-final-inner .chip { margin-bottom: 24px; }
.cta-final-inner h2 { color: #fff; margin-bottom: 18px; }
.cta-final-inner p  { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 40px; }
.cta-final-actions  { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.cta-contato-form {
  margin-top: 56px; background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 40px;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.cta-contato-form h4 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.cta-contato-form > p { color: rgba(255,255,255,.55); font-size: .85rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-input {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: .9rem; font-family: inherit; outline: none; transition: border .2s;
}
.form-input::placeholder { color: rgba(255,255,255,.38); }
.form-input:focus { border-color: rgba(106,176,76,.6); }
.form-nota { font-size: .72rem; color: rgba(255,255,255,.35); margin-top: 12px; text-align: center; }


/* ───────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────── */
footer {
  background: #04091f; border-top: 1px solid rgba(255,255,255,.06); padding: 64px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand img { height: 38px; margin-bottom: 18px; }
.footer-brand p   { font-size: .85rem; color: rgba(255,255,255,.42); line-height: 1.75; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.06); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.08);
  transition: all .2s;
}
.social-btn:hover { background: rgba(255,255,255,.12); color: #fff; }

.footer-col h5 {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: .85rem; color: rgba(255,255,255,.52); transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.9); }

.footer-bottom {
  padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .78rem; color: rgba(255,255,255,.28);
}


/* ───────────────────────────────────────────────────────
   UTILIDADES
──────────────────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
}

#scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-azul); color: #fff; border: none;
  font-size: 1rem; cursor: pointer; opacity: 0; pointer-events: none;
  box-shadow: var(--shadow-md); transition: all .3s;
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-3px); }

#toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #1e293b; color: #fff; padding: 12px 24px; border-radius: 50px;
  font-size: .87rem; font-weight: 600; opacity: 0; pointer-events: none;
  transition: all .35s; z-index: 9999; white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
#toast.success { background: linear-gradient(135deg, #166534, #16a34a); }
#toast.error   { background: linear-gradient(135deg, #991b1b, #dc2626); }

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }


/* ───────────────────────────────────────────────────────
   RESPONSIVO
──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual   { order: -1; }
  .hero-card     { width: 300px; }
  .hero-text     { text-align: center; }
  .hero-actions  { justify-content: center; }
  .hero-stats    { justify-content: center; }
  .hero-sub      { margin-left: auto; margin-right: auto; }
  .oque-inner    { grid-template-columns: 1fr; gap: 48px; }
  .para-quem-grid { grid-template-columns: repeat(2, 1fr); }
  .como-steps    { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .como-steps::before { display: none; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .dor-grid        { grid-template-columns: 1fr; }
  .beneficios-grid { grid-template-columns: 1fr; }
  .para-quem-grid  { grid-template-columns: 1fr 1fr; }
  .como-steps      { grid-template-columns: 1fr; gap: 32px; }
  .form-row        { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .beneficios-destaque { padding: 40px 28px; }
  .hero-badge, .hero-badge-2 { display: none; }
  .dor-alerta { flex-direction: column; gap: 12px; }
  .para-quem-nao  { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
  .para-quem-grid { grid-template-columns: 1fr; }
  .hero-actions   { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .cta-final-actions { flex-direction: column; align-items: stretch; }
}
