:root{
    --verde-oscuro:#1e4d2b;
    --verde:#2E7D32;
    --verde-claro:#2E7D32;
    --verde-claro:#eaf3ea;
    --mostaza:#f2b134;
    --naranja:#f4802e;
    --menta:#eef7f0;
    --crema:#faf6ec;
    --texto:#243527;
  }
.textos {
    color: #4A4A4A;
}

.verde {
  color: #1e4d2b;
}

  *{box-sizing:border-box;}

  body{
    font-family:'Nunito', sans-serif;
    color:var(--texto);
    overflow-x:hidden;
  }

  h1,h2,h3,h4,.brand-font{
    font-family:'Baloo 2', sans-serif;
  }

  /* ===== NAVBAR ===== */
  .navbar-zentli{
    padding:.9rem 0;
    background:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,.06);
  }
  .navbar-zentli .nav-link{
    font-weight:700;
    color:var(--verde-oscuro);
    letter-spacing:.3px;
    margin:0 .15rem;
    position:relative;
  }
  .navbar-zentli .nav-link::after{
    content:"";
    position:absolute;
    left:0; bottom:-4px;
    width:0%; height:3px;
    background:var(--naranja);
    border-radius:3px;
    transition:width .25s ease;
  }
  .navbar-zentli .nav-link:hover::after{ width:100%; }

  .logo-text{
    font-family:'Baloo 2', sans-serif;
    font-weight:800;
    line-height:1;
  }
  .logo-text .colegio{ color:var(--verde-oscuro); }
  .logo-text .zentli{ color:var(--mostaza); }

  .social-circle{
    width:36px;height:36px;
    display:inline-flex;align-items:center;justify-content:center;
    border-radius:50%;
    background:var(--verde-oscuro);
    color:#fff;
    transition:transform .25s ease, background .25s ease;
  }
  .social-circle:hover{ transform:translateY(-3px) scale(1.08); background:var(--naranja); color:#fff; }

  .btn-zentli-naranja{
    background:var(--naranja);
    color:#fff;
    font-weight:800;
    border-radius:50px;
    padding:.6rem 1.4rem;
    border:none;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .btn-zentli-naranja:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(244,128,46,.35);
    border: solid #e8713e;
    color:#e8713e;
  }

  /* ===== HERO ===== */
/* ===== HERO ===== */
.hero {
  padding-top: 120px;
  width: 100%;
  height: 200px;
  min-height: 460px;
  position: relative;
  overflow: hidden; /* IMPORTANTE: recorta lo que sobresalga al hacer zoom */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  transform: scale(1.25); /* empieza "acercada" */
  animation: heroZoomOut 10s ease-out forwards;
}
@keyframes heroZoomOut {
  from {
    transform: scale(1.25);
  }
  to {
    transform: scale(1);
  }
}
  .hero h1{
    font-weight:800;
    font-size:clamp(2rem, 4vw, 3.1rem);
    color:#fff;
    line-height:1.15;
  }
  .hero h1 .accent{ color:var(--mostaza); }
 
  .btn-hero{
    background:var(--verde);
    color:#fff;
    font-weight:800;
    border-radius:50px;
    padding:.75rem 1.8rem;
    border:2px solid transparent;
    transition:all .25s ease;
  }
  .btn-hero:hover{
    background:transparent;
    border-color:#fff;
    color:#2E7D32;
    border: solid #2E7D32;
    transform:translateX(4px);
  }
  /* ===== FEATURE CARDS ===== */
  .feature-card{
    background:var(--crema);
    border-radius:18px;
    padding:1.4rem 1.3rem;
    display:flex;
    align-items:center;
    gap:1.1rem;
    height:100%;
    transition:transform .3s ease, box-shadow .3s ease;
    border:1px solid #f0e9d6;
  }
  .feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 26px rgba(30,77,43,.12);
  }
  .feature-icon{
    width:60px; height:60px;
    min-width:60px;
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-size:1.5rem;
    color:#fff;
    transition:transform .3s ease;
  }
  .feature-card:hover .feature-icon{ transform:rotate(-8deg) scale(1.08); }
  .bg-verde-ico{ background:var(--verde-oscuro); }
  .bg-naranja-ico{ background:var(--naranja); }
  .bg-azul-ico{ background:#2e6fdb; }
  .bg-mostaza-ico{ background:var(--mostaza); }
  .bg-menta-ico{ background:#3b8a54; }
  .bg-blanco-ico{ background:#fff; color:var(--verde-oscuro); border:2px solid var(--verde-oscuro); }
  .feature-card h6{ font-weight:800; margin-bottom:0; color:var(--verde-oscuro); }

  /* ===== SECTION TITLES ===== */
  .section-title{
    font-weight:800;
    color:var(--verde-oscuro);
    letter-spacing:.5px;
  }

  /* ===== OFERTA CARDS ===== */
  .oferta-card{
    background:var(--crema);
    border-radius:24px;
    padding:2rem 1.8rem 1.8rem;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:transform .35s ease, box-shadow .35s ease;
  }
  .oferta-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 34px rgba(0,0,0,.1);
  }
  .oferta-card h3{
    font-weight:800;
    display:inline-block;
    border-bottom:4px solid currentColor;
    padding-bottom:4px;
  }
  .oferta-card.pre h3{ color:var(--naranja); }
  .oferta-card-pri{ color:var(--verde-oscuro); }
  .oferta-card.sec h3{ color:#2e6fdb; }
  .oferta-img-wrap{
    border-radius:50% 50% 45% 55% / 55% 45% 55% 45%;
    overflow:hidden;
    border:3px dashed var(--verde-oscuro);
    width:100%;
    aspect-ratio:1/0.85;
    margin:1.2rem 0 1.5rem;
  }
  .oferta-img-wrap img{ width:100%; height:100%; object-fit:cover; }
  .btn-pill{
    border:none;
    color:#fff;
    font-weight:800;
    border-radius:50px;
    padding:.55rem 1.3rem;
    transition:transform .2s ease, filter .2s ease;
  }
  .btn-pill:hover{ transform:translateY(-2px); filter:brightness(1.08); color:#fff;}
  .btn-pre{ background:var(--naranja); }
  .btn-pri{ background:var(--verde-oscuro); }
  .btn-sec{ background:#2e6fdb; }

  /* ===== BIENVENIDOS ===== */
  .bienvenidos{
    background-image: url(../img/banner-fondo.png);
    position:relative;
    padding:1rem 0;
    margin: 100px 0 0 0;
    overflow:hidden;
   
  }

  .blob-img{
    border-radius:38% 62% 55% 45% / 45% 40% 60% 55%;
    overflow:hidden;
    border:6px solid #fff;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
  }
  .blob-img img{ width:100%; height:100%; object-fit:cover; display:block; }

  /* ===== STATS ===== */
  .stats-row{ background:var(--crema); padding:4.4rem 0; }
  .stat-item{ display:flex; align-items:center; gap:.8rem; justify-content:center; }
  .stat-icon{
    width:54px;height:54px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-size:1.4rem; color:#fff;
  }
  .stat-num{ font-weight:900; font-size:1.9rem; line-height:1; }

  /* ===== ACTIVIDADES ===== */
  .actividad-thumb{
    border-radius:16px;
    overflow:hidden;
    aspect-ratio:1/1;
    position:relative;
  }
  .actividad-thumb img{
    width:100%;height:100%;object-fit:cover;
    transition:transform .5s ease;
  }
  .actividad-thumb:hover img{ transform:scale(1.12); }
  .btn-ver-mas{
    background:var(--verde-oscuro);
    color:#fff;font-weight:800;border-radius:50px;
    padding:.6rem 1.5rem;border:none;
    transition:transform .2s ease, background .2s ease;
  }
  .btn-ver-mas:hover{ background:var(--verde); transform:translateY(-2px); color:#fff;}

  /* ===== CTA ===== */
  .cta-banner{
    background:var(--naranja);
    padding:5rem 3rem;
    position:relative;
    overflow:hidden;
  }
  .cta-banner h3{ color:#fff; font-weight:800; }
  .cta-banner p{ color:#fff; opacity:.95; }
  .btn-cta{
    background:#fff;
    color:var(--naranja);
    font-weight:800;
    border-radius:50px;
    padding:.7rem 1.8rem;
    border:none;
    transition:transform .2s ease;
  }
  .btn-cta:hover{
     transform:scale(1.06); color:var(--naranja); 
     border: solid #ffffff;
     color: #ffffff;
    }

  /* ===== FOOTER ===== */
  footer{ background:var(--verde); color:#dfeee2; }
  footer h6{ color:var(--mostaza); font-weight:800; }
  footer a{ color:#dfeee2; text-decoration:none; }
  footer a:hover{ color:var(--mostaza); }
  .footer-social .social-circle{ background:rgba(255,255,255,.12); }
  .footer-social .social-circle:hover{ background:var(--mostaza); }

  /* ===== FLOATING DECORATIONS ===== */
  .float-slow{ animation: floaty 5s ease-in-out infinite; }
  .float-slow.delay{ animation-delay: 1.5s; }
  @keyframes floaty{
    0%,100%{ transform:translateY(0px) rotate(0deg); }
    50%{ transform:translateY(-12px) rotate(6deg); }
  }

  @media (prefers-reduced-motion: reduce){
    .float-slow{ animation:none; }
    .feature-card, .oferta-card, .actividad-thumb img{ transition:none; }
  }

.card-preescolar{
  background:#f7f2e2;
  border-radius:40px;
  width:100%;
  max-width:380px;
  margin-left:auto;
  margin-right:auto;
  padding:32px 46px 4px;
  position:relative;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}
@media (max-width: 400px){
  .card-preescolar{
    padding:28px 24px 6px;
  }
}
  .card-preescolar h3{
    font-family:'Baloo 2', sans-serif;
    font-weight:800;
    color:#ee7c1e;
    font-size:2.35rem;
    margin:0;
    letter-spacing:.5px;
  }

  .underline{
    width:74px;
    height:5px;
    background:#ee7c1e;
    border-radius:3px;
    margin:10px 0 22px;
  }

  .card-preescolar p{
    color:#3b3b3b;
    font-weight:700;
    font-size:1.12rem;
    line-height:1.45;
    margin:0 0 26px;
  }
  .card-preescolar:hover{
     transform:translateY(-6px);
    box-shadow:0 14px 26px rgba(30,77,43,.12);}
  /* backpack sticker */
  .sticker{
    position:absolute;
    top:0px;
    left:-6px;
    width:74px;
    height:74px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.6rem;
    transform:rotate(-16deg);
    filter:drop-shadow(0 6px 6px rgba(0,0,0,.25));
    z-index:3;
    user-select:none;
  }

  .sticker-reglas{
    position:absolute;
    top:-120px;
    display:flex;
    filter:drop-shadow(0 6px 6px rgba(0,0,0,.25));
    z-index:3;
   
  }
  /* .linea-avion{
    position:absolute;
    top:-10px;
     right:-35px;
    display:flex;
    filter:drop-shadow(0 6px 6px rgba(0,0,0,.25));
  } */

  /* ===== BUTTON ===== */
  .btn-conocer{
    position:absolute;
    left:26px;
    bottom:-26px;
    background:#ee7c1e;
    color:#fff;
    font-weight:800;
    font-size:1.05rem;
    border:none;
    border-radius:50px;
    padding:.85rem 1.7rem;
    display:inline-flex;
    align-items:center;
    gap:.6rem;
    box-shadow:0 10px 22px rgba(238,124,30,.4);
    text-decoration:none;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .btn-conocer:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 26px rgba(238,124,30,.5);
    color:#fff;
  }
  .btn-conocer i{
    background:rgba(255,255,255,.25);
    border-radius:50%;
    width:26px;height:26px;
    display:flex;align-items:center;justify-content:center;
    font-size:.85rem;
  }
  /* ===== IMAGE BLOB ===== */
  .img-blob-wrap{
    position:relative;
    width:100%;
    height:250px;
  }
  .img-blob img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:60% 30%;
  }

  .texto-verde {
color:#2c6b3f;
}
.texto-gris{
    color:#3b3b3b;
    font-weight:700;
    font-size:1.12rem;
    line-height:1.45;
    margin:0 0 26px;
  }

  .banner-bien {
    position:absolute;
    top:360px;
    left:-6px;
    width:74px;
    height:74px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.6rem;
    transform:rotate(-16deg);
    filter:drop-shadow(0 6px 6px rgba(0,0,0,.25));
    z-index:3;
    user-select:none;
  }
  .sticker-foco{
    position:absolute;
    top:80px;
    left:0px;
    width:14px;
    height:14px;
  
  }

  .sticker-foco-nosotros {
    position:absolute;
top: 150px;
left: 80px;
  }

   .sticker-avion{
    position:absolute;
    top:80px;
    right:249px;
    width:14px;
    height:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.6rem;
    transform:rotate(-16deg);
    filter:drop-shadow(0 6px 6px rgba(0,0,0,.25));
    z-index:3;
    user-select:none;
  }
     .sticker-star{
    position:absolute;
    top:180px;
    right:36px;
    width:14px;
    height:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    transform:rotate(-16deg);
    filter:drop-shadow(0 6px 6px rgba(0,0,0,.25));
    z-index:3;
   
  }
  .sticker-microscopio{
    position:absolute;
    top:540px;
    right:76px;
    width:20px;
   
    display:flex;


  }
/* ======================================================= */
  /* ===================  PÁGINA NOSOTROS  ==================== */
  /* ======================================================= */

  .nosotros-hero{
    position:relative;
    padding:30px 0 60px;

  }
  .mini-label{
    text-align:center;
    color:var(--naranja);
    font-weight:800;
    letter-spacing:2px;
    font-size:.95rem;
    margin-bottom:.6rem;
  }
  .nosotros-hero h1{
    text-align:center;
    font-weight:800;
    font-size:clamp(1.8rem, 3.4vw, 2.7rem);
    line-height:1.25;
    max-width:820px;
    margin:0 auto;
  }
  .nosotros-hero h1 .verde{ color:var(--verde-oscuro); }
  .nosotros-hero h1 .naranja{ color:var(--naranja); }
  .nosotros-hero .intro-p{
    max-width:680px;
    margin:1.6rem auto 0;
    text-align:center;
    color:#4A4A4A;
    font-weight:600;
    font-size:1.05rem;
    line-height:1.6;
  }
.deco-icon-lapiz{ 
  top:50px; 
  right:6%; 
  width:90px;
  position: absolute;
}
.sticker-mundo-nosotros{ 
  top:170px; 
  right:16%; 
  width:90px;
  position: absolute;
}
  .deco-icon{
    position:absolute;
    z-index:2;
    filter:drop-shadow(0 6px 10px rgba(0,0,0,.12));
  }
  .deco-icon.nube{ top:70px; left:6%; width:94px; color:#8fd3f4; font-size:3.6rem; }
  
  
  .deco-icon.globo{ top:190px; right:5%; width:70px; color:#4a9fe0; font-size:3.4rem; }
  .deco-punteada{ position:absolute; opacity:.5; z-index:1; }

  /* ===== Misión / Visión ===== */
  .nosotros-card{
    background:var(--crema);
    border-radius:26px;
    padding:2.4rem 2rem;
    text-align:center;
    height:100%;
    border:1px solid #f0e9d6;
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .nosotros-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 28px rgba(30,77,43,.1);
  }
  .nosotros-card .nosotros-card-icon{
    width:70px; height:70px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:1.8rem;
    color:#fff;
    margin:0 auto 1.1rem;
  }
  .nosotros-card h4{
    font-weight:800;
    margin-bottom:1rem;
  }
  .nosotros-card p{
    color:#4A4A4A;
    font-weight:600;
    line-height:1.6;
    margin-bottom:0;
  }

  /* ===== Virtudes ===== */
  .virtudes-card{
    background:var(--crema);
    border-radius:26px;
    padding:2.6rem 2.4rem;
    border:1px solid #f0e9d6;
  }
  .virtudes-icon{
    width:74px; height:74px;
    border-radius:50%;
    background:#2e6fdb;
    color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-size:1.9rem;
    margin:0 auto 1.2rem;
  }
  .virtudes-card h4{
    text-align:center;
    font-weight:800;
    color:#2e6fdb;
    max-width:560px;
    margin:0 auto 1.8rem;
  }
  .virtudes-card ul{
    list-style:none;
    padding-left:0;
    margin:0;
  }
  .virtudes-card ul li{
    position:relative;
    padding-left:1.3rem;
    margin-bottom:.7rem;
    color:#4A4A4A;
    font-weight:600;
    line-height:1.5;
  }
  .virtudes-card ul li::before{
    content:"";
    position:absolute;
    left:0; top:.55em;
    width:7px;height:7px;
    border-radius:50%;
    background:var(--naranja);
  }

  /* ===== Modelo educativo / Talento docente (bloques con blob) ===== */
  .bloque-info{ padding:5rem 0; }
  .bloque-info.crema-bg{ background:var(--crema); }
  .bloque-titulo-verde{ color:var(--verde-oscuro); font-weight:800; }
  .bloque-titulo-naranja{ color:var(--naranja); font-weight:800; }
  .bloque-linea{
    width:70px;
    height:5px;
    border-radius:3px;
    margin:.6rem 0 1.4rem;
  }
  .bloque-linea.verde{ background:var(--verde-oscuro); }
  .bloque-linea.naranja{ background:var(--naranja); }
  .bloque-info p{
    color:#4A4A4A;
    font-weight:600;
    line-height:1.7;
    font-size:1.02rem;
  }
  .bloque-info p b, .bloque-info p strong{ color:var(--texto); }




  /* ===== Entorno seguro ===== */


  .badge-escudo{
    position:absolute;
    top:-30px; left:50%;
    transform:translateX(-50%);
    width:76px; height:76px;
    background:#fff;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:1.8rem;
    color:var(--verde-oscuro);
    box-shadow:0 10px 22px rgba(0,0,0,.15);
    z-index:4;
  }

  .quote-box{
    max-width:780px;
    margin:3rem auto 0;
    border:2px solid var(--mostaza);
    border-radius:20px;
    padding:.5rem 2rem;
    align-items:center;
    gap:1rem;
    background:#fffdf8;
  }
  .quote-box i{ font-size:1.6rem; color:var(--verde-oscuro); }
  .quote-box p{
    margin:0;
    color:var(--verde-oscuro);
    font-weight:700;
    font-style:italic;
    line-height:1.5;
  }

  /* ===== Testimonios ===== */
  .testimonios-section{
    position:relative;
    padding:5rem 0;
    background-image:
      linear-gradient(#e3ddca 1px, transparent 1px);
    background-size:100% 42px;
    background-color:#fffef9;
  }

  @media (max-width:767px){
    .deco-icon{ display:none; }
    .grid-seguridad{ margin-top:2rem; }
  }
  /* =========================================================
     ===== PÁGINA PREESCOLAR ===================================
     ========================================================= */

  /* ---- Hero Preescolar ---- */
  .preescolar-hero{
    background:var(--crema);
  
    position:relative;
    overflow:hidden;
  }

  .ciipz-badge{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:38px;
    padding-top: 20px;
  }
  .ciipz-circle{
    width:66px;height:66px;
    min-width:66px;

  

    font-size:1.7rem;
    box-shadow:0 8px 16px rgba(244,128,46,.25);
  }
  .ciipz-badge-text{ line-height:1.15; }
  .ciipz-badge-text strong{
    display:block;
    font-family:'Baloo 2', sans-serif;
    font-weight:800;
    color:var(--naranja);
    font-size:1.1rem;
    letter-spacing:.5px;
  }
  .ciipz-badge-text span{
    display:block;
    font-size:.72rem;
    font-weight:700;
    color:var(--texto);
    opacity:.75;
  }

  .preescolar-hero h1{
    font-weight:900;
    color:var(--verde-oscuro);
    font-size:clamp(2.2rem, 4vw, 3rem);
    margin-bottom:.2rem;
  }
  .preescolar-hero h2{
    font-family:'Baloo 2', sans-serif;
    font-weight:800;
    color:var(--naranja);
    font-size:clamp(1.5rem, 2.6vw, 2rem);
    margin-bottom:1.3rem;
  }
  .preescolar-hero h2 i{
    color:#e53e3e;
    margin-left:.3rem;
    display:inline-block;
    transform:rotate(-12deg);
  }
  .preescolar-hero p{
    color:#3b3b3b;
    font-weight:600;
    font-size:1.05rem;
    line-height:1.6;
  }
  .preescolar-hero-img-wrap{
    position:relative;
    z-index:2;
  }

 

  /* ---- Features verticales ---- */
  .feature-card-v{
    background:var(--crema);
    border-radius:18px;
    padding:1.8rem 1rem 1.4rem;
    text-align:center;
    height:100%;
    border:1px solid #f0e9d6;
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .feature-card-v:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 26px rgba(30,77,43,.12);
  }
  .feature-card-v .feature-icon{
    margin:0 auto 1rem;
  }
  .feature-card-v h6{
    font-weight:800;
    color:var(--verde-oscuro);
    margin-bottom:0;
    font-size:.95rem;
  }

  /* ---- Banner de frase ---- */
  .frase-banner{
    background:var(--verde-oscuro);
    border-radius:80px;
 padding: 10px 20px;
  
   
  
    box-shadow:0 16px 30px rgba(30,77,43,.2);
  }
  .frase-banner .frase-icon{
    width:50px;height:50px;
    min-width:50px;
    border-radius:50%;
    background:var(--crema);
    display:flex;align-items:center;justify-content:center;
    color:var(--mostaza);
    font-size:1.4rem;
  }
  .frase-banner p{
    color:#fff;
    font-family:'Baloo 2', sans-serif;
    font-weight:700;
    font-size:1.3rem;
    margin:0;
  }

  /* ---- Galería estilo cuaderno ---- */
  .galeria-cuaderno{
    background:repeating-linear-gradient(
      to bottom,
      #fff 0px, #fff 43px,
      #dfe9e2 44px, #dfe9e2 45px
    );
    position:relative;
    padding:70px 0 80px;
    overflow:hidden;
  }
  .galeria-cuaderno::before{
    content:"";
    position:absolute;
    top:0; bottom:0;
    left:110px;
    width:2px;
    background:#f1a9a9;
  }
  .galeria-cuaderno .actividad-thumb{
    border-radius:10px;
    box-shadow:0 8px 18px rgba(0,0,0,.12);
  }
  .cuaderno-deco{
    position:absolute;
    font-size:2.2rem;
    opacity:.9;
    z-index:1;
    filter:drop-shadow(0 4px 6px rgba(0,0,0,.15));
  }
  .cuaderno-deco.rocket{ bottom:24px; left:14px; color:var(--naranja); transform:rotate(-25deg); }
  .cuaderno-deco.clip{ top:170px; right:60px; width:70px; }
  .cuaderno-deco.compass{ top:24px; right:60px; color:var(--verde-oscuro); transform:rotate(10deg); }

  /* ---- Por qué elegir ---- */
  .porque-elegir{
    background:var(--crema);
    padding:80px 0;
  }
  .porque-elegir h5{
    color:var(--verde-oscuro);
    font-weight:800;
    letter-spacing:1px;
  }
  .porque-elegir h2{
    color:var(--naranja);
    font-family:'Baloo 2', sans-serif;
    font-weight:900;
    font-size:clamp(2rem, 4vw, 2.8rem);
  }
  .porque-elegir .lead-sub{
    color:var(--verde-oscuro);
    font-weight:700;
    font-size:1.15rem;
    max-width:760px;
    margin:0 auto;
  }
  .porque-card{
    background:linear-gradient(155deg, #2e6b3f 0%, #1e4d2b 55%, #ee7c1e 130%);
    border-radius:22px;
    padding:2.2rem 1.6rem;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:1.1rem;
    box-shadow:0 14px 28px rgba(30,77,43,.2);
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .porque-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 34px rgba(30,77,43,.3);
  }
  .porque-check{
    width:54px;height:54px;
    min-width:54px;
    border-radius:50%;
    background:#fff;
    display:flex;align-items:center;justify-content:center;
    color:var(--verde-oscuro);
    font-size:1.4rem;
  }
  .porque-card p{
    color:#fff;
    font-weight:700;
    font-size:1.02rem;
    line-height:1.45;
    margin:0;
  }

  @media (max-width:991.98px){
    .preescolar-hero-img-wrap::before{ display:none; }
    .preescolar-hero-img-wrap{ margin-top:.5rem; }
    .galeria-cuaderno::before{ left:24px; }
  }

  /* ======================================================= */
  /* ===================  PÁGINA CONTACTO  =================== */
  /* ======================================================= */

  .contacto-section{
    position:relative;
    padding:80px 0 60px;
    background-image:linear-gradient(#dfe6de 1px, transparent 1px);
    background-size:100% 54px;
    background-color:#f2f2ec;
    overflow:hidden;
  }
  .contacto-section::before{
    content:"";
    position:absolute;
    top:0; bottom:0; left:16%;
    width:2px;
    background:#e88a8a;
    z-index:1;
  }
  .contacto-section .contenido{
    position:relative;
    z-index:2;
  }

  .contacto-titulo{
    font-weight:800;
    font-size:clamp(2.4rem, 4vw, 3.4rem);
    margin-bottom:.4rem;
    display:inline-block;
  }
  .contacto-titulo .verde{ color:var(--verde-oscuro); }
  .contacto-titulo .naranja{ color:var(--naranja); }
  .contacto-underline{
    display:block;
    margin-top:-4px;
  }

  .contacto-item{
    display:flex;
    align-items:center;
    gap:1.6rem;
    margin-bottom:2.2rem;
  }
  .contacto-item .icono-circulo{
    width:70px; height:70px;
    min-width:70px;
    border-radius:50%;
    background:var(--verde-oscuro);
    color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-size:1.7rem;
  }
  .contacto-item .datos{
    font-weight:800;
    font-size:1.35rem;
    color:var(--texto);
    line-height:1.35;
  }
  .contacto-item .datos a{
    color:var(--texto);
    text-decoration:none;
  }
  .contacto-item .datos a:hover{ color:var(--naranja); }

  .mapa-wrap{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 14px 30px rgba(0,0,0,.12);
    height:100%;
    min-height:420px;
  }
  .mapa-wrap iframe{
    width:100%; height:100%;
    min-height:420px;
    border:0;
    display:block;
  }

  .deco-nube-contacto{
    width:120px;
    height:auto;
    filter:drop-shadow(0 6px 8px rgba(0,0,0,.1));
  }

  /* =========================================================
     ===== PÁGINA GALERÍA ======================================
     ========================================================= */
  .galeria-titulo{
    color:var(--verde-oscuro);
    font-weight:800;
    text-align:center;
    margin-bottom:2.2rem;
  }
  .galeria-grid-item{
    border-radius:14px;
    overflow:hidden;
    aspect-ratio:1/1;
    cursor:pointer;
    position:relative;
    box-shadow:0 6px 16px rgba(0,0,0,.08);
  }
  .galeria-grid-item img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
  }
  .galeria-grid-item:hover img{ transform:scale(1.08); }
  .galeria-grid-item::after{
    content:"\F33E";
    font-family:"bootstrap-icons";
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%,-50%) scale(.6);
    color:#fff;
    font-size:1.6rem;
    opacity:0;
    background:rgba(30,77,43,.55);
    width:100%; height:100%;
    display:flex; align-items:center; justify-content:center;
    transition:opacity .25s ease, transform .25s ease;
  }
  .galeria-grid-item:hover::after{ opacity:1; transform:translate(-50%,-50%) scale(1); }

  /* ---- Lightbox ---- */
  .lightbox-overlay{
    position:fixed;
    inset:0;
    background:rgba(20,30,20,.92);
    z-index:2000;
    display:none;
    align-items:center;
    justify-content:center;
    padding:2rem;
  }
  .lightbox-overlay.active{ display:flex; }
  .lightbox-overlay img{
    max-width:90vw;
    max-height:85vh;
    border-radius:14px;
    box-shadow:0 20px 50px rgba(0,0,0,.5);
    animation: lightboxIn .25s ease;
  }
  @keyframes lightboxIn{
    from{ opacity:0; transform:scale(.92); }
    to{ opacity:1; transform:scale(1); }
  }
  .lightbox-close{
    position:absolute;
    top:24px; right:28px;
    width:46px; height:46px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-size:1.5rem;
    border:none;
    cursor:pointer;
    transition:background .2s ease, transform .2s ease;
  }
  .lightbox-close:hover{ background:var(--naranja); transform:rotate(90deg); }
  .lightbox-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px; height:50px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-size:1.4rem;
    border:none;
    cursor:pointer;
    transition:background .2s ease, transform .2s ease;
  }
  .lightbox-nav:hover{ background:var(--naranja); }
  .lightbox-prev{ left:20px; }
  .lightbox-next{ right:20px; }
  .lightbox-counter{
    position:absolute;
    bottom:24px;
    left:50%;
    transform:translateX(-50%);
    color:#fff;
    font-weight:700;
    font-size:.9rem;
    opacity:.8;
    letter-spacing:.5px;
  }
  @media (max-width:767.98px){
    .lightbox-nav{ width:40px; height:40px; font-size:1.1rem; }
    .lightbox-prev{ left:8px; }
    .lightbox-next{ right:8px; }
    .lightbox-close{ top:14px; right:14px; }
  }

  /* =========================================================
     ===== TALLERES VESPERTINOS (Primaria) =====================
     ========================================================= */
  .vespertinos{
    background:#fff;
    padding:85px 0;
  }
  .vespertinos .eyebrow{
    color:var(--verde-oscuro);
    font-weight:800;
    letter-spacing:1.5px;
    font-size:.9rem;
    text-transform:uppercase;
  }
  .vespertinos h2{
    color:var(--naranja);
    font-family:'Baloo 2', sans-serif;
    font-weight:900;
    font-size:clamp(1.9rem, 3.6vw, 2.6rem);
    margin-bottom:1rem;
  }
  .vespertinos > .container > .row > div p.vespertinos-lead{
    color:#3b3b3b;
    font-weight:600;
    line-height:1.6;
  }
  .horario-chip{
    display:inline-flex;
    align-items:center;
    gap:.55rem;
    background:var(--crema);
    border:1px solid #f0e2c0;
    padding:.55rem 1.2rem;
    border-radius:40px;
    font-weight:800;
    color:var(--verde-oscuro);
    font-size:.88rem;
    margin-bottom:1.6rem;
  }
  .horario-chip i{ color:var(--naranja); }

  .vespertinos-img-wrap{
    position:relative;
    z-index:2;
  }
  .vespertinos-img-wrap::before{
    content:"";
    position:absolute;
    /* bottom:-40px; right:-40px; */
    width:75%; height:60%;
    background:var(--crema);
    border-radius:260px 0 0 0;
    z-index:-1;
  }
  
  .taller-list{ margin-top:.4rem; }
  .taller-item{
    display:flex;
    gap:1.1rem;
    align-items:flex-start;
    padding:1.05rem 0;
    border-bottom:1px dashed #e6ddc7;
  }
  .taller-item:last-child{ border-bottom:none; }
  .taller-icon{
    width:52px; height:52px;
    min-width:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:1.3rem;
    box-shadow:0 8px 14px rgba(0,0,0,.12);
  }
  .taller-item h6{
    font-weight:800;
    color:var(--verde-oscuro);
    margin-bottom:.2rem;
    font-size:1.02rem;
  }
  .taller-item p{
    margin:0;
    color:#5a5a5a;
    font-size:.92rem;
    line-height:1.5;
  }

  /* =========================================================
     ===== BOTÓN FLOTANTE DE WHATSAPP ==========================
     ========================================================= */
  .float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:30px;
    right:30px;
    background-color:#25d366;
    color:#fff;
    border-radius:50%;
    text-align:center;
    box-shadow:0 6px 16px rgba(0,0,0,.25);
    z-index:1000;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .float:hover{
    color:#fff;
    transform:scale(1.08);
    box-shadow:0 10px 20px rgba(0,0,0,.3);
  }
  .float .my-float{
    font-size:32px;
    line-height:60px;
  }
  @media (max-width:576px){
    .float{ width:52px; height:52px; bottom:20px; right:20px; }
    .float .my-float{ font-size:26px; line-height:52px; }
  }

html, body {
    max-width:100%;
    overflow-x:hidden;
}

@media(max-width:767px){

  .sticker-microscopio,
  .sticker-avion,
  .linea-avion,
  .sticker-star,
  .sticker-reglas,
  .deco-icon,
  .deco-icon-lapiz,
  .sticker-mundo-nosotros,
  .deco-punteada{
      display:none !important;
  }

}
html{
    overflow-x:hidden;
}

body{
    overflow-x:clip;
}
.navbar-zentli{
    position:sticky !important;
    top:0;
    z-index:1050;
}