:root {
  --green-950: #052818;
  --green-900: #07391f;
  --green-800: #07512b;
  --green-700: #0c6f3c;
  --green-600: #0f8f4f;
  --green-100: #dff7ea;
  --mint: #68d993;
  --gold: #c99b2f;
  --cyan: #55c7d8;
  --ink: #102018;
  --muted: #5d6b63;
  --line: #dfe9e3;
  --paper: #f8fbf7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 40, 24, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(248, 251, 247, 0.88);
  border-bottom: 1px solid rgba(223, 233, 227, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  padding: 7px;
  object-fit: contain;
  background: var(--green-800);
  border: 3px solid var(--green-700);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(7, 81, 43, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--green-700);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 12px 26px rgba(12, 111, 60, 0.24);
}

.button.secondary {
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--line);
}

.whatsapp-button {
  width: max-content;
  margin-top: 18px;
  color: var(--white);
  background: #128c4a;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(12, 111, 60, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-900);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  min-height: calc(100vh - 148px);
  padding: clamp(30px, 5vw, 58px) clamp(18px, 4vw, 64px) 28px;
  background:
    linear-gradient(110deg, rgba(223, 247, 234, 0.95) 0%, rgba(248, 251, 247, 0.96) 45%, rgba(255, 255, 255, 0.7) 100%),
    radial-gradient(circle at 80% 20%, rgba(104, 217, 147, 0.28), transparent 28%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 4.7vw, 4.05rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-text {
  max-width: 640px;
  color: #314239;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(223, 233, 227, 0.8);
  border-radius: 8px;
}

.hero-stats dt {
  color: var(--green-800);
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.launch-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: min(280px, calc(100% - 44px));
  padding: 16px;
  color: var(--white);
  background: rgba(5, 40, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.launch-badge strong,
.launch-badge span {
  display: block;
}

.launch-badge span {
  margin-top: 4px;
  color: #d8f5e3;
  font-size: 0.9rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--green-950);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 800;
  background: #f0fbf4;
  border: 1px solid #ccefd9;
  border-radius: 999px;
}

.section,
.diamond {
  padding: clamp(58px, 7vw, 104px) clamp(18px, 4vw, 64px);
}

.intro,
.diamond,
.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro p:last-child,
.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.plans-section {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.plan.featured {
  border-color: var(--green-600);
  box-shadow: var(--shadow);
}

.plan.commerce {
  border-color: rgba(201, 155, 47, 0.5);
}

.ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 10px;
  color: var(--green-950);
  background: #f7dda0;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.plan-name,
.price,
.term {
  margin: 0;
}

.plan-name {
  padding-right: 92px;
  color: var(--green-700);
  font-weight: 900;
}

.price {
  margin-top: 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 950;
}

.term {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.plan ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 24px;
  color: #34483d;
}

.plan li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: inset 0 0 0 3px #dff7ea;
}

.plan-button {
  margin-top: auto;
  color: var(--green-950);
  background: var(--green-100);
}

.diamond {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 40, 24, 0.96), rgba(7, 81, 43, 0.94)),
    linear-gradient(90deg, var(--green-900), var(--green-700));
}

.diamond p {
  color: #d9f5e4;
}

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

.diamond .button {
  align-self: center;
  justify-self: end;
  background: var(--gold);
  color: #201605;
}

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

.standards-grid div,
.steps li,
details,
.lead-form,
.payment-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.standards-grid div {
  min-height: 160px;
  padding: 24px;
}

.standards-grid strong,
.standards-grid span {
  display: block;
}

.standards-grid strong {
  margin-bottom: 10px;
  color: var(--green-800);
  font-size: 1.1rem;
}

.standards-grid span,
.steps p,
details p {
  color: var(--muted);
}

.process {
  background: #edf8f1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 24px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 950;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.quote {
  background: var(--white);
}

.payment-note {
  max-width: 560px;
  padding: 18px;
  background: #f7fcf8;
}

.payment-note strong,
.payment-note span {
  display: block;
}

.payment-note span {
  margin-top: 4px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfb;
  border: 1px solid #cfded5;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 143, 79, 0.18);
  border-color: var(--green-600);
}

.full {
  grid-column: 1 / -1;
}

.faq {
  max-width: 980px;
  margin: 0 auto;
}

details {
  padding: 18px 20px;
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  color: var(--green-950);
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 64px);
  color: #dff7ea;
  background: var(--green-950);
}

.site-footer p {
  margin: 14px 0 0;
  color: #b7d8c4;
}

.footer-brand .brand-logo {
  background: var(--green-700);
  border-color: var(--mint);
}

.footer-brand small {
  color: var(--mint);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .pricing-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual img {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 8px;
    padding-top: 12px;
  }

  .site-nav.is-open a {
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .intro,
  .diamond,
  .quote {
    grid-template-columns: 1fr;
  }

  .diamond .button {
    justify-self: start;
  }

  .standards-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.25rem;
  }

  .hero {
    min-height: auto;
    gap: 20px;
    padding-top: 24px;
  }

  .hero-actions,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-stats {
    margin-top: 18px;
  }

  .hero-stats div {
    padding: 11px 13px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 230px;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .plan-name {
    padding-right: 0;
  }

  .ribbon {
    position: static;
    display: inline-flex;
    width: max-content;
    margin-bottom: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
