:root {

  --green-deep: #1A2403;
  --lime: #C8FF01;
  --gold: #FFCE00;
  --white: #FFFFFF;

  --green: #547634;
  --green-olive: #63783A;
  --green-light: #BBD55B;

  --gray-100: #f4f5f1;
  --gray-300: #A7A9AA;
  --gray-600: #606060;
  --gray-900: #3D3D3F;

  --green-deep-2: #232f06;
  --ink: #1d2208;
  --bg: #ffffff;
  --bg-soft: #f7f8f3;
  --line: rgba(26, 36, 3, 0.10);

  --maxw: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 18px rgba(26, 36, 3, 0.07);
  --shadow-md: 0 18px 50px rgba(26, 36, 3, 0.12);
  --shadow-lg: 0 30px 80px rgba(26, 36, 3, 0.18);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 12px 30px rgba(255, 206, 0, 0.35);
}
.btn-primary:hover { background: var(--lime); box-shadow: 0 16px 40px rgba(200, 255, 1, 0.45); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn-pill {
  padding: .65rem 1.25rem;
  font-size: .9rem;
  background: var(--lime);
  color: var(--green-deep);
}
.btn-pill:hover { background: var(--gold); }

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--lime));
  z-index: 1000;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
}
.site-header.scrolled {

  background: rgba(251, 252, 248, 0.97);
  box-shadow: 0 10px 30px rgba(26, 36, 3, 0.12);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 96px; width: auto;
  max-width: none;
  flex-shrink: 0;
  transition: height .4s var(--ease);
}
.site-header.scrolled .brand-logo { height: 62px; }

.logo-scrolled { display: none; }
.site-header.scrolled .logo-top { display: none; }
.site-header.scrolled .logo-scrolled { display: block; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  color: var(--white);
  font-weight: 600;
  font-size: .98rem;
  position: relative;
  opacity: .9;
  transition: opacity .25s, color .25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--lime);
  transition: width .3s var(--ease);
}
.nav-link:hover { opacity: 1; color: var(--lime); }
.nav-link:hover::after { width: 100%; }

.site-header.scrolled .nav-link { color: var(--green-deep); opacity: 1; }
.site-header.scrolled .nav-link::after { background: var(--green); }
.site-header.scrolled .nav-link:hover { color: var(--green); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s, background .3s;
}
.site-header.scrolled .nav-toggle span { background: var(--green-deep); }
.nav-toggle.open span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(84, 118, 52, 0.55), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(35, 47, 6, 0.9), transparent 55%),
    linear-gradient(160deg, #1A2403 0%, #0f1602 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .45;
}
.orb-1 { width: 420px; height: 420px; background: var(--lime); top: -80px; right: 8%; opacity: .22; }
.orb-2 { width: 340px; height: 340px; background: var(--gold); bottom: 4%; left: -60px; opacity: .18; }
.orb-3 { width: 260px; height: 260px; background: var(--green-light); top: 40%; left: 45%; opacity: .14; }

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,255,1,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,255,1,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 70% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, black, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { max-width: 640px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(200, 255, 1, 0.08);
  border: 1px solid rgba(200, 255, 1, 0.25);
  padding: .5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.8rem;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(200,255,1,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200,255,1,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(200,255,1,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,255,1,0); }
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.hero-title .line { display: block; }
.hero-title .accent {
  background: linear-gradient(100deg, var(--gold) 10%, var(--lime) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  color: var(--green-light);
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.06rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 2.3rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  backdrop-filter: blur(6px);
  transition: transform .4s var(--ease), border-color .3s, background .3s;
}
.stat:hover {
  transform: translateY(-5px);
  border-color: rgba(200,255,1,0.4);
  background: rgba(200,255,1,0.06);
}
.stat-num {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}
.stat-label {
  display: block;
  margin-top: .4rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255,255,255,0.7);
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.mouse {
  display: block;
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  position: relative;
}
.wheel {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--lime);
  border-radius: 2px;
  animation: wheel 1.6s infinite;
}
@keyframes wheel {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

.tools-band {
  background: var(--green-deep);
  padding: 2.6rem 0 3rem;
  border-top: 1px solid rgba(200,255,1,0.12);
}
.band-title {
  text-align: center;
  color: var(--green-light);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 1.8rem;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}
.chip {
  flex: 0 0 auto;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(200,255,1,0.22);
  background: rgba(255,255,255,0.03);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  transition: background .3s, color .3s, border-color .3s;
}
.chip:hover { background: var(--lime); color: var(--green-deep); border-color: var(--lime); }

.intro {
  padding: 7rem 0;
  background: var(--bg-soft);
}
.intro-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.intro-heading {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.intro-heading .hl {
  background: linear-gradient(100deg, var(--green) 0%, var(--green-olive) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.intro-text {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 720px;
  margin: 0 auto;
}

.program { padding: 6.5rem 0; }
.section-head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(84,118,52,0.1);
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.kicker.light { color: var(--lime); background: rgba(200,255,1,0.1); }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-desc { font-size: 1.08rem; color: var(--gray-600); }
.section-desc.light { color: rgba(255,255,255,0.78); }

.modules { display: flex; flex-direction: column; gap: 1.8rem; }

.module {
  display: grid;
  grid-template-columns: 120px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.module:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.module-index {
  background: linear-gradient(165deg, var(--green-deep), var(--green-deep-2));
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2.4rem;
  position: relative;
}
.module-index::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(200,255,1,0.06) 1px, transparent 1px);
  background-size: 100% 28px;
  opacity: .5;
}
.module-index span {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--lime);
  position: relative;
  z-index: 1;
}
.module-body { padding: 2.4rem 2.6rem; min-width: 0; }

.module-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 1.6rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
}
.module-tag {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .4rem;
}
.module-title {
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.module-hours {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.module-hours strong { font-size: 1.35rem; font-weight: 800; line-height: 1; }

.module-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}
.col-label {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.deliverable-label { margin-top: 1.8rem; }

.checklist li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .7rem;
  color: var(--gray-600);
  font-size: .96rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--green-light);
  transform: rotate(45deg);
}

.tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  font-size: .82rem;
  font-weight: 600;
  padding: .42rem .85rem;
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--green-deep);
  border: 1px solid var(--line);
  transition: background .25s, color .25s, transform .25s;
}
.tag:hover { background: var(--green-deep); color: var(--lime); transform: translateY(-2px); }

.deliverable {
  font-size: .95rem;
  color: var(--gray-600);
  background: var(--bg-soft);
  border-left: 3px solid var(--gold);
  padding: .9rem 1.1rem;
  border-radius: 0 10px 10px 0;
}

.module-quote {
  margin-top: 2rem;
  padding: 1.3rem 1.6rem 1.3rem 3.2rem;
  position: relative;
  background: linear-gradient(100deg, rgba(84,118,52,0.08), rgba(200,255,1,0.05));
  border-radius: 14px;
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-deep);
}
.module-quote::before {
  content: "\201C";
  position: absolute;
  left: 1rem; top: .1rem;
  font-size: 3rem;
  font-weight: 800;
  font-style: normal;
  color: var(--green-light);
  line-height: 1;
}

.result {
  position: relative;
  padding: 7rem 0;
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(84,118,52,0.5), transparent 60%),
    linear-gradient(160deg, #1A2403, #0d1302);
  color: var(--white);
  overflow: hidden;
}
.result-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-r1 { width: 380px; height: 380px; background: var(--lime); top: -60px; left: -80px; opacity: .12; filter: blur(70px); border-radius: 50%; position: absolute; }
.orb-r2 { width: 300px; height: 300px; background: var(--gold); bottom: 10%; right: -60px; opacity: .1; filter: blur(70px); border-radius: 50%; position: absolute; }

.result .container { position: relative; z-index: 1; }

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}
.step {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.9rem;
  transition: transform .45s var(--ease), border-color .35s, background .35s;
}
.step:hover {
  transform: translateY(-8px);
  border-color: rgba(200,255,1,0.4);
  background: rgba(200,255,1,0.05);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--lime);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.3rem;
}
.step-phase {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.step-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .8rem;
}
.step-text { color: rgba(255,255,255,0.78); font-size: .98rem; }

.closing {
  margin-top: 4rem;
  text-align: center;
}
.closing-line {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  line-height: 1.2;
}
.closing-line.big {
  font-weight: 800;
  background: linear-gradient(100deg, var(--gold), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact { padding: 7rem 0; background: var(--bg-soft); }
.contact-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}
.contact-intro .section-head { text-align: left; margin: 0; }
.contact-intro .kicker { display: inline-block; }
.contact-intro .section-title { text-align: left; }
.contact-intro .btn { margin-top: 1.5rem; }
.contact-intro .section-desc { margin-bottom: .5rem; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cc-icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--green-deep), var(--green-deep-2));
  color: var(--lime);
}
.cc-icon svg {
  width: 22px; height: 22px;
  stroke-width: 2;
}
.cc-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .35rem;
}
.cc-value {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-deep);
  transition: color .25s;
}
.cc-value:hover { color: var(--green); }
.cc-value small { font-weight: 500; color: var(--gray-600); font-size: .82rem; }
.cc-email { font-size: .92rem; word-break: break-word; }

.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.78);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 70px; width: auto; margin-bottom: 1.2rem; }
.footer-tagline { font-size: .98rem; max-width: 380px; color: rgba(255,255,255,0.7); }
.footer-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 1.4rem; }

.footer-aviso-wrap {
  position: relative;
  display: block;
  width: 440px;
  max-width: 100%;
  height: 44px;
}
.footer-aviso {
  position: absolute;
  top: 50%; left: 50%;
  height: 440px;
  width: auto;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
  opacity: .92;
}
.footer-legal { font-size: .88rem; line-height: 1.7; }
.footer-legal a { color: var(--lime); }
.footer-legal a:hover { text-decoration: underline; }
.footer-bottom { padding: 1.6rem 0; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,0.55); }

.cta-end {
  padding: 5.5rem 0;
  background: linear-gradient(160deg, var(--green-deep), var(--green-deep-2));
  position: relative;
  overflow: hidden;
}
.cta-end-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.4rem;
  align-items: center;
  background: linear-gradient(120deg, rgba(255,255,255,0.04), rgba(200,255,1,0.05));
  border: 1px solid rgba(200,255,1,0.22);
  border-radius: var(--radius-lg);
  padding: 2.8rem 3rem;
  position: relative;
  overflow: hidden;
}
.cta-end-card::before {
  content: ""; position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,206,0,0.18), transparent 70%);
  right: -100px; top: -120px; pointer-events: none;
}
.cta-end-card::after {
  content: ""; position: absolute;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,1,0.14), transparent 70%);
  left: -70px; bottom: -90px; pointer-events: none;
}
.cta-end-content { position: relative; z-index: 1; }
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--lime); background: rgba(200,255,1,0.1);
  border: 1px solid rgba(200,255,1,0.25);
  padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
.cta-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
  animation: pulse 2s infinite;
}
.cta-title {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.18;
  color: var(--white); margin-bottom: .8rem; max-width: 680px;
}
.cta-text { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; }
.btn-cta-end {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font); font-weight: 800; font-size: 1.08rem;
  padding: 1.15rem 2.2rem;
  background: var(--gold); color: var(--green-deep);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(255,206,0,0.35);
  position: relative; z-index: 1;
  transition: transform .35s var(--ease), background .3s, box-shadow .35s;
}
.btn-cta-end svg { width: 1.15em; height: 1.15em; }
.btn-cta-end:hover {
  transform: translateY(-3px);
  background: var(--lime);
  box-shadow: 0 18px 40px rgba(200,255,1,0.45);
}

[data-anim], .reveal { will-change: transform, opacity; }

.no-js [data-anim], .no-js .reveal { opacity: 1 !important; transform: none !important; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-content { max-width: none; }
  .module-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .timeline { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-intro .section-title, .contact-intro .section-head { text-align: left; }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 360px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .25rem;
    padding: clamp(5rem, 13vh, 6.5rem) 1.8rem 2rem;
    background: rgba(26, 36, 3, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.45);
    z-index: 940;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link,
  .site-header.scrolled .nav-link {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1rem .25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 1;
  }
  .nav-link::after { display: none; }
  .nav-link:hover { color: var(--lime); }
  .nav-cta {
    margin-top: 1.4rem;
    font-size: 1.05rem;
    padding: 1rem 1.6rem;
    text-align: center;
    align-self: stretch;
    justify-content: center;
  }
  .nav-toggle { display: flex; z-index: 960; }

  .brand-logo { height: 64px; }
  .site-header.scrolled .brand-logo { height: 50px; }

  .hero { padding: 130px 0 80px; }
}

@media (max-width: 760px) {
  .brand-logo { height: 52px; }
  .site-header.scrolled .brand-logo { height: 44px; }

  .hero { padding: 120px 0 70px; }
  .hero-stats { gap: .8rem; }
  .stat { padding: 1.2rem 1rem; }

  .module { grid-template-columns: 1fr; }
  .module-index {
    flex-direction: row;
    align-items: center;
    padding: 1rem 1.6rem;
    justify-content: flex-start;
  }
  .module-index span { font-size: 1.8rem; }
  .module-body { padding: 1.8rem 1.6rem; }
  .module-head { flex-direction: column-reverse; align-items: flex-start; }

  .intro, .program, .result, .contact { padding: 4.5rem 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .footer-aviso-wrap { width: 320px; height: 32px; }
  .footer-aviso { height: 320px; }

  .cta-end { padding: 3.5rem 0; }
  .cta-end-card { grid-template-columns: 1fr; padding: 2.2rem 1.8rem; gap: 1.5rem; }
  .btn-cta-end { justify-content: center; padding: 1rem 1.8rem; font-size: 1rem; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-anim], .reveal { opacity: 1 !important; transform: none !important; }
}
