/* ═══════════════════════════════════════════════════════════════
   DOYMA OCHOA – LANDING PAGE STYLES
   Paleta: Naranja Terracota Cálido + Gold + White
   Mobile-first con Bootstrap 5
═══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
  /* Palette – Naranja Terracota Cálido */
  --navy-950:  #1c0800;
  --navy-900:  #2e1200;
  --navy-800:  #3f1b00;
  --navy-700:  #522400;
  --navy-600:  #672f00;
  --navy-500:  #7e3c00;
  --navy-400:  #9a4c10;
  --blue-300:  #c07040;
  --blue-200:  #d9a07a;
  --blue-100:  #f0ccaa;

  --gold-500:  #c8960c;
  --gold-400:  #d4a017;
  --gold-300:  #e0b840;
  --gold-200:  #edd07a;
  --gold-100:  #f8ebc2;

  --white:     #ffffff;
  --gray-50:   #fdf8f4;
  --gray-100:  #f5ede4;
  --gray-200:  #e8d5c4;
  --gray-600:  #7a5a48;
  --gray-700:  #5a3e2e;
  --gray-800:  #3a2518;
  --gray-900:  #1e1208;

  --teal-500:  #0d7a7a;
  --teal-400:  #0f9898;
  --green-500: #157a3c;
  --green-400: #1a9e50;

  /* Spacing */
  --section-py: 5rem;
  --radius-sm:   8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  /* Transitions */
  --trans-fast:  .15s ease;
  --trans-mid:   .25s ease;
  --trans-slow:  .4s ease;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(28,8,0,.14);
  --shadow-md:   0 6px 24px rgba(28,8,0,.20);
  --shadow-lg:   0 16px 48px rgba(28,8,0,.28);
  --shadow-gold: 0 8px 32px rgba(200,150,12,.35);
}

/* ─── RESET / BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }

/* ─── UTILITY CLASSES ────────────────────────────────────────── */
.text-gold   { color: var(--gold-400) !important; }
.text-blue-200 { color: var(--blue-200); }
.text-muted-light { color: var(--blue-200); opacity: .7; }
.bg-navy     { background: var(--navy-900); }

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
  color: var(--navy-900) !important;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast), filter var(--trans-fast);
  letter-spacing: .02em;
}
.btn-gold:hover, .btn-gold:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.07);
  color: var(--navy-900) !important;
}
.btn-gold:active { transform: translateY(0); }

.btn-outline-gold {
  border: 2px solid var(--gold-400);
  color: var(--gold-400) !important;
  background: transparent;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background var(--trans-fast), color var(--trans-fast);
}
.btn-outline-gold:hover {
  background: var(--gold-400);
  color: var(--navy-900) !important;
}

/* Glass cards */
.glass-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-md);
}

.glass-card-dark {
  background: rgba(12,26,53,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
}

/* Section common */
.section-tag {
  display: inline-block;
  background: var(--gold-100);
  color: var(--gold-500);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35em 1em;
  border-radius: 99px;
  border: 1px solid var(--gold-200);
}
.section-tag--light {
  background: rgba(255,255,255,.1);
  color: var(--gold-300);
  border-color: rgba(255,255,255,.15);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy-900);
  font-weight: 700;
}

.section-desc {
  max-width: 600px;
  color: var(--gray-600);
  font-size: 1.05rem;
}


/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
#mainNav {
  background: transparent;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  transition: background var(--trans-slow), padding var(--trans-slow), box-shadow var(--trans-slow);
  z-index: 1050;
}

#mainNav.scrolled {
  background: var(--navy-900);
  padding-top: .65rem;
  padding-bottom: .65rem;
  box-shadow: var(--shadow-md);
}

/* Menú hamburguesa abierto en móvil → fondo sólido */
@media (max-width: 991.98px) {
  #mainNav:has(.navbar-collapse.show),
  #mainNav:has(.navbar-collapse.collapsing) {
    background: var(--navy-900);
    box-shadow: var(--shadow-md);
  }
}

.brand-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  letter-spacing: .02em;
  box-shadow: 0 2px 8px rgba(200,150,12,.4);
}
.brand-monogram--sm { width: 32px; height: 32px; font-size: .8rem; }

.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title  { font-size: .9rem; font-weight: 700; color: var(--white); letter-spacing: .01em; }
.brand-subtitle { font-size: .65rem; color: var(--blue-200); letter-spacing: .08em; text-transform: uppercase; }

.navbar-nav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .75rem !important;
  border-radius: var(--radius-sm);
  transition: color var(--trans-fast), background var(--trans-fast);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,.08);
}


/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg,
    var(--navy-950) 0%,
    var(--navy-800) 45%,
    #522400 100%
  );
  overflow: hidden;
  min-height: 100vh;
}

/* Partículas flotantes */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  animation: float 12s ease-in-out infinite;
}
.p1 { width:340px; height:340px; top:-80px;  left:-80px;  background:var(--navy-500); animation-delay:0s; }
.p2 { width:200px; height:200px; top:20%;    right:-60px; background:var(--gold-400); opacity:.07; animation-delay:-3s; }
.p3 { width:160px; height:160px; bottom:20%; left:5%;     background:var(--blue-300); animation-delay:-6s; }
.p4 { width:120px; height:120px; top:60%;    right:15%;   background:var(--gold-300); opacity:.06; animation-delay:-9s; }
.p5 { width:80px;  height:80px;  bottom:10%; right:30%;   background:var(--white);    opacity:.04; animation-delay:-2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* Hero content */
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--gold-300);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .45em 1.1em;
  border-radius: 99px;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--blue-200);
  font-weight: 400;
  max-width: 560px;
  font-family: 'Inter', sans-serif;
}

/* Stats */
.hero-stats { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; }

.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
}
.stat-label { font-size: .75rem; color: var(--blue-200); letter-spacing: .05em; margin-top: .2rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-badge-card {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1rem 1.25rem;
  max-width: 320px;
  animation: floatCard 6s ease-in-out infinite;
}
.hero-badge-card.bc-bottom { animation-delay: -3s; }

.hbc-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-600), var(--blue-300));
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}
.hbc-icon--green { background: linear-gradient(135deg, var(--green-500), var(--green-400)); }

.hbc-title { font-size: .9rem; font-weight: 700; color: var(--white); }
.hbc-sub   { font-size: .75rem; color: var(--blue-200); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Monogram / photo ring */
.hero-monogram-ring {
  position: relative;
  padding: 5px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500), var(--navy-600));
  border-radius: 50%;
  animation: rotateSlow 18s linear infinite;
}
.monogram-outer {
  width: 210px; height: 210px;
  background: var(--navy-800);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid rgba(255,255,255,.08);
}
.monogram-inner {
  width: 182px; height: 182px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid rgba(200,150,12,.3);
  box-shadow: inset 0 2px 20px rgba(0,0,0,.4), var(--shadow-gold);
  overflow: hidden;
}

/* Foto de la maestra */
.teacher-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
  animation: rotateSlow 18s linear infinite reverse;
}

.monogram-inner span {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-300);
  text-shadow: 0 2px 12px rgba(200,150,12,.5);
  animation: rotateSlow 18s linear infinite reverse;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  z-index: 1;
}
.hero-wave svg { width: 100%; height: auto; display: block; }


/* ═══════════════════════════════════════════════════════════════
   TRAYECTORIA
═══════════════════════════════════════════════════════════════ */
.section-trayectoria {
  background: var(--gray-50);
}

/* Eje cards */
.eje-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-mid), box-shadow var(--trans-mid), border-color var(--trans-mid);
  position: relative;
  overflow: hidden;
}
.eje-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-600), var(--blue-300));
  opacity: 0;
  transition: opacity var(--trans-mid);
}
.eje-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}
.eje-card:hover::before { opacity: 1; }

.eje-card--featured {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-color: rgba(200,150,12,.3);
  color: var(--white);
}
.eje-card--featured::before {
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
  opacity: 1;
}
.eje-card--featured .eje-title  { color: var(--white); }
.eje-card--featured .eje-text   { color: var(--blue-200); }
.eje-card--featured .eje-list li { color: var(--blue-100); }
.eje-card--featured .eje-list .bi { color: var(--gold-300); }
.eje-card--featured .eje-num { color: rgba(255,255,255,.12); }
.eje-card--featured .eje-tag { background: rgba(200,150,12,.2); color: var(--gold-200); border-color: rgba(200,150,12,.3); }

.featured-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: .68rem;
  font-weight: 700;
  padding: .3em .8em;
  border-radius: 99px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.eje-icon-wrap {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.ic-blue { background: linear-gradient(135deg, var(--navy-600), var(--blue-300)); }
.ic-gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-300)); }
.ic-teal { background: linear-gradient(135deg, var(--teal-500), var(--teal-400)); }

.eje-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(28,8,0,.06);
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  line-height: 1;
  user-select: none;
}

.eje-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: .5rem;
}

.eje-text { font-size: .93rem; color: var(--gray-600); }

.eje-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.eje-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .88rem;
  color: var(--gray-700);
}
.eje-list .bi { color: var(--navy-500); font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }

.eje-footer { margin-top: 1.5rem; }
.eje-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3em .85em;
  border-radius: 99px;
  background: var(--gray-100);
  color: var(--navy-600);
  border: 1px solid var(--gray-200);
}

/* Logros bar */
.logros-bar {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.logro-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
}

.logro-label {
  font-size: .8rem;
  color: var(--blue-200);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .35rem;
}


/* ═══════════════════════════════════════════════════════════════
   TRANSPARENCIA
═══════════════════════════════════════════════════════════════ */
.section-transparencia {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 60%, #522400 100%);
  position: relative;
  overflow: hidden;
}

.section-transparencia::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,150,12,.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.section-transparencia .section-title { color: var(--white); }

/* Transparency pillars */
.tp-item { padding: 1rem; border-radius: var(--radius-md); transition: background var(--trans-fast); }
.tp-item:hover { background: rgba(255,255,255,.05); }

.tp-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--navy-900);
}

.tp-title { font-size: .92rem; font-weight: 700; color: var(--white); }
.tp-desc  { font-size: .82rem; color: var(--blue-200); margin-top: .2rem; }

/* Video */
.video-wrapper { position: relative; }

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vp-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 2rem;
}

.vp-badge {
  background: rgba(200,150,12,.2);
  color: var(--gold-300);
  border: 1px solid rgba(200,150,12,.3);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4em 1em;
  border-radius: 99px;
}

.vp-play-btn {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--navy-900);
  cursor: pointer;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
  box-shadow: var(--shadow-gold);
}
.vp-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(200,150,12,.5);
}
.vp-hint { font-size: .82rem; color: var(--blue-200); text-align: center; }

.video-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-embed iframe { width: 100%; height: 100%; }

.video-caption { font-size: .78rem; color: var(--blue-200); }

/* Article card */
.ac-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--navy-900);
}
.ac-label { font-size: .7rem; color: var(--blue-200); text-transform: uppercase; letter-spacing: .08em; }
.ac-title { font-size: .92rem; font-weight: 700; color: var(--white); margin-top: .1rem; }
.ac-meta  { font-size: .75rem; color: var(--blue-200); margin-top: .15rem; }


/* ═══════════════════════════════════════════════════════════════
   LEAD / COMUNIDAD
═══════════════════════════════════════════════════════════════ */
.section-comunidad {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
}

.section-comunidad::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-900), var(--gold-400), var(--navy-900));
}

.lead-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.lead-deco {
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(200,150,12,.08) 0%, transparent 70%);
  pointer-events: none;
}

.lead-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-300);
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.lead-title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: var(--navy-900);
  font-weight: 800;
}

.lead-desc { color: var(--gray-600); font-size: .97rem; max-width: 520px; margin: 0 auto; }

/* Form */
.lead-form .form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .4rem;
}
.lead-form .form-label .bi { color: var(--navy-500); }

.lead-form .form-control {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  font-size: .93rem;
  color: var(--gray-800);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  background: var(--gray-50);
}
.lead-form .form-control:focus {
  border-color: var(--navy-500);
  box-shadow: 0 0 0 3px rgba(26,63,138,.12);
  background: var(--white);
  outline: none;
}
.lead-form .form-control.is-valid  { border-color: var(--green-400); }
.lead-form .form-control.is-invalid { border-color: #dc3545; }

.req { color: #dc3545; font-size: .75rem; }

/* Consent checkbox */
.consent-check .form-check-input {
  width: 1.1em; height: 1.1em;
  margin-top: .15em;
  border-color: var(--gray-200);
}
.consent-check .form-check-input:checked {
  background-color: var(--navy-700);
  border-color: var(--navy-700);
}
.consent-check .form-check-label { font-size: .88rem; color: var(--gray-600); }

/* Success message */
.success-message {
  text-align: center;
  padding: 2.5rem 1rem;
  animation: fadeInUp .4s ease;
}
.sm-icon {
  font-size: 3.5rem;
  color: var(--green-400);
  margin-bottom: 1rem;
}
.success-message h4 { color: var(--navy-900); font-size: 1.4rem; }
.success-message p  { color: var(--gray-600); font-size: .95rem; max-width: 420px; margin: .5rem auto 0; }

/* Legal note */
.legal-note {
  font-size: .8rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
  padding-top: 1.25rem;
  line-height: 1.5;
}
.legal-note a { color: var(--gold-500); text-decoration: none; font-weight: 600; }
.legal-note a:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-950);
  color: var(--blue-200);
}

.footer-heading {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold-500);
  display: inline-block;
}

.footer-desc { font-size: .87rem; color: var(--blue-200); line-height: 1.6; }
.footer-location { font-size: .85rem; color: var(--blue-200); }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-links a {
  color: var(--blue-200);
  font-size: .87rem;
  text-decoration: none;
  transition: color var(--trans-fast);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.footer-links a::before {
  content: '›';
  color: var(--gold-400);
  font-size: 1rem;
  line-height: 1;
}
.footer-links a:hover { color: var(--gold-300); }

.footer-badge {
  font-size: .78rem;
  color: var(--blue-200);
  line-height: 1.5;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--blue-200);
  font-size: .82rem;
}


/* ═══════════════════════════════════════════════════════════════
   MODAL AVISO
═══════════════════════════════════════════════════════════════ */
.modal-privacy .modal-content {
  background: var(--navy-900);
  color: var(--blue-100);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
}
.modal-privacy .modal-header {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 1.5rem;
}
.modal-privacy .modal-title { color: var(--white); font-size: 1.05rem; }
.modal-privacy .modal-body  { font-size: .9rem; line-height: 1.7; }
.modal-privacy .modal-body h6 { font-family: 'Inter', sans-serif; font-size: .88rem; letter-spacing: .04em; }
.modal-privacy .modal-body ul { padding-left: 1.25rem; }
.modal-privacy .modal-body li { margin-bottom: .35rem; }
.modal-privacy .modal-footer { border-top: 1px solid rgba(255,255,255,.08); }


/* ═══════════════════════════════════════════════════════════════
   BOTÓN FLOTANTE WHATSAPP
═══════════════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.55rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  text-decoration: none;
  z-index: 1000;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
  color: #fff;
}
.whatsapp-fab-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy-900);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: .35em .8em;
  border-radius: var(--radius-sm);
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity var(--trans-mid), transform var(--trans-mid);
}
.whatsapp-fab:hover .whatsapp-fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Íconos de redes sociales en footer */
.footer-social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background var(--trans-fast), transform var(--trans-fast), color var(--trans-fast);
}
.footer-social-btn:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-3px);
}
.footer-social-btn--wa:hover {
  background: #25d366;
  color: #fff;
}


/* ═══════════════════════════════════════════════════════════════
   SCROLL-TOP BUTTON
═══════════════════════════════════════════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-300);
  border: 1px solid rgba(200,150,12,.3);
  border-radius: 50%;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--trans-mid), transform var(--trans-mid), box-shadow var(--trans-fast);
  z-index: 999;
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}


/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
═══════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .hero-section { min-height: auto; padding: 6rem 0 4rem; }
  .hero-title   { font-size: clamp(1.75rem, 7vw, 2.8rem); }
  .hero-visual  { margin-top: 2.5rem; }
  .hero-monogram-ring { margin: 0 auto; }

  .section-trayectoria { padding: 3rem 0; }
  .section-transparencia { padding: 3rem 0; }
  .section-comunidad { padding: 3rem 0; }
}

@media (max-width: 767.98px) {
  .lead-card { padding: 2rem 1.25rem; }
  .logros-bar { padding: 1.5rem 1rem; }
  .logro-num { font-size: 1.8rem; }
  .hero-badge-card { max-width: 280px; }
  .monogram-outer { width: 170px; height: 170px; }
  .monogram-inner { width: 146px; height: 146px; }
  .monogram-inner span { font-size: 2rem; }
  .section-transparencia .row > [class*="col-lg"] + [class*="col-lg"] { margin-top: 0; }
  .scroll-top-btn { bottom: 5rem; right: 1rem; }
  .whatsapp-fab   { bottom: 1rem; right: 1rem; width: 52px; height: 52px; font-size: 1.35rem; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.7rem; }
  .hero-subtitle { font-size: .95rem; }
  .stat-num { font-size: 1.4rem; }
  .eje-card { padding: 1.5rem 1.25rem; }
  .lead-card { padding: 1.75rem 1rem; }
  .btn-gold.btn-lg, .btn-outline-light.btn-lg { font-size: .9rem; padding: .75rem 1.5rem; }
}

/* AOS reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-aos] { transition: none !important; animation: none !important; }
  .particle, .hero-monogram-ring, .monogram-inner span, .teacher-photo, .hero-badge-card { animation: none !important; }
}
