/* ===== Base / tokens ===== */
:root {
  --bg: #0b0f0d;
  --bg-alt: #101512;
  --surface: #131a17;
  --surface-2: #1a2320;
  --border: #23302b;
  --text: #eef2ef;
  --text-dim: #9fada6;
  --lime: #c8ff3d;
  --lime-dim: #9fd42c;
  --green-deep: #0d3b1f;
  --white: #ffffff;
  --font-head: "Sora", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0 0 .5em; line-height: 1.15; color: var(--white); }
p { margin: 0 0 1em; color: var(--text-dim); }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.hl { color: var(--lime); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--whatsapp {
  background: #25D366;
  color: #06210f;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.55);
}
.btn--whatsapp:hover { background: #2be374; }
.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--lg { padding: 18px 34px; font-size: 17px; }

/* ===== Topbar ===== */
.topbar {
  background: var(--green-deep);
  color: #d9ffd0;
  font-size: 13px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 24px;
  flex-wrap: wrap;
}
.topbar a { color: var(--lime); font-weight: 600; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 18px; }
.logo__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--lime);
  color: #06210f;
  font-weight: 800;
  font-size: 13px;
}
.logo__text strong { color: var(--lime); }
.header__right { display: flex; align-items: center; gap: 24px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav__link { font-size: 14px; font-weight: 500; color: var(--text-dim); transition: color .15s ease; }
.nav__link:hover { color: var(--text); }
.nav__link--cta {
  background: var(--lime);
  color: #06210f !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.nav__link--cta:hover { background: var(--lime-dim); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 85% 10%, rgba(200, 255, 61, 0.12), transparent 55%),
    var(--bg);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--lime);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -0.02em;
}
.hero__lead { font-size: 17px; max-width: 520px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 34px; }
.hero__trust { display: flex; gap: 30px; flex-wrap: wrap; margin-bottom: 8px; }
.trust__item { display: flex; flex-direction: column; }
.trust__item strong { font-family: var(--font-head); font-size: 22px; color: var(--lime); }
.trust__item span { font-size: 13px; color: var(--text-dim); }
.hero__disclaimer { font-size: 11px; color: #5f6b65; margin-top: 6px; }

.hero__visual { position: relative; min-height: 380px; }
.hero__graphic {
  position: absolute;
  inset: 20px;
  border-radius: 24px;
  background:
    linear-gradient(155deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero__illustration {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-image:
    linear-gradient(rgba(200,255,61,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,255,61,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.card-float {
  position: absolute;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 150px;
}
.card-float__label { font-size: 11px; color: var(--text-dim); margin-bottom: 4px; }
.card-float__value { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--lime); }
.card-float--1 { top: 8%; left: -4%; }
.card-float--2 { top: 46%; right: -6%; }
.card-float--3 { bottom: 6%; left: 12%; }

/* ===== Pain / promessa ===== */
.pain { padding: 60px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pain__col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.pain__col h3 { font-size: 17px; margin-bottom: 16px; }
.pain__col li { color: var(--text-dim); padding: 8px 0; border-bottom: 1px dashed var(--border); font-size: 14px; }
.pain__col li:last-child { border-bottom: none; }
.pain__col--highlight { background: linear-gradient(155deg, rgba(200,255,61,0.08), var(--surface)); border-color: rgba(200,255,61,0.3); }
.pain__col--highlight li { color: var(--text); }
.pain__col--highlight strong { color: var(--lime); }

/* ===== Section head ===== */
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(24px, 3vw, 34px); }
.section-note { font-size: 12px; color: #5f6b65; }

/* ===== Services ===== */
.services { padding: 90px 0; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .2s ease, transform .2s ease;
}
.service-card:hover { border-color: rgba(200,255,61,0.4); transform: translateY(-4px); }
.service-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--surface-2);
  font-size: 22px;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 19px; }
.service-card p { font-size: 14px; }
.service-card__list { margin-top: 14px; }
.service-card__list li {
  font-size: 13px;
  color: var(--text-dim);
  padding: 6px 0 6px 22px;
  position: relative;
}
.service-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--lime);
}
.services__cta {
  margin-top: 46px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.services__cta p { font-size: 15px; color: var(--text); }

/* ===== Process ===== */
.process { padding: 90px 0; background: var(--green-deep); background: linear-gradient(155deg, #0f1d12, #0b0f0d); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head--light h2 { color: var(--white); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process__step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.process__num { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--lime); opacity: .6; }
.process__step h3 { font-size: 16px; margin-top: 10px; }
.process__step p { font-size: 13px; }

/* ===== Results ===== */
.results { padding: 90px 0; }
.results__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.result-card {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.result-card__value { display: block; font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--lime); }
.result-card__label { display: block; font-size: 13px; color: var(--text-dim); margin-top: 8px; }

.testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.testimonial p { color: var(--text); font-size: 15px; font-style: italic; }
.testimonial span { font-size: 13px; color: var(--text-dim); }

/* ===== FAQ ===== */
.faq { padding: 90px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::after { content: "+"; color: var(--lime); font-size: 20px; }
.faq__item[open] summary::after { content: "−"; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item p { margin-top: 12px; font-size: 14px; }

/* ===== CTA final ===== */
.cta-final {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,255,61,0.15), transparent 60%), var(--bg);
  text-align: center;
}
.cta-final__inner { max-width: 600px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(26px, 3.6vw, 38px); }
.cta-final p { font-size: 16px; margin-bottom: 30px; }

/* ===== Footer ===== */
.footer { padding: 34px 0; border-top: 1px solid var(--border); }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 15px; }
.footer__brand .logo__text strong { color: var(--lime); }
.footer__copy { font-size: 13px; color: var(--text-dim); margin: 0; }
.footer__whats { font-size: 13px; color: var(--lime); font-weight: 600; }

/* ===== WhatsApp floating button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #06210f;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.65);
  z-index: 60;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 260px; order: -1; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .results__grid { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .pain__inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { position: fixed; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; padding: 20px 24px; gap: 16px; transform: translateY(-130%); transition: transform .25s ease; }
  .nav.is-open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .topbar__inner { justify-content: center; text-align: center; }
  .services__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .results__grid { grid-template-columns: 1fr 1fr; }
  .hero__trust { gap: 22px; }
  .card-float { display: none; }
}
