@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --green-900: #0B2A1F;
  --green-800: #0F3628;
  --green-700: #154332;
  --green-600: #1B5940;
  --green-500: #24704F;
  --green-100: #E4EEE7;
  --gold-700: #96751F;
  --gold-600: #B8912F;
  --gold-500: #CBA43F;
  --gold-100: #F5EBD2;
  --cream-50: #FBF8F1;
  --cream-100: #F3EDDD;
  --white: #FFFFFF;
  --ink-900: #1C1B18;
  --ink-700: #423F38;
  --ink-500: #6E6A60;
  --ink-300: #A9A399;
  --border: #E5DFCF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --step-xs: 0.8125rem;
  --step-sm: 0.9375rem;
  --step-md: 1.0625rem;
  --step-lg: 1.375rem;
  --step-xl: 1.875rem;
  --step-2xl: 2.5rem;
  --step-3xl: 3.25rem;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(11, 42, 31, 0.08);
  --shadow-md: 0 12px 32px rgba(11, 42, 31, 0.12);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  font-size: var(--step-md);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-900);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
}
h1 { font-size: var(--step-3xl); }
h2 { font-size: var(--step-2xl); }
h3 { font-size: var(--step-lg); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--white); }
.section--dark {
  background: var(--green-900);
  color: var(--cream-100);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section--dark .eyebrow { background: rgba(203, 164, 63, 0.18); color: var(--gold-500); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.lede {
  font-size: var(--step-lg);
  color: var(--ink-700);
  max-width: 640px;
}
.section--dark .lede { color: var(--cream-100); opacity: 0.85; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step-sm);
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: var(--gold-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--gold:hover { background: var(--gold-700); box-shadow: var(--shadow-md); }
.btn--outline {
  background: transparent;
  border-color: var(--green-600);
  color: var(--green-700);
}
.btn--outline:hover { background: var(--green-600); color: var(--white); }
.btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--sm { padding: 10px 20px; font-size: var(--step-xs); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Notice bar ---------- */
.notice-bar {
  background: var(--green-900);
  color: var(--gold-100);
  font-size: var(--step-xs);
  font-weight: 600;
}
.notice-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  position: relative;
}
.notice-bar a { color: var(--gold-500); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Sticky top bar (notice bar + header stay in place while scrolling) ---------- */
.site-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--cream-50);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: var(--step-md);
  color: var(--green-900);
}
.brand-text span {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 700;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-weight: 600;
  font-size: var(--step-sm);
  color: var(--ink-700);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { background: var(--green-100); color: var(--green-800); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.social-icons { display: flex; align-items: center; gap: 8px; }
.social-icons a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.social-icons a:hover { background: var(--green-700); color: var(--white); transform: translateY(-2px); }
.social-icons svg { width: 18px; height: 18px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-900);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: var(--topbar-height, 73px);
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--cream-50);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { padding: 14px; font-size: var(--step-md); }
  .header-actions .social-icons { display: none; }
  .header-actions .btn span.btn-label-full { display: none; }
  .nav-toggle { display: block; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 420px) {
  .brand-text strong { font-size: var(--step-sm); }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(203,164,63,0.16), transparent 55%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 24px 88px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero .lede { color: var(--cream-100); opacity: 0.88; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-art {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art img { width: 100%; max-width: 260px; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; padding: 56px 24px 64px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-art { max-width: 260px; margin: 0 auto; }
}

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
}
.stat-card .stat-num {
  font-family: var(--font-display);
  font-size: var(--step-3xl);
  color: var(--gold-600);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-card .stat-label {
  font-weight: 700;
  font-size: var(--step-sm);
  color: var(--green-800);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.card .icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon-badge svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-500); }
.card-tag {
  display: inline-block;
  font-size: var(--step-xs);
  font-weight: 700;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Program catalog list ---------- */
.program-group { margin-bottom: 56px; }
.program-group:last-of-type { margin-bottom: 0; }
.program-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 700px) {
  .program-list { grid-template-columns: 1fr; }
}
.program-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.program-item .program-title { font-weight: 600; color: var(--green-900); }
.program-item .program-batch {
  flex-shrink: 0;
  font-size: var(--step-xs);
  font-weight: 700;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- Feedback / testimonial cards ---------- */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.feedback-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.feedback-card__quote {
  font-family: var(--font-display);
  font-size: var(--step-lg);
  color: var(--green-900);
  margin-bottom: 16px;
}
.feedback-card__author { font-weight: 700; color: var(--green-800); }
.feedback-card__role { color: var(--ink-500); font-size: var(--step-xs); }
.embed-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12px;
}
.embed-card iframe, .embed-card blockquote.instagram-media { width: 100% !important; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .icon-badge { flex-shrink: 0; }
.contact-item h4 { margin-bottom: 4px; font-family: var(--font-body); }
.contact-item p { color: var(--ink-500); }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: var(--step-xs);
  color: var(--green-800);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--step-sm);
  background: var(--white);
  color: var(--ink-900);
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px var(--green-100);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gold-600);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); }
.cta-banner .lede { color: rgba(255,255,255,0.9); margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: var(--cream-100);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 40px; width: 40px; }
.footer-brand strong { font-family: var(--font-display); font-size: var(--step-md); color: var(--white); }
.site-footer p { color: rgba(245,235,210,0.72); }
.footer-col h4 {
  color: var(--gold-500);
  font-family: var(--font-body);
  font-size: var(--step-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(245,235,210,0.82);
  padding: 6px 0;
  font-size: var(--step-sm);
}
.footer-col a:hover { color: var(--gold-500); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: var(--step-xs);
  color: rgba(245,235,210,0.6);
}
.footer-bottom .social-icons a { background: rgba(255,255,255,0.08); color: var(--white); }
.footer-bottom .social-icons a:hover { background: var(--gold-600); }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 200;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }
.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--green-900);
  color: var(--white);
  font-size: var(--step-xs);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.whatsapp-float:hover .whatsapp-float__tooltip,
.whatsapp-float:focus-visible .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: var(--green-900);
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { color: var(--cream-100); opacity: 0.85; max-width: 560px; margin: 0 auto; }

/* ---------- Legal / privacy text page ---------- */
.legal-content h2 { margin-top: 2em; }
.legal-content ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.legal-content li { margin-bottom: 0.4em; }
.legal-content { max-width: 760px; margin: 0 auto; color: var(--ink-700); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
