:root{
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #0b1220;
  --muted: #5b6577;
  --muted2: #7a859a;
  --line: rgba(15,23,42,.10);
  --shadow: 0 14px 35px rgba(15, 23, 42, .08);

  --brand: #bfff4a;   /* verde neon da logo */
  --brand2: #0f2db3;  /* azul forte */
  --cta: #0b8f58;     /* verde botão */
  --ctaHover: #087a4c;

  --radius: 18px;
  --radius2: 26px;
  --container: 1160px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 500px at 20% 0%, rgba(15,45,179,.08), transparent 55%),
    radial-gradient(900px 520px at 85% 5%, rgba(191,255,74,.10), transparent 60%),
    var(--bg);
  line-height: 1.45;
}
a{ color: inherit; text-decoration: none; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 18px; }

/* NAV */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand{ display:flex; align-items:center; gap: 12px; min-width: 220px; }
.brand img{ height: 88px; width:auto; display:block; }

.nav{
  display:flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  align-items:center;
}
.nav a:hover{ color:#111827; }
.nav .pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
}
.nav .pill b{ color: var(--cta); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transition: transform .12s ease, background .12s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: var(--cta);
  border-color: rgba(11,143,88,.25);
  color: #fff;
  box-shadow: 0 16px 30px rgba(11,143,88,.18);
}
.btn-primary:hover{ background: var(--ctaHover); }
.btn-full{ width:100%; }

/* HERO */
.hero{ padding: 54px 0 26px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}
.dot{
  width: 9px; height: 9px; border-radius: 99px;
  background: var(--cta);
  box-shadow: 0 0 0 4px rgba(11,143,88,.10);
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.03;
  letter-spacing: -1px;
}
.highlight{ color: var(--brand2); }
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(15px, 1.55vw, 18px);
  max-width: 64ch;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin: 18px 0 18px;
  align-items:center;
}
.subcta{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: var(--muted);
  font-weight: 900;
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.65);
}

.stats-row{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 520px;
  margin-top: 8px;
}
.stat{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.stat b{ display:block; font-size: 30px; letter-spacing: -0.6px; }
.stat small{ color: var(--muted); font-weight: 900; }
.stat b.blue{ color: var(--brand2); }
.stat b.green{ color: var(--cta); }

.hint{
  margin:14px 0 0;
  color: var(--muted2);
  font-weight: 800;
  font-size: 13px;
}

/* HERO CARD */
.hero-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 16px;
  overflow:hidden;
  position:relative;
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(600px 320px at 20% 0%, rgba(15,45,179,.12), transparent 55%),
    radial-gradient(540px 320px at 80% 5%, rgba(191,255,74,.12), transparent 60%);
  pointer-events:none;
}
.shot{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: linear-gradient(135deg, rgba(15,45,179,.06), rgba(11,143,88,.06));
}
.shot img{
  width:100%;
  height:auto;
  display:block;
}
.trust{
  position:relative;
  margin-top: 12px;
  display:grid;
  gap: 10px;
}
.trust-item{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.check{
  width: 20px; height: 20px;
  border-radius: 7px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(11,143,88,.10);
  border: 1px solid rgba(11,143,88,.22);
  color: var(--cta);
  font-weight: 900;
  flex: 0 0 auto;
  margin-top: 1px;
}

/* Sections */
section{ padding: 44px 0; }
.section-title{ text-align:center; margin-bottom: 18px; }
.section-title h2{
  margin: 0 0 8px;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.6px;
}
.section-title p{
  margin: 0 auto;
  max-width: 78ch;
  color: var(--muted);
  font-weight: 700;
}

.grid-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  text-align:left;
}
.card .icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(15,45,179,.07);
  border: 1px solid rgba(15,45,179,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: var(--brand2);
  margin-bottom: 10px;
}
.card h3{ margin: 0 0 8px; font-size: 16px; letter-spacing: -0.2px; }
.card p{ margin: 0; color: var(--muted); font-weight: 650; font-size: 14px; }

/* Split + lists */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}
.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 650;
}
.list li{ margin: 10px 0; }
.list li::marker{ color: var(--cta); }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.step{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.step b{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.num{
  width: 30px; height: 30px;
  border-radius: 12px;
  background: rgba(191,255,74,.30);
  border: 1px solid rgba(191,255,74,.45);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
}
.step p{ margin: 0; color: var(--muted); font-weight: 650; font-size: 14px; }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
  align-items:start;
}
.contact-left{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 20px;
}
.contact-title{ margin:0 0 6px; letter-spacing:-.2px; }
.contact-sub{ margin:0; color:var(--muted); font-weight:750; }

.contact-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}
.ci{
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(15,45,179,.06);
  border: 1px solid rgba(15,45,179,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--brand2);
  font-weight: 900;
  flex: 0 0 auto;
}
.ci-title{ font-weight: 900; color:#0b1220; }
.ci-text{ margin-top:3px; font-weight: 800; }
.ci-text a{ color: var(--brand2); text-decoration: underline; font-weight: 900; }

form{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 20px;
  display:grid;
  gap: 12px;
}
label{
  font-size: 12px;
  color: var(--muted2);
  font-weight: 900;
  display:block;
  margin-bottom: 6px;
}
input, textarea, select{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: #fbfcff;
  outline: none;
  font-weight: 750;
  color: #0b1220;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(15,45,179,.35);
  box-shadow: 0 0 0 4px rgba(15,45,179,.08);
}
textarea{ min-height: 110px; resize: vertical; }
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.toast{
  display:none;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(11,143,88,.28);
  background: rgba(11,143,88,.08);
  color: #0b1220;
  font-weight: 900;
}
.fine{
  color: var(--muted2);
  font-size: 12px;
  font-weight: 750;
}

/* Footer */
footer{
  margin-top: 40px;
  background: #0b1220;
  color: rgba(255,255,255,.86);
  padding: 34px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 16px;
  align-items:start;
}
.footer-grid h4{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: -0.2px;
}
.footer-grid p, .footer-grid a{
  margin: 8px 0 0;
  color: rgba(255,255,255,.70);
  font-weight: 750;
  font-size: 13px;
}
.footer-grid a{ text-decoration: underline; }
.footer-bottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.62);
  font-weight: 750;
  font-size: 13px;
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
}

/* Responsive */
@media (max-width: 1040px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .split{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .nav{ display:none; }
  .brand{ min-width: auto; }
}
@media (max-width: 560px){
  .grid-4{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .stats-row{ grid-template-columns: 1fr; max-width: 100%; }
}
/* =========================
   CARD HOVER + RESPONSIVO
   (cole no final do CSS)
========================= */

/* Suaviza transições e melhora performance */
.card, .step, .stat, .hero-card, .contact-left, form {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  will-change: transform;
}

/* Efeito "lift" + brilho no hover (desktop) */
@media (hover:hover) and (pointer:fine) {
  .card:hover,
  .step:hover,
  .stat:hover,
  .contact-left:hover,
  form:hover,
  .hero-card:hover{
    transform: translateY(-6px);
    border-color: rgba(15,45,179,.18);
    box-shadow:
      0 18px 45px rgba(15,23,42,.12),
      0 0 0 4px rgba(15,45,179,.06);
  }

  /* Brilho extra com o verde/azul da marca nos cards */
  .card{
    position: relative;
    overflow: hidden;
  }
  .card::after{
    content:"";
    position:absolute;
    inset:-2px;
    background:
      radial-gradient(600px 220px at 15% 0%, rgba(15,45,179,.12), transparent 55%),
      radial-gradient(520px 220px at 85% 10%, rgba(191,255,74,.14), transparent 60%);
    opacity: 0;
    transition: opacity .18s ease;
    pointer-events: none;
  }
  .card:hover::after{ opacity: 1; }
}

/* Acessibilidade: reduz animações se o usuário preferir */
@media (prefers-reduced-motion: reduce){
  .card, .step, .stat, .hero-card, .contact-left, form, .btn{
    transition: none !important;
  }
  .card:hover, .step:hover, .stat:hover, .hero-card:hover, .contact-left:hover, form:hover{
    transform: none !important;
  }
}

/* ===== Melhorias gerais de mobile ===== */
@media (max-width: 560px){
  .container{ padding: 0 14px; }

  /* Topbar mais “compacta” no celular */
  .topbar-inner{ padding: 10px 0; gap: 10px; }
  .brand img{ height: 64px; }

  /* Hero e textos */
  .hero{ padding: 32px 0 18px; }
  h1{ letter-spacing: -0.8px; }
  .lead{ font-size: 15px; }

  /* Botões ocupando largura boa no mobile */
  .hero-actions{ gap: 10px; }
  .btn{ width: 100%; justify-content: center; }
  .subcta{ width: 100%; justify-content: center; }

  /* Cards e blocos com padding mais confortável */
  .card, .step, .stat{ padding: 16px; }
  .contact-left, form{ padding: 16px; }
}

/* ===== Ajuste fino para telas médias (tablets) ===== */
@media (max-width: 760px){
  .grid-4{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}

/* =========================
   FAQ
========================= */

.faq{
  max-width: 860px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item:hover{
  border-color: rgba(15,45,179,.18);
}

.faq-question{
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-icon{
  font-size: 18px;
  font-weight: 900;
  color: var(--cta);
  transition: transform .2s ease;
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
  line-height: 1.5;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-item.active .faq-answer{
  max-height: 300px;
  padding: 0 20px 18px 20px;
}

.faq-item.active .faq-icon{
  transform: rotate(45deg);
}
