/* ===== Apps para colegios — estilos específicos ===== */

/* HERO consistente con MVV */
.page-header{
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  border-bottom: 1px solid #eef2f7;
  padding-block: clamp(2.2rem, 4.5vw, 4rem);
}
.page-header .breadcrumb{ font-size:.95rem; color:#6b7280; margin-bottom:.4rem; }
.page-header .breadcrumb a{ color:var(--azul); }
.page-header .kicker{
  display:inline-block; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  color:var(--azul); font-size:.85rem; background:#eaf2ff; padding:.25rem .5rem; border-radius:.4rem; margin-bottom:.4rem;
}
.page-header h1{
  font-family: Montserrat, system-ui; font-weight:800; line-height:1.12;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin:.25rem 0 .9rem; color:#0f172a;
}
.page-header .lead{ max-width:75ch; color:#444; margin:.4rem 0 .6rem; }

/* Bullets (texto base + punto de marca) */
.keypoints{ list-style:none; padding:0; margin:.6rem 0 0; }
.keypoints li{
  position:relative; padding-left:1.4rem; margin:.3rem 0; color:#444;
}
.keypoints li::before{
  content:""; position:absolute; top:.55rem; left:0; width:.55rem; height:.55rem; border-radius:999px;
  background:var(--azul); box-shadow:0 0 0 4px rgba(23,136,255,.12);
}

/* ===== Galería / Showroom ===== */
.shots{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.shot.card{
  background:#fff;
  border:1px solid #e7e9f0;
  border-radius:1rem;
  padding:.7rem;
  box-shadow:0 8px 20px rgba(2,6,23,.05);
}
.shot__img{
  display:block;
  width:100%;
  height: clamp(180px, 26vw, 340px);
  object-fit: cover;
  border-radius:.6rem;
}
.shot__caption{
  font-size:.95rem;
  color:#444;
  margin-top:.6rem;
}
.shots__note{ color:#666; font-size:.9rem; margin-top:.8rem; }

/* ===== Beneficios clave ===== */
.benefits-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.benefit.card{
  background:#fff; border:1px solid #e7e9f0; border-radius:1rem;
  padding:1rem; box-shadow:0 8px 20px rgba(2,6,23,.05);
}
.benefit h3{ font-family: Montserrat; margin:0 0 .4rem; }

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

/* CTA centrada */
.cta--center{
  text-align:center;
  border:1px solid #e7e9f0;
  border-radius:1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background:#fff;
  box-shadow:0 8px 20px rgba(2,6,23,.05);
}



/* === Hover zoom suave en miniaturas === */
.shot__frame{
  display:block;
  border-radius:.6rem;
  overflow:hidden;                /* recorta el zoom */
}
.shot__img{
  display:block;
  width:100%;
  height: clamp(180px, 26vw, 340px);
  object-fit: cover;
  transform: scale(1);
  transition: transform .35s ease, filter .35s ease;
}
.shot.card:hover .shot__img{
  transform: scale(1.035);
}

/* === Lightbox / Modal === */
.lightbox{
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: rgba(15,18,32,.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 9999;
}
.lightbox.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox__img{
  max-width: 92vw;
  max-height: 86vh;
  border-radius: .8rem;
  box-shadow: 0 18px 48px rgba(2,6,23,.45);
  background: #fff;
}
.lightbox__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 26px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(2,6,23,.25);
}
.lightbox__close:hover{ filter: brightness(0.95); }

/* Cursor informativo */
.lightbox{ cursor: zoom-out; }
.lightbox__img{ cursor: default; } /* evita zoom-out sobre la imagen */
