
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --verde:    #1A3D2B;
  --cobre:    #B5651D;
  --carvao:   #1C1C1E;
  --offwhite: #F5F4F0;
  --branco:   #FFFFFF;
  --cinza:    #9C9C9E;
  --verde-m:  #2D6A4F;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--carvao);
  background: var(--offwhite);
  line-height: 1.6;
}

/* ── HEADER ─────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--branco);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  height: 72px;
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--verde);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span { color: var(--cobre); }

nav { display: flex; align-items: center; gap: 32px; }

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--carvao);
  text-decoration: none;
  transition: color .2s;
}

nav a:hover { color: var(--verde); }

.btn-header {
  background: var(--cobre);
  color: var(--branco) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  transition: background .2s;
}

.btn-header:hover { background: #8B4A14 !important; }

/* ── BOTÕES ─────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--cobre);
  color: var(--branco);
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, transform .1s;
}

.btn-primary:hover { background: #8B4A14; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--branco);
  color: var(--branco);
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
}

.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--verde) 60%, #0F251A 100%);
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?w=800&q=80') center/cover;
  opacity: 0.15;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cobre);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--branco);
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.50);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-trust::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--cobre);
}

/* ── SEÇÕES GERAIS ──────────────────────────── */
section { padding: 96px 24px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cobre);
  display: block;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--verde);
  line-height: 1.2;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 17px;
  color: var(--cinza);
  max-width: 600px;
  margin-bottom: 56px;
}

/* ── PROBLEMA ───────────────────────────────── */
.problema { background: var(--offwhite); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--branco);
  border-radius: 10px;
  padding: 32px;
  border: 1px solid #E0DDD8;
  border-left: 4px solid var(--verde);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow .2s, transform .2s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.card-icon { font-size: 32px; margin-bottom: 16px; }

.card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 12px;
}

.card p { font-size: 14px; color: var(--carvao); opacity: .75; line-height: 1.7; }

.faixa-alerta {
  background: var(--verde);
  padding: 24px;
  margin-top: 48px;
  border-radius: 8px;
  text-align: center;
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  color: var(--branco);
}

/* ── GUIA / AUTORIDADE ──────────────────────── */
.guia { background: var(--branco); }

.guia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.guia-foto {
  background: var(--verde);
  border-radius: 12px;
  padding: 48px 40px;
  color: var(--branco);
}

.guia-foto h2 { color: var(--branco); margin-bottom: 20px; }

.guia-foto p {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
}

.numeros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.numero-item { border-top: 2px solid var(--cobre); padding-top: 12px; }

.numero-item strong {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: var(--cobre);
  line-height: 1;
}

.numero-item span {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  display: block;
}

/* ── PLANO 3 PASSOS ─────────────────────────── */
.plano { background: var(--verde); }

.plano h2 { color: var(--branco); }
.plano .subtitle { color: rgba(255,255,255,.65); }

.passos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.passo {
  background: rgba(0,0,0,.25);
  border-radius: 10px;
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,.08);
}

.passo-num {
  font-size: 56px;
  font-weight: 900;
  color: var(--cobre);
  line-height: 1;
  margin-bottom: 16px;
}

.passo-linha { width: 40px; height: 2px; background: var(--cobre); margin-bottom: 20px; }

.passo h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--branco);
  margin-bottom: 12px;
}

.passo p { font-size: 14px; color: rgba(255,255,255,.70); line-height: 1.7; }

.passo-result {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: var(--cobre);
}

.plano .btn-primary { display: block; width: fit-content; margin: 48px auto 0; }

/* ── SERVIÇOS ───────────────────────────────── */
.servicos { background: var(--offwhite); }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.servico-card {
  background: var(--branco);
  border-radius: 10px;
  padding: 28px;
  border: 1px solid #E0DDD8;
  border-left: 3px solid var(--cobre);
  transition: box-shadow .2s;
}

.servico-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.servico-icon { font-size: 28px; margin-bottom: 14px; }

.servico-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 10px;
}

.servico-card p { font-size: 13px; color: var(--cinza); line-height: 1.7; }

/* ── DEPOIMENTOS ────────────────────────────── */
.depoimentos { background: var(--verde); padding: 80px 24px; }

.depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.depo-card { background: var(--verde-m); border-radius: 10px; padding: 36px; }

.depo-aspas {
  font-size: 56px;
  font-weight: 900;
  color: var(--cobre);
  opacity: .4;
  line-height: 1;
  margin-bottom: -12px;
}

.depo-card blockquote {
  font-style: italic;
  font-size: 15px;
  color: var(--branco);
  line-height: 1.8;
  margin: 16px 0 24px;
}

.depo-autor strong { display: block; font-size: 14px; font-weight: 700; color: var(--cobre); }
.depo-autor span { font-size: 12px; color: rgba(255,255,255,.55); }
.depoimentos h2 { color: var(--branco); text-align: center; }

/* ── STAKES ─────────────────────────────────── */
.stakes { background: var(--carvao); }
.stakes h2 { color: var(--branco); }

.stakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.stakes-intro { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 32px; }

.stakes-list { list-style: none; }

.stakes-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 15px;
  color: rgba(255,255,255,.85);
}

.stakes-list li:last-child { border-bottom: none; }
.stakes-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.stakes-frase {
  background: var(--verde);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}

.stakes-frase p {
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: var(--branco);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ── SUCESSO ─────────────────────────────────── */
.sucesso { background: var(--offwhite); }
.sucesso-list { list-style: none; max-width: 680px; }

.sucesso-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #E0DDD8;
  font-size: 16px;
  color: var(--carvao);
}

.sucesso-list li:last-child { border-bottom: none; }
.check { font-size: 20px; color: var(--verde); flex-shrink: 0; }

/* ── CTA FINAL ──────────────────────────────── */
.cta-final { background: var(--verde); text-align: center; }
.cta-final h2 { color: var(--branco); margin-bottom: 16px; }
.cta-final .subtitle { color: rgba(255,255,255,.70); margin: 0 auto 48px; }

.cta-box {
  background: var(--branco);
  border-radius: 16px;
  padding: 48px;
  max-width: 580px;
  margin: 0 auto;
}

.cta-box-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 20px;
}

.cta-checklist { list-style: none; margin-bottom: 32px; text-align: left; }

.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #F0EDEA;
  font-size: 14px;
  color: var(--carvao);
}

.cta-checklist li:last-child { border-bottom: none; }
.cta-checklist .ck { color: var(--cobre); font-weight: 700; }

.btn-cta-full {
  display: block;
  width: 100%;
  background: var(--cobre);
  color: var(--branco);
  padding: 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  letter-spacing: .5px;
  transition: background .2s;
  margin-bottom: 20px;
}

.btn-cta-full:hover { background: #8B4A14; }
.cta-microcopy { font-size: 12px; color: var(--cinza); margin-top: 12px; }

.cta-contatos {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-contatos a {
  font-size: 13px;
  color: rgba(255,255,255,.60);
  text-decoration: none;
  transition: color .2s;
}

.cta-contatos a:hover { color: var(--cobre); }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--verde);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 64px 24px 32px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo { font-size: 20px; font-weight: 800; color: var(--branco); margin-bottom: 12px; }
.footer-logo span { color: var(--cobre); }

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,.50);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.50);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 4px;
  transition: all .2s;
}

.footer-social a:hover { color: var(--cobre); border-color: var(--cobre); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.60);
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--cobre); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.30);
}

/* ── WHATSAPP FLUTUANTE ─────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25D366;
  color: var(--branco);
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.whatsapp-icon { font-size: 20px; }

/* ── FORMULÁRIO ─────────────────────────────── */
.form-group { margin-bottom: 20px; }

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E0DDD8;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--carvao);
  background: var(--branco);
  transition: border-color .2s;
  outline: none;
}

input:focus, select:focus, textarea:focus { border-color: var(--verde); }
textarea { resize: vertical; min-height: 100px; }

.btn-form {
  width: 100%;
  background: var(--cobre);
  color: var(--branco);
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s;
  letter-spacing: .5px;
}

.btn-form:hover { background: #8B4A14; }

/* ── RESPONSIVO ─────────────────────────────── */
@media (max-width: 768px) {
  nav { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .guia-grid, .stakes-grid, .passos-grid, .footer-grid { grid-template-columns: 1fr; }
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .whatsapp-btn .whatsapp-text { display: none; }
  section { padding: 64px 20px; }
}
