.s13-kinder{
  position: relative;             
  width: 100%;
  height: calc(100vh - var(--nav-h));  
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
}
.s13-bg{
  position: absolute;
  inset: 0;
  z-index: -2;
}
.s13-inner{
  width: min(1100px, 92vw);
  margin-left: clamp(18px, 6vw, 72px);
}
.s13-text h3{
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  margin: 0 0 12px 0;
}
.s13-text p{
  max-width: 520px;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.65;
  margin: 0;
}
.s13-pill{
  position: absolute;
  right: 0;              
  bottom: 27px;              
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 50px;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 54px);
  text-shadow: 0 8px 24px rgba(0,0,0,.35);
  color: #fff;
  background: linear-gradient(90deg,#ff7e29,#ffa64d);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  border-radius: 999px 0 0 999px;
}

/* --- 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; }
  }
}