.genPant2-swiper-container {
    width: 100%;
    height: 90vh; 
    margin-top:50px;
    position: relative;
    overflow: hidden;
}

.genPant2-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.genPant2-img-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.genPant2-banner-escritorio,
.genPant2-banner-movil {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.genPant2-banner-movil {
    display: none;
}

.genPant2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.24); 
    z-index: 2;
}

.genPant2-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    color: var(--blanco);
    z-index: 3;
    text-align: left;
}

.genPant2-content h2{
    padding:0px;
}

.genPant2-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height:1.2;
    margin-bottom: 15px;
    text-align:left;
    color:var(--blanco);
}

.genPant2-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}


.genPant2-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--principal);
    color: white;
    text-decoration: none;
    border-radius:5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.genPant2-button:hover {
    background-color: var(--principalhover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


.genPant2-pagination {
    bottom: 20px !important;
    z-index: 10;
}

.genPant2-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background:  var(--blanco);
    opacity: 0.5;
    margin: 0 8px;
}

.genPant2-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--principal);
}

.genPant2-button-next, 
.genPant2-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.genPant2-button-next:after, 
.genPant2-button-prev:after {
    font-size: 20px;
    color: var(--blanco);
    font-weight: bold;
}

.genPant2-button-next:hover, 
.genPant2-button-prev:hover {
    background: var(--principalhover);
}

/* Responsive */
@media (max-width: 768px) {
    .genPant2-swiper-container {
        height: 70vh;
    }
    
    .genPant2-banner-escritorio {
        display: none;
    }
    
    .genPant2-banner-movil {
        display: block;
    }
    
    .genPant2-content {
        left: 5%;
        right: 5%;
        text-align: center;
        max-width: none;
        padding: 0 15px;
    }
    
    .genPant2-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .genPant2-description {
        font-size: 0.9rem;
    }

    .genPant2-button {
        padding: 8px 18px;
        letter-spacing:0px;
        font-size:0.9rem;
    }

    .genPant2-button-next, 
    .genPant2-button-prev {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .genPant2-content {
        max-width: 400px;
    }
    
    .genPant2-title {
        font-size: 2rem;
    }
}