:root {
  --bg: #f7f4ea;
  --surface: #ffffff;
  --surface-soft: #eef4ef;
  --text: #1b2b23;
  --muted: #53635a;
  --primary: #0f4f3f;
  --primary-strong: #0b3c31;
  --accent: #8cb43f;
  --accent-2: #d89b2f;
  --border: rgba(15, 79, 63, 0.14);
  --shadow: 0 18px 60px rgba(12, 39, 31, 0.10);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1200px;
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(140, 180, 63, 0.07), rgba(255, 255, 255, 0.5));
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(140, 180, 63, 0.14), transparent 30%),
    linear-gradient(180deg, #0c3028, #123c31);
  color: #f5f8f5;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: .8rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(247, 244, 234, 0.86);
  border-bottom: 1px solid rgba(15, 79, 63, 0.08);
}

.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: clamp(150px, 18vw, 190px);
  height: auto;
}

.main-nav ul {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: .96rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary);
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  position: relative;
  min-height: min(92svh, 880px);
  display: grid;
  align-items: center;
  isolation: isolate;
  padding: 2rem 0;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 22, 17, 0.78) 0%, rgba(7, 22, 17, 0.58) 38%, rgba(7, 22, 17, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 22, 17, 0.18), rgba(7, 22, 17, 0.38));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: clamp(3rem, 8vw, 7rem);
  padding-bottom: clamp(3rem, 8vw, 7rem);
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
}

.hero h1,
.section h2 {
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  max-width: 12ch;
}

.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.hero-text,
.section-head p,
.card p,
.feature-card p,
.step-card p,
.faq-body p,
.site-footer p,
.site-footer li,
.stat-card span {
  color: inherit;
}

.hero-text {
  max-width: 62ch;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #6e9f1f);
  color: #102217;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-badges li {
  padding: .7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  font-weight: 700;
  font-size: .95rem;
}

.intro-strip {
  background: linear-gradient(180deg, rgba(15, 79, 63, 0.05), rgba(255, 255, 255, 0.35));
}

.stats-grid,
.cards-grid,
.steps-grid,
.pillars,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card,
.card,
.feature-card,
.step-card,
.growth-box,
.faq-item,
.cta-box {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.25rem;
}

.stat-card strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: .4rem;
  color: var(--primary);
}

.grid-2,
.split-highlight,
.vision-wrap,
.cta-box {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: clamp(1.4rem, 2.2vw, 2rem);
}

.section-head {
  max-width: 860px;
  margin-bottom: 2rem;
}

.section-head-light .eyebrow,
.section-head-light h2,
.section-head-light p {
  color: #f5f8f5;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 1.4rem;
}

.feature-card h3,
.step-card h3,
.site-footer h3 {
  margin-top: 0;
  margin-bottom: .8rem;
  line-height: 1.2;
}

.feature-card ul,
.growth-box ul,
.clean-list,
.site-footer ul {
  margin: 0;
  padding-left: 1.1rem;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  position: relative;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f5f8f5;
  box-shadow: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  border-radius: 14px;
  font-weight: 900;
  color: #113126;
  background: linear-gradient(135deg, var(--accent-2), #f2b14d);
  margin-bottom: 1rem;
}

.fundamentos {
  margin-top: 2rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.fundamentos h3 {
  margin-top: 0;
}

.fundamentos ol {
  margin: 0;
  padding-left: 1.2rem;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.clean-list li + li {
  margin-top: .5rem;
}

.pillars {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pillar {
  padding: 1rem 1.1rem;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.vision-wrap {
  align-items: start;
}

.vision-content {
  padding-right: 1rem;
}

.chips {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.chips span {
  padding: .7rem .95rem;
  border-radius: 999px;
  background: rgba(15, 79, 63, 0.08);
  border: 1px solid var(--border);
  font-weight: 700;
}

.growth-box {
  padding: 1.6rem;
  background: linear-gradient(180deg, #0f4f3f, #123f33);
  color: #fff;
}

.growth-box h3 {
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.25rem;
  font-weight: 800;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-body {
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
}

.cta-section {
  padding-bottom: 5rem;
}

.cta-box {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(140, 180, 63, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4f7f1);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.contact-lines {
  display: grid;
  gap: .65rem;
}

.contact-line {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--text);
  font-weight: 600;
}

.contact-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  color: var(--primary);
}

.site-footer {
  background: #0d211a;
  color: rgba(255, 255, 255, 0.82);
  padding-top: 3rem;
}

.footer-grid {
  grid-template-columns: 1.3fr .8fr .8fr;
  align-items: start;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding: .65rem .9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(140, 180, 63, 0.2), rgba(15, 79, 63, 0.35));
}

.footer-logo {
  margin-bottom: 0;
  filter: brightness(1.12) contrast(1.04);
  width: 132px;
  height: auto;
}

.footer-brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

.footer-tagline {
  margin-top: .95rem;
  max-width: 36ch;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  color: rgba(140, 180, 63, 0.95);
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer li + li {
  margin-top: .6rem;
}

.footer-bottom {
  padding: 1.2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
  background: #1ebe5b;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.noscript-warning {
  position: fixed;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 999;
  padding: 1rem;
  border-radius: 12px;
  background: #111;
  color: #fff;
  text-align: center;
}

@media (max-width: 1080px) {
  .stats-grid,
  .cards-grid,
  .steps-grid,
  .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-2,
  .split-highlight,
  .vision-wrap,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .vision-content {
    padding-right: 0;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + .65rem);
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: .8rem;
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav li + li {
    border-top: 1px solid rgba(15, 79, 63, 0.08);
  }

  .main-nav a {
    display: block;
    padding: .9rem .5rem;
  }

  .hero {
    min-height: 78svh;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .stats-grid,
  .cards-grid,
  .steps-grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    gap: .55rem;
  }

  .hero-badges li,
  .btn {
    width: 100%;
  }

  .faq-item summary {
    padding-right: 3rem;
  }

  .footer-logo-badge {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-brand-name {
    font-size: .98rem;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: .8rem;
    bottom: .8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}