/* Estilos comunes de todo el sitio */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
}

a {
  transition: color 0.3s;
}

.navbar a:hover {
  color: #e0e7ff;
}

/* Utilidad: ocultar scrollbar en contenedores con overflow (para menú horizontal móvil) */
.no-scrollbar {
  -ms-overflow-style: none; /* IE y Edge */
  scrollbar-width: none; /* Firefox */
}
.no-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
