:root {
  --green-900: #0c3b27;
  --green-800: #0f5132;
  --green-700: #146b40;
  --green-500: #20a862;
  --green-100: #eaf7ef;
  --cream: #fbfaf6;
  --gold: #d8b66a;
  --ink: #193128;
  --muted: #5f7069;
  --white: #ffffff;
  --border: #dce8e1;
  --shadow: 0 14px 38px rgba(12, 59, 39, 0.08);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 32px, 1080px);
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 56px;
  background:
    radial-gradient(circle at 90% 12%, rgba(216, 182, 106, 0.16), transparent 22rem),
    linear-gradient(180deg, var(--cream), #fff);
}

.hero::before {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 42px solid rgba(32, 168, 98, 0.05);
  border-radius: 50%;
  content: "";
  inset: auto auto -160px -120px;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-logo {
  width: 132px;
  height: auto;
  margin-bottom: 20px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero__subtitle {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  line-height: 1.6;
}

.quick-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 18px;
  margin: 24px 0;
  padding: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  list-style: none;
}

.quick-benefits li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.quick-benefits span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-500);
  font-size: 0.74rem;
}

.cta-button {
  display: inline-flex;
  width: 100%;
  max-width: 410px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: var(--green-500);
  box-shadow: 0 10px 24px rgba(32, 168, 98, 0.22);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.cta-button:hover {
  background: #188c50;
  box-shadow: 0 13px 28px rgba(32, 168, 98, 0.28);
  transform: translateY(-2px);
}

.cta-button:active,
.cta-button.is-clicked {
  box-shadow: 0 5px 12px rgba(32, 168, 98, 0.2);
  transform: translateY(1px) scale(0.99);
}

.cta-button:focus-visible {
  outline: 3px solid rgba(216, 182, 106, 0.7);
  outline-offset: 4px;
}

.whatsapp-icon {
  width: 25px;
  flex: 0 0 25px;
}

.capacity-card {
  width: 100%;
  max-width: 570px;
  margin-top: 22px;
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  text-align: left;
}

.capacity-card__title {
  margin: 0 0 13px;
  color: var(--green-900);
  font-size: 0.97rem;
  font-weight: 700;
}

.capacity-row {
  display: flex;
  align-items: center;
  gap: 11px;
}

.progress {
  width: 100%;
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2eee7;
}

.progress__fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-500), #69cc8b);
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.capacity-percent {
  min-width: 37px;
  color: var(--green-800);
  font-size: 0.82rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.capacity-card__note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.capacity-card__note strong {
  color: var(--green-700);
}

.section {
  padding: 68px 0;
  text-align: center;
}

.section--tinted {
  background: var(--cream);
}

h2 {
  margin: 0 auto;
  color: var(--green-900);
  font-size: clamp(1.65rem, 5vw, 2.5rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.steps-grid,
.benefits-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.step-card,
.benefit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(12, 59, 39, 0.05);
}

.step-card {
  display: grid;
  min-height: 126px;
  align-content: center;
  justify-items: center;
  padding: 22px;
}

.step-card__number {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 0 0 6px var(--green-100);
}

.step-card h3,
.benefit-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-card {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 10px;
}

.benefit-card span {
  font-size: 1.7rem;
}

.proof__content {
  display: grid;
  align-items: center;
  gap: 34px;
  text-align: left;
}

.proof h2 {
  margin-inline: 0;
}

.proof p:not(.section-kicker) {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.group-preview {
  width: min(100%, 340px);
  margin-inline: auto;
  overflow: hidden;
  border: 7px solid var(--green-900);
  border-radius: 26px;
  background: #eef2ef;
  box-shadow: var(--shadow);
}

.group-preview {
  display: block;
  height: auto;
}

.final-cta {
  padding: 66px 0 90px;
  color: var(--white);
  background: var(--green-900);
  text-align: center;
}

.final-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta__icon {
  margin-bottom: 14px;
  font-size: 2rem;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  margin: 14px 0 24px;
  color: #cfe3d8;
  line-height: 1.6;
}

.cta-button--light {
  color: var(--green-900);
  background: var(--white);
  box-shadow: none;
}

.cta-button--light:hover {
  color: var(--green-900);
  background: #f3faf6;
}

.final-cta small {
  margin-top: 14px;
  color: #b9d3c4;
}

.sticky-cta {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(12, 59, 39, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(12, 59, 39, 0.09);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(10px);
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta .cta-button {
  max-width: none;
  min-height: 52px;
  padding-block: 12px;
  font-size: 0.9rem;
}

@media (min-width: 700px) {
  .container {
    width: min(100% - 56px, 1080px);
  }

  .hero {
    padding: 34px 0 74px;
  }

  .brand-logo {
    width: 158px;
    margin-bottom: 26px;
  }

  .quick-benefits {
    gap: 28px;
    font-size: 0.95rem;
  }

  .capacity-card {
    padding: 22px 24px;
  }

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

  .benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof__content {
    grid-template-columns: 1fr 0.8fr;
    gap: 64px;
  }

  .sticky-cta {
    display: none;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, 1080px);
  }

  .hero {
    padding-top: 18px;
  }

  .brand-logo {
    width: 116px;
    margin-bottom: 16px;
  }

  .quick-benefits {
    align-items: flex-start;
    flex-direction: column;
  }

  .benefit-card h3 {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
