.daycare-hero{
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h));  
  min-height: 520px;
  display: flex;
  align-items: center; 
  justify-content: center;        
  color: #fff;
  overflow: hidden;
}
.daycare-inner{
  position: relative;
  z-index: 1;
  width: min(950px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: flex-end;           
  gap: clamp(14px, 2.4vw, 22px);
  padding: clamp(10px, 2vw, 18px);
  text-align: right;
}

.daycare-text{
  max-width: 560px;              
}
.daycare-text p{
  margin:0;
  font-size: clamp(26px, 2vw, 20px);
  line-height: 1.6;
}
@media (max-width: 680px){
  .daycare-inner{
    align-items: center;
    text-align: center;
  }
  .daycare-text{ max-width: 92vw; }
}


/* --- base para alturas completas --- */
html, body { height: 100%; }

/* Si el navbar es FIXED y se superpone al contenido, 
   no restes su altura en móvil */
@media (max-width: 9999px) {
  :root { --nav-h: 0px; }
}

/* Fallback para Safari/iOS antiguos (sin dvh) */
@supports not (height: 100dvh) {
  html { height: -webkit-fill-available; }
  body { min-height: -webkit-fill-available; }
  .mision-hero { height: -webkit-fill-available !important; }
}

/* Navegadores modernos: usa la visual viewport */
@supports (height: 100dvh) {
  .mision-hero { height: 100dvh !important; }
}

/* Móviles: ocupa exactamente lo visible (sin “hueco”) */
@media (max-width: 620px) {
  .mision-hero {
    height: 100svh !important;       /* cubre lo visible con barras del navegador */
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Si hay soporte de dvh, úsalo por encima de svh */
  @supports (height: 100dvh) {
    .mision-hero { height: 100dvh !important; }
  }
}