/* Fix para que las imágenes de fondo del hero ocupen todo el espacio disponible */
.hero-3 {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-3 .swiper-slide {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-3 .hero-inner {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-3 .th-hero-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    width: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: -1;
}
.hero-3 .th-hero-bg .container {
    margin-top: 100px !important;
}


.hero-3 .th-hero-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100%;
}

.hero-3 .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-style3 {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Responsive adjustments */
@media (max-width: 1299px) {
    .hero-3 {
        min-height: 90vh;
    }
    
    .hero-3 .swiper-slide {
        min-height: 90vh;
        height: 90vh;
    }
    
    .hero-3 .hero-inner {
        min-height: 90vh;
        height: 90vh;
    }
    
    .hero-3 .th-hero-bg {
        height: 90vh !important;
    }
    
    .hero-3 .th-hero-bg:before {
        height: 90vh;
    }
}

@media (max-width: 767px) {
    /* Solución simple y directa para móviles */
    body, html {
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden;
    }
    
    .th-header {
        position: absolute !important;
        z-index: 999 !important;
    }
    
    .hero-3 {
        height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .hero-3 .swiper-slide {
        height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .hero-3 .hero-inner {
        height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .hero-3 .th-hero-bg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: 100vh !important;
        width: 100% !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        z-index: 0 !important;
    }
    
    .hero-3 .th-hero-bg:before {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: 100vh !important;
        width: 100% !important;
        background: #010F1C !important;
        opacity: 0.65 !important;
        z-index: 1 !important;
    }
    
    .hero-3 .swiper-wrapper {
        height: 100vh !important;
    }
    
    .hero-style3 {
        height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        z-index: 10 !important;
        position: relative !important;
    }
    
    .hero-title {
        margin-top: 20% !important;
        font-size: 30px !important;
        margin-bottom: 15px !important;
    }
    
    .hero-text {
        font-size: 16px !important;
        margin-bottom: 20px !important;
    }
    
    /* Debugging temporal - REMOVIDO */
    /* .hero-3 {
        border: 3px solid red !important;
    }
    
    .hero-3 .th-hero-bg {
        border: 3px solid blue !important;
    } */
}

.hero-3 .swiper-wrapper {
    height: 100vh;
}

@media (max-width: 1299px) {
    .hero-3 .swiper-wrapper {
        height: 90vh;
    }
} 