:root {
  --green: #3e9b3f;
  --green-dark: #176338;
  --green-soft: #e8f6e8;
  --orange: #d2691e;
  --orange-dark: #a64a12;
  --cream: #fff7ea;
  --white: #ffffff;
  --ink: #152016;
  --muted: #5f6e60;
  --line: rgba(21, 32, 22, 0.12);
  --shadow: 0 26px 80px rgba(21, 32, 22, 0.15);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fffdf8;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section { padding: 88px 0; }
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.label::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--orange));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  width: min(var(--max), calc(100% - 28px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  padding: 5px;
  box-shadow: 0 12px 30px rgba(21,32,22,0.11);
}
.brand-name {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.menu a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.95rem;
  transition: background .2s ease, color .2s ease;
}
.menu a:hover, .menu a.active {
  background: var(--green-soft);
  color: var(--green-dark);
}
.nav-whatsapp, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-whatsapp, .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 34px rgba(23, 99, 56, 0.24);
}
.nav-whatsapp:hover, .btn:hover { transform: translateY(-2px); }
.btn-outline {
  background: #fff;
  color: var(--green-dark);
  border: 2px solid rgba(62, 155, 63, 0.25);
}
.menu-button {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--green-soft);
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-dark);
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; }
.menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(62,155,63,.18), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(210,105,30,.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fff8ef 52%, #edf8ed 100%);
}
.hero-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(.1px);
}
.shape-one {
  width: 420px;
  height: 420px;
  right: -170px;
  top: 130px;
  border: 38px solid rgba(210, 105, 30, .16);
}
.shape-two {
  width: 520px;
  height: 520px;
  left: -260px;
  bottom: -220px;
  border: 45px solid rgba(62, 155, 63, .13);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 46px;
}
.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: .88;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}
.hero-text {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.hero-actions, .contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-contact span {
  padding: 9px 13px;
  border: 1px solid rgba(23, 99, 56, .14);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  color: var(--green-dark);
  font-weight: 800;
  font-size: .9rem;
}
.hero-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 38px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,247,234,.88));
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(62,155,63,.18), rgba(210,105,30,.18));
  transform: rotate(-3deg);
}
.logo-frame {
  display: grid;
  place-items: center;
  min-height: 310px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
}
.logo-frame img {
  width: min(100%, 390px);
  max-height: 300px;
  object-fit: contain;
  padding: 8px;
}
.hero-card-text h2 {
  margin: 24px 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}
.hero-card-text p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}
.pill-row span {
  padding: 8px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-soft), #fff);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.intro { background: #fff; }
.intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  align-items: start;
}
.section-title h2, .program-copy h2, .contact-info h2, .banner-box h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: .95;
  letter-spacing: -0.06em;
}
.section-title.center { text-align: center; max-width: 870px; margin: 0 auto 44px; }
.section-title.center .label { justify-content: center; }
.intro-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-soft), #fff);
  border: 1px solid rgba(62,155,63,.15);
}
.intro-panel p {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: var(--muted);
}
.statement {
  display: block;
  margin-top: 22px;
  color: var(--orange-dark);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
}

.services {
  background:
    linear-gradient(180deg, #fffdf8, #f5fbf2);
}
.service-grid, .coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card, .coverage-card {
  min-height: 270px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 56px rgba(21,32,22,.08);
}
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -62px;
  bottom: -70px;
  border-radius: 999px;
  background: rgba(210,105,30,.12);
}
.icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--green-soft);
  color: var(--green-dark);
}
.icon svg { width: 34px; height: 34px; fill: currentColor; }
.service-card h3, .coverage-card h3 {
  margin: 24px 0 10px;
  font-size: 1.35rem;
  line-height: 1.1;
}
.service-card p {
  margin: 0;
  color: var(--muted);
}

.programs {
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(210,105,30,.26), transparent 28%),
    linear-gradient(135deg, #17341f 0%, #165c34 56%, #0f2b19 100%);
}
.programs .label { color: #ffd7b4; }
.programs .label::before { background: #ffd7b4; }
.programs-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 52px;
}
.program-visual {
  min-height: 460px;
  position: relative;
  display: grid;
  place-items: center;
}
.orbital {
  position: absolute;
  width: min(88vw, 430px);
  height: min(88vw, 430px);
  border-radius: 999px;
  border: 28px solid rgba(255,255,255,.1);
  border-left-color: rgba(255,214,180,.42);
  border-bottom-color: rgba(62,155,63,.48);
  animation: orbit 16s linear infinite;
}
.program-logo {
  width: min(78vw, 330px);
  padding: 22px;
  border-radius: 42px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 26px 80px rgba(0,0,0,.24);
}
.program-copy h2 { max-width: 760px; }
.steps {
  display: grid;
  gap: 13px;
  margin-top: 32px;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
}
.step span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  color: var(--green-dark);
  font-weight: 900;
}
.step p { margin: 0; color: rgba(255,255,255,.88); font-weight: 800; }

.coverage { background: #fff; }
.coverage-card {
  min-height: 170px;
  text-align: center;
  display: grid;
  place-items: center;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(62,155,63,.08), rgba(210,105,30,.08)), #fff;
}
.coverage-card span {
  color: var(--orange);
  font-size: 2.2rem;
  line-height: 1;
}
.coverage-card h3 { margin: 14px 0 0; }

.banner {
  padding-top: 0;
  background: #fff;
}
.banner-box {
  overflow: hidden;
  position: relative;
  padding: 44px;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--green-dark));
  box-shadow: var(--shadow);
}
.banner-box::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -110px;
  width: 280px;
  height: 280px;
  border: 35px solid rgba(255,255,255,.16);
  border-radius: 999px;
}
.banner-box p, .banner-box span {
  position: relative;
  z-index: 1;
  margin: 0;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.banner-box h2 {
  position: relative;
  z-index: 1;
  margin: 12px 0 16px;
}

.contact {
  background:
    radial-gradient(circle at 15% 15%, rgba(62,155,63,.12), transparent 28%),
    linear-gradient(180deg, #fff, #fff8ef);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 34px;
}
.contact-info p:not(.label) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}
.contact-card {
  padding: 30px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-logo {
  width: 190px;
  max-height: 150px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.contact-card li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: #f8faf6;
  border: 1px solid rgba(21,32,22,.07);
}
.contact-card span {
  color: var(--orange-dark);
  font-weight: 900;
}
.contact-card a, .contact-card strong {
  color: var(--green-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.footer {
  padding: 34px 0;
  color: #fff;
  background: #102315;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
}
.footer-grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  padding: 5px;
  border-radius: 18px;
  background: #fff;
}
.footer p { margin: 0; color: rgba(255,255,255,.76); font-weight: 800; }
.to-top {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  font-weight: 900;
}
.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #36b549, var(--green-dark));
  box-shadow: 0 18px 46px rgba(23,99,56,.35);
  font-weight: 900;
}
.float-whatsapp::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border-radius: 999px;
  background: #fff;
}

.reveal {
  transform: translateY(0);
  opacity: 1;
}
.js .reveal {
  transform: translateY(18px);
  opacity: 0;
  transition: opacity .55s ease, transform .55s ease;
}
.js .reveal.visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes orbit { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 980px) {
  .nav { min-height: 74px; }
  .brand-logo { width: 56px; height: 56px; }
  .brand-name { font-size: .94rem; }
  .menu-button { display: block; }
  .menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 60px rgba(21,32,22,.14);
  }
  .menu.is-open { display: grid; }
  .menu a { padding: 14px 16px; }
  .nav-whatsapp { display: none; }
  .hero { min-height: auto; }
  .hero-grid, .intro-grid, .programs-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-card { max-width: 620px; margin: 0 auto; }
  .programs-grid { gap: 18px; }
  .program-visual { min-height: 360px; }
  .service-grid, .coverage-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, var(--max)); }
  .section { padding: 62px 0; }
  .hero { padding-top: 56px; }
  .hero h1 { font-size: clamp(3rem, 18vw, 4.4rem); }
  .hero-actions, .contact-buttons { display: grid; }
  .btn, .nav-whatsapp { width: 100%; }
  .hero-contact span { width: 100%; text-align: center; }
  .hero-card { padding: 16px; border-radius: 28px; }
  .logo-frame { min-height: 230px; border-radius: 22px; }
  .intro-panel, .service-card, .contact-card, .banner-box { padding: 22px; }
  .step { grid-template-columns: 1fr; }
  .contact-card li { grid-template-columns: 1fr; }
  .float-whatsapp { left: 14px; right: 14px; bottom: 14px; }
  .footer { padding-bottom: 88px; }
}
.banner-box small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
