/* SecciÃ³n de inicio video .....................................................*/

.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3); /* Opcional: capa semitransparente */
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1150px;
    padding: 0 20px; /* Padding lateral para mÃ³viles */
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Responsivo para pantallas pequeÃ±as */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Ajustes para orientaciÃ³n horizontal en dispositivos mÃ³viles */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 150vh; /* Ajuste para asegurar que el contenido sea visible */
    }
    
    .hero-content {
        margin-top: 15%;
    }
}