/* Enlace 'Saltar al contenido' accesible */
.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  position: fixed; left: 1rem; top: 1rem; width:auto; height:auto;
  background:#000; color:#fff; padding:.5rem 1rem; border-radius:.5rem; z-index:9999;
}

/* Navegación móvil (respaldo mínimo) */
.site-nav .hamburger{ display:none; }
@media (max-width: 768px){
  .site-nav .hamburger{ display:flex; flex-direction:column; gap:4px; background:transparent; border:0; }
  .nav-menu{ position:fixed; right:-100%; top:70px; width:100%; height:calc(100vh - 70px); background:#fff;
    display:flex; flex-direction:column; gap:1.25rem; padding:2rem; transition:right .3s ease; }
  .nav-menu.active{ right:0; }
}

/* Alineación checkbox + texto (evitar saltos de línea) */
.check-inline{
  display:flex; align-items:center; gap:.6rem; margin:.75rem 0;
}

/* Enlaces de email en contacto: blanco sobrio */
.contact .email-link{
  color:#fff; text-decoration:none; border-bottom:1px dotted rgba(255,255,255,.7); padding-bottom:2px;
}
.contact .email-link:hover{ color:#E6F7FF; border-bottom-color:#E6F7FF; }

/* Imágenes: evita CLS con dimensiones fijas si las conoces */
.logo img{ height:auto; }

/* Utilidad para imágenes que no deben estirar el layout */
img{ max-width:100%; height:auto; }
