:root{
  --bg:#F6F7F4;
  --tint:#EEF3EC;
  --card:#FFFFFF;
  --text:#111827;
  --muted:#586274;
  --line: rgba(17,24,39,.12);

  --green:#7FBF9A;   /* principal */
  --deep:#2F6F57;    /* acento */
  --soft:#E7F4EC;    /* botón suave */
  --shadow: 0 14px 30px rgba(17,24,39,.08);

  --r:16px;
  --max: 1120px;
  --font: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(127,191,154,.20), transparent 60%),
    radial-gradient(800px 450px at 90% 15%, rgba(47,111,87,.08), transparent 55%),
    linear-gradient(180deg, var(--bg), #fff);
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), 92vw); margin:0 auto; }
.muted{ color:var(--muted); }
.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;
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(246,247,244,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand__mark{
  width:44px; height:44px;
  border-radius:14px;
  background: #fff;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:grid; place-items:center;
}
/* Esto agranda tu logo sin cambiar el cuadro */
.brand__logo{
  width:125%;
  height:125%;
  object-fit:contain;
}
.brand__text strong{ display:block; font-size:14px; }
.brand__text small{ display:block; font-size:12px; color:var(--muted); margin-top:2px; }

/* Nav */
.nav__toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:10px;
}
.nav__bars{
  display:block; width:18px; height:12px; position:relative;
}
.nav__bars, .nav__bars::before, .nav__bars::after{
  background:transparent;
}
.nav__bars::before, .nav__bars::after{
  content:""; position:absolute; left:0; right:0; height:2px;
  background: rgba(17,24,39,.75);
  border-radius:2px;
}
.nav__bars::before{ top:0; }
.nav__bars::after{ bottom:0; }
.nav__menu{
  display:flex; align-items:center; gap:12px;
  list-style:none; margin:0; padding:0;
}
.nav__menu a{
  font-size:13px;
  padding:10px 10px;
  border-radius:12px;
}
.nav__menu a:hover{ background: rgba(47,111,87,.08); }

@media (max-width:960px){
  .nav__toggle{ display:inline-flex; }
  .nav__menu{
    position:absolute; right:4vw; top:68px;
    width:min(92vw, 360px);
    background: rgba(255,255,255,.95);
    border:1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding:10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
  }
  .nav__menu.is-open{ display:flex; }
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius: 14px;
  border:1px solid var(--line);
  font-weight:800;
  font-size:13px;
  background:#fff;
  cursor:pointer;
}
.btn--primary{
  background: linear-gradient(180deg, rgba(127,191,154,.95), rgba(127,191,154,.75));
  border-color: rgba(47,111,87,.25);
  color:#07110D;
}
.btn--soft{
  background: var(--soft);
  border-color: rgba(47,111,87,.18);
}
.btn--ghost{
  background:#fff;
}
.btn--block{ width:100%; }

/* Hero */
.hero{ padding: 28px 0 20px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
}
.tag{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(47,111,87,.18);
  background: rgba(127,191,154,.15);
  font-size:12px;
}
.tag__dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--deep);
}
.hero h1{
  margin:12px 0 8px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height:1.15;
}
.lead{ margin:0; color:var(--muted); line-height:1.7; max-width: 60ch; }
.hero__cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
  margin-top:14px;
}
.stat{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 14px;
  padding:10px;
  box-shadow: var(--shadow);
}
.stat strong{ display:block; font-size:18px; }
.stat span{ display:block; color:var(--muted); font-size:12px; margin-top:4px; }

.note{
  margin-top:12px;
  background: rgba(47,111,87,.06);
  border:1px dashed rgba(47,111,87,.22);
  padding:12px;
  border-radius: 14px;
  font-size:13px;
  color: rgba(17,24,39,.90);
}
.hero__card .heroCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 18px;
  padding:16px;
  box-shadow: var(--shadow);
}
.heroCard h2{ margin:0; font-size:18px; }
.bullets{ margin:12px 0 14px; padding-left:18px; color: rgba(17,24,39,.90); }
.bullets li{ margin:8px 0; }

@media (max-width:980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__stats{ grid-template-columns: 1fr; }
}

/* Sections */
.section{ padding: 42px 0; }
.section--tint{
  background: linear-gradient(180deg, rgba(239,243,236,.9), rgba(255,255,255,.2));
  border-top:1px solid rgba(17,24,39,.06);
  border-bottom:1px solid rgba(17,24,39,.06);
}
.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px; margin-bottom: 16px;
}
.section__head h2{ margin:0; font-size: 26px; }
.section__head p{ margin:0; }

/* Programs */
.programs{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.program{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 18px;
  padding:16px;
  box-shadow: var(--shadow);
}
.program--highlight{
  border-color: rgba(47,111,87,.22);
  outline: 2px solid rgba(127,191,154,.25);
}
.program__top{ display:flex; gap:8px; flex-wrap:wrap; }
.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background:#fff;
}
.pill--green{
  background: rgba(127,191,154,.18);
  border-color: rgba(47,111,87,.18);
}
.program h3{ margin:10px 0 6px; }
.check{ list-style:none; margin:12px 0; padding:0; display:grid; gap:8px; }
.check li{ padding-left:22px; position:relative; font-size:13px; }
.check li::before{
  content:"✓"; position:absolute; left:0; top:0;
  color: var(--deep); font-weight:900;
}
.link{
  display:inline-flex; margin-top:6px;
  color: var(--deep); font-weight:800; font-size:13px;
}
.link:hover{ text-decoration:underline; }

.method{
  margin-top:14px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 18px;
  padding:14px;
  box-shadow: var(--shadow);
}
.method h3{ margin:0 0 10px; font-size:16px; }
.steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:10px;
}
.step{
  background: rgba(127,191,154,.14);
  border:1px solid rgba(47,111,87,.14);
  border-radius: 14px;
  padding:10px;
  font-size:13px;
  font-weight:800;
  display:flex; gap:10px; align-items:center;
}
.step span{
  width:26px; height:26px;
  border-radius: 10px;
  background: rgba(47,111,87,.18);
  display:grid; place-items:center;
}
@media (max-width:980px){
  .programs{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}

/* Services cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 18px;
  padding:16px;
  box-shadow: var(--shadow);
}
.icon{
  width:40px; height:40px;
  border-radius: 14px;
  background: rgba(127,191,154,.20);
  border:1px solid rgba(47,111,87,.16);
  display:grid; place-items:center;
  font-size:18px;
}
.card h3{ margin:10px 0 6px; }
.mini{ margin:10px 0; padding-left:18px; color: rgba(17,24,39,.88); }
.mini li{ margin:7px 0; }
@media (max-width:980px){
  .cards{ grid-template-columns: 1fr; }
}

/* Resources */
.resources{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.resource{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 18px;
  padding:16px;
  box-shadow: var(--shadow);
}
.resource h3{ margin:0 0 6px; }
@media (max-width:980px){
  .resources{ grid-template-columns: 1fr; }
}

/* Testimonials */
.testi{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 18px;
  padding:16px;
  box-shadow: var(--shadow);
}
.testi__quote{ margin:0; font-size:18px; line-height:1.55; }
.testi__bottom{
  margin-top:12px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.testi__controls{ display:flex; gap:8px; }

/* FAQ */
.faq details{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 16px;
  padding:12px 14px;
  margin-bottom:10px;
  box-shadow: var(--shadow);
}
.faq summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq p{ margin:10px 0 0; line-height:1.7; }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  align-items:start;
}
.contact__box{
  margin:12px 0;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 18px;
  padding:14px;
  box-shadow: var(--shadow);
}
.contactItem{ margin:8px 0; }
.form{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 18px;
  padding:16px;
  box-shadow: var(--shadow);
}
label{ display:grid; gap:8px; font-size:13px; font-weight:900; }
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-bottom:10px;
}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(17,24,39,.14);
  background:#fff;
  outline:none;
  font-family:inherit;
}
textarea{ min-height:110px; resize:vertical; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(47,111,87,.35);
  box-shadow: 0 0 0 4px rgba(127,191,154,.18);
}
.hint{ margin:10px 0 0; font-size:12px; color:var(--muted); }

@media (max-width:980px){
  .contact{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
}

/* Footer */
.footer{
  padding:18px 0;
  border-top:1px solid rgba(17,24,39,.08);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.footer__brand{ display:flex; gap:10px; align-items:center; }
.footer__logo{
  width:38px; height:38px;
  border-radius: 14px;
  border:1px solid var(--line);
  background:#fff;
  overflow:hidden;
}
@media (max-width:720px){
  .footer__inner{ flex-direction:column; align-items:flex-start; }
}

/* Reveal */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}
