/* Configuración base para visualización de pantalla completa */
html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

/* Capa de fondo fija e hiper-responsiva */
.bg-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Oscurecedor para que las letras blancas contrasten perfectamente */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65); /* Tono pizarra traslúcido */
    z-index: -1;
}

/* Envoltura de contenidos */
.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Efectos de texto */
.text-shadow {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}
.text-shadow-sm {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Animación sutil para el widget del clima */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.animate-pulse {
    animation: pulse 3s infinite ease-in-out;
}

/* Correcciones de diseño responsivo en resoluciones móviles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(33, 37, 41, 0.95);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 10px;
    }
    #widget-clima {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}