:root {
  --bg: #f7f9ef;
  --bg-strong: #e9f2d0;
  --paper: #fffdf7;
  --text: #1d2217;
  --muted: #4f5648;
  --primary: #0f9d58;
  --primary-dark: #0b6a3b;
  --accent: #f28d35;
  --line: #d5dbc7;
  --radius: 16px;
  --shadow: 0 12px 30px rgba(29, 34, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 20%, #fffbe9 0%, #f3f8e4 40%, #edf5d7 100%);
  line-height: 1.45;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(29, 34, 23, 0.08);
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 700;
  background: #e5f6eb;
  border: 1px solid #b6dec6;
  padding: 8px 12px;
  border-radius: 999px;
}

.mini-cta {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.hero {
  padding: 64px 0 44px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--primary-dark);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.05;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.3rem, 4.6vw, 4.7rem);
  letter-spacing: 0.02em;
  margin-top: 10px;
}

h1 span,
.final-cta h2 span {
  color: var(--accent);
}

.sub {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 20px;
}

.btn {
  border: 0;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 18px;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 157, 88, 0.36);
}

.btn-primary:hover {
  box-shadow: 0 12px 26px rgba(15, 157, 88, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-points {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-points li + li {
  margin-top: 8px;
}

.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-label {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--primary-dark);
  font-size: 0.73rem;
  font-weight: 700;
}

.hero-card h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.hero-card p {
  color: var(--muted);
}

.price-box {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  background: #f2f8e8;
  border: 1px dashed #c2d5ae;
  display: grid;
  gap: 5px;
}

.price-box .from {
  color: var(--muted);
  font-size: 0.85rem;
}

.price-box strong {
  font-size: 1.65rem;
  color: #111;
}

.logos {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.logos article {
  background: #f3f9e8;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.logos h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.logos p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 84px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.section h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.steps article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.steps span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.steps p,
.split li,
.testimonial-grid p,
.faq p {
  color: var(--muted);
}

.section-contrast {
  background: linear-gradient(180deg, rgba(236, 244, 218, 0.4), rgba(236, 244, 218, 0.85));
  border-top: 1px solid #dde7ca;
  border-bottom: 1px solid #dde7ca;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.split ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 16px rgba(29, 34, 23, 0.05);
}

.testimonial-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
}

.faq details + details {
  margin-top: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin-bottom: 0;
}

.final-cta {
  padding: 78px 0;
  background: linear-gradient(120deg, #1b8c52 0%, #0a6238 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final-wrap {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  max-width: 16ch;
}

.btn-large {
  font-size: 1.05rem;
  background: #f28d35;
  box-shadow: 0 8px 18px rgba(242, 141, 53, 0.44);
}

.btn-large:hover {
  background: #f08a2f;
}

.footer {
  background: #121a0f;
  color: #d6dec6;
}

.footer-inner {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}

.footer a {
  color: #d6dec6;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 30;
  text-decoration: none;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(16, 66, 41, 0.35);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.bg-shape {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(8px);
}

.shape-1 {
  top: -110px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(242, 141, 53, 0.18);
}

.shape-2 {
  bottom: -130px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: rgba(15, 157, 88, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .steps,
  .logos,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }

  .section {
    padding: 60px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-large {
    width: 100%;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
