/* Capta 360 — landing page em CSS puro */
:root {
  --navy: #0a2540;
  --navy-soft: #123456;
  --lime: #c8f135;
  --lime-strong: #6f8f00;
  --lime-soft: #f2fbd9;
  --green: #147a4c; /* verde escuro de ação / WhatsApp */
  --green-strong: #0f5c39;
  --bg: #ffffff;
  --surface: #f5f7fa;
  --text: #10203a;
  --muted: #5b6b81;
  --border: #e3e8ef;
  --radius: 14px;
  --shadow: 0 18px 40px -18px rgba(10, 37, 64, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.kicker { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--lime-strong); }
.title { margin-top: 14px; font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--navy); }
.copy { margin-top: 16px; color: var(--muted); font-size: 18px; max-width: 640px; }
section { scroll-margin-top: 80px; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px; padding: 0 26px; border-radius: 999px;
  font-weight: 700; font-size: 15px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.btn-lime { background: var(--green); color: #fff; }
.btn-lime:hover { background: var(--green-strong); }
.btn-light { background: #fff; color: var(--navy); }
.btn-outline { background: rgba(255,255,255,.75); color: var(--navy); border-color: rgba(10,37,64,.18); backdrop-filter: blur(6px); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

/* CTAs dos planos = verde de ação */
.plan .btn-primary,
.plan .btn-lime {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(20, 122, 76, 0.4);
}
.plan .btn-primary:hover,
.plan .btn-lime:hover {
  background: var(--green-strong);
}

/* Cabeçalho */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.header-cta { display: flex; align-items: center; gap: 8px; }
.brand img { height: 40px; width: auto; }
.nav { display: none; gap: 28px; font-weight: 700; font-size: 15px; color: var(--muted); }
.nav a:hover, .nav a.active { color: var(--navy); }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-nav { display: none; border-top: 1px solid var(--border); background: #fff; }
.mobile-nav a { display: block; padding: 14px 20px; font-weight: 700; border-bottom: 1px solid var(--border); }

/* Hero */
.hero { position: relative; min-height: 92vh; padding-top: 72px; border-bottom: 1px solid var(--border); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.88) 45%, rgba(255,255,255,.35) 78%, rgba(255,255,255,.1) 100%); }
.hero-inner { position: relative; display: flex; align-items: center; min-height: calc(92vh - 72px); padding: 64px 20px; }
.hero-content { max-width: 660px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: var(--lime-soft); border: 1px solid rgba(200,241,53,.6); color: var(--navy); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero h1 { margin-top: 22px; font-size: clamp(34px, 5.6vw, 64px); font-weight: 800; color: var(--navy); }
.hero h1 em { font-style: normal; color: var(--lime-strong); }
.hero p.lead { margin-top: 20px; font-size: clamp(17px, 2vw, 21px); color: rgba(16,32,58,.78); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 30px; font-weight: 700; font-size: 14px; color: rgba(16,32,58,.72); }
.hero-checks li { display: flex; align-items: center; gap: 8px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }

/* Faixa de números */
.stats { background: var(--navy); color: #fff; }
.stats-grid { display: grid; gap: 0; }
.stats-grid div { padding: 26px 0; border-top: 1px solid rgba(255,255,255,.15); }
.stats-grid div:first-child { border-top: 0; }
.stats-grid strong { display: block; font-size: 30px; font-weight: 800; }
.stats-grid span { color: rgba(255,255,255,.68); font-size: 14px; }

/* Blocos genéricos */
.section { padding: 80px 0; }
.section-alt { background: var(--surface); }
.cards { display: grid; gap: 20px; margin-top: 48px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon-box { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--lime-soft); color: var(--lime-strong); font-size: 20px; font-weight: 800; }
.card h3 { margin-top: 22px; font-size: 20px; font-weight: 800; color: var(--navy); }
.card p { margin-top: 10px; color: var(--muted); }

/* Como funciona */
.steps { display: grid; gap: 18px; margin-top: 48px; }
.step { position: relative; background: #fff; border-top: 3px solid var(--navy); border-radius: 0 0 var(--radius) var(--radius); padding: 26px; min-height: 230px; transition: transform .25s ease; }
.step:hover { transform: translateY(-5px); }
.step .num { font-size: 38px; font-weight: 800; color: var(--border); }
.step h3 { margin-top: 40px; font-size: 22px; font-weight: 800; color: var(--navy); }
.step p { margin-top: 10px; color: var(--muted); }

/* Diferenciais */
.split { display: grid; gap: 48px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; object-position: right; box-shadow: var(--shadow); width: 100%; }
.media-tag { position: absolute; left: 18px; right: 18px; bottom: -22px; background: var(--navy); color: #fff; padding: 18px; border-radius: 12px; box-shadow: var(--shadow); }
.media-tag span { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--lime); }
.media-tag p { margin-top: 8px; font-size: 18px; font-weight: 800; }
.feature-grid { display: grid; gap: 26px; margin-top: 34px; }
.feature { display: flex; gap: 14px; }
.feature .bullet { flex: none; width: 10px; height: 10px; margin-top: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(200,241,53,.28); }
.feature h3 { font-size: 17px; font-weight: 800; color: var(--navy); }
.feature p { margin-top: 4px; font-size: 15px; color: var(--muted); }

/* Prova social */
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-list li {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-soft);
}
.quotes {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}
.quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--lime);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 24px;
}
.quote blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 600;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.quote-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}
.quote figcaption strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
}
.quote figcaption small {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--muted);
}

/* Planos */
.plans-section { background: var(--navy); color: #fff; padding: 80px 0; }
.plans-head { max-width: 760px; margin: 0 auto; text-align: center; }
.plans-head h2 { margin-top: 14px; font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
.plans-head .kicker { color: var(--lime); }
.plans-head p { margin-top: 16px; color: rgba(255,255,255,.7); }
.plans { display: grid; gap: 22px; margin-top: 50px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 30px; border-radius: var(--radius); background: var(--navy-soft); border: 1px solid rgba(255,255,255,.15); }
.plan.featured { background: var(--lime-soft); color: var(--text); border: 2px solid var(--lime); }
.plan .tag { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; opacity: .6; }
.plan.featured .tag { color: var(--lime-strong); opacity: 1; }
.plan .ribbon { position: absolute; top: -14px; left: 24px; background: var(--lime); color: var(--navy); font-size: 11px; font-weight: 800; padding: 6px 12px; border-radius: 999px; }
.plan h3 { margin-top: 12px; font-size: 28px; font-weight: 800; }
.plan .desc { margin-top: 12px; font-size: 14px; opacity: .75; min-height: 72px; }
.plan .price-box { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.plan.featured .price-box { border-top-color: rgba(10,37,64,.14); }
.plan .old { font-size: 12px; text-decoration: line-through; opacity: .55; }
.plan .price { display: flex; align-items: flex-end; gap: 6px; margin-top: 4px; }
.plan .price b { font-size: 44px; font-weight: 800; line-height: 1; }
.plan .price small { opacity: .65; }
.plan ul.items { flex: 1; margin-top: 24px; display: grid; gap: 12px; font-size: 14px; }
.plan ul.items li { display: flex; gap: 10px; }
.plan ul.items li::before { content: "✓"; color: var(--lime); font-weight: 800; }
.plan.featured ul.items li::before { color: var(--green); }
.plan .btn { margin-top: 26px; }

/* FAQ */
.faq-grid { display: grid; gap: 40px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; padding: 22px 0; background: none; border: 0; text-align: left; font: inherit; font-size: 17px; font-weight: 800; color: var(--navy); cursor: pointer; }
.faq-q .chev { flex: none; transition: transform .25s ease; font-size: 14px; color: var(--lime-strong); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 22px; color: var(--muted); max-width: 720px; }

/* CTA final */
.cta { padding: 0 20px 40px; }
.cta-inner { position: relative; overflow: hidden; max-width: 1200px; margin: 0 auto; background: var(--green); color: #fff; border-radius: var(--radius); padding: 40px; }
.cta-inner::after { content: ""; position: absolute; top: -90px; right: -90px; width: 240px; height: 240px; border-radius: 50%; border: 44px solid rgba(255,255,255,.12); }
.cta-inner h2 { margin-top: 12px; font-size: clamp(26px, 3.6vw, 42px); font-weight: 800; }
.cta-inner p { margin-top: 14px; max-width: 620px; opacity: .88; font-size: 18px; }
.cta-inner .kicker { color: rgba(255,255,255,.75); }
.cta-inner .btn { margin-top: 26px; position: relative; }

/* Rodapé */
.site-footer { border-top: 1px solid var(--border); padding: 30px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-inner p { font-size: 12px; color: var(--muted); }

/* WhatsApp flutuante */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: #fff; box-shadow: var(--shadow); transition: transform .2s ease; }
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

/* Animação de entrada */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsivo — mobile primeiro */
@media (max-width: 639px) {
  .wrap { padding: 0 16px; }

  .header-inner { height: 64px; gap: 10px; }
  .brand img { height: 32px; }
  .header-cta .btn-primary {
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
    gap: 6px;
  }
  .header-cta .btn-primary span { display: none; }
  .header-cta .btn-primary svg { width: 20px; height: 20px; }
  .nav-toggle { padding: 8px; }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }
  .hero-bg { object-position: 70% center; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,.97) 0%,
      rgba(255,255,255,.94) 52%,
      rgba(255,255,255,.78) 100%
    );
  }
  .hero-inner {
    min-height: auto;
    padding: 40px 24px 56px;
    align-items: flex-start;
  }
  .hero-content { max-width: 100%; }
  .badge {
    white-space: normal;
    text-align: left;
    line-height: 1.35;
    letter-spacing: .04em;
    padding: 8px 12px;
    font-size: 11px;
    max-width: 100%;
  }
  .hero h1 {
    margin-top: 16px;
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: 1.2;
  }
  .hero p.lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 22px;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    height: auto;
    min-height: 48px;
    padding: 12px 18px;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
  }
  .hero-checks {
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .stats-grid div { padding: 20px 0; }
  .stats-grid strong { font-size: 26px; }

  .section { padding: 56px 0; }
  .title { font-size: clamp(24px, 7vw, 32px); }
  .copy { font-size: 16px; max-width: 100%; }

  .cards { margin-top: 28px; gap: 14px; }
  .card { padding: 22px; }
  .card h3 { margin-top: 16px; font-size: 18px; }

  .steps { margin-top: 28px; gap: 14px; }
  .step {
    min-height: 0;
    padding: 22px;
  }
  .step h3 { margin-top: 24px; font-size: 20px; }

  .split { gap: 36px; }
  .split-media { margin-bottom: 28px; }
  .split-media img { aspect-ratio: 16/11; object-position: center; }
  .media-tag {
    position: relative;
    left: 0;
    right: 0;
    bottom: auto;
    margin-top: 14px;
    padding: 16px;
  }
  .media-tag p { font-size: 16px; }

  .plans-section { padding: 56px 0 64px; }
  .plans-head { text-align: left; }
  .plans-head h2 { font-size: clamp(24px, 7vw, 32px); }
  .plans { margin-top: 28px; gap: 18px; }
  .plan { padding: 22px; }
  .plan .desc { min-height: 0; }
  .plan .price b { font-size: 36px; }
  .plan .btn {
    height: auto;
    min-height: 48px;
    padding: 12px 16px;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }
  .plan.featured { margin-top: 10px; }

  .trust-list { margin-top: 22px; gap: 8px; }
  .trust-list li { font-size: 12px; padding: 7px 12px; }
  .quotes { margin-top: 28px; gap: 14px; }
  .quote { padding: 22px 18px; }
  .quote blockquote { font-size: 15px; }

  .faq-grid { gap: 24px; }
  .faq-q {
    font-size: 15px;
    padding: 18px 0;
    align-items: flex-start;
    gap: 12px;
  }

  .cta { padding: 0 16px 28px; }
  .cta-inner {
    padding: 28px 20px;
    border-radius: 12px;
  }
  .cta-inner h2 { font-size: clamp(22px, 6.5vw, 28px); }
  .cta-inner p { font-size: 16px; }
  .cta-inner .btn {
    width: 100%;
    margin-top: 20px;
  }
  .cta-inner::after { width: 160px; height: 160px; top: -60px; right: -60px; border-width: 28px; }

  .site-footer { padding: 24px 0 88px; }
  .wa-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid div { border-top: 0; border-left: 1px solid rgba(255,255,255,.15); padding-left: 26px; }
  .stats-grid div:first-child { border-left: 0; padding-left: 0; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .cta-inner { padding: 56px; }
  .media-tag { left: auto; right: 24px; width: 280px; }
}
@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .section { padding: 110px 0; }
  .plans-section { padding: 110px 0; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: repeat(3, 1fr); }
  .plan.featured { transform: translateY(-16px); }
  .faq-grid { grid-template-columns: 0.7fr 1.3fr; }
  .cta-content { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
