/* CONTENEDOR GENERAL */
.contenedor-principal {
    display: flex;
    width: 90%;
    height: 600px;
    margin-top: 20px;
    padding-top: 20px;
    margin-left: 100px;
    padding-top: 60px;

    gap: 20px;

}

/* COLUMNA IZQUIERDA */
.col-izquierda {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* COLUMNA IZQUIERDA */
.col-izquierda img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* COLUMNA CENTRO */
.col-centro {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contenedor-secundario {
    display: flex;
    width: 90%;
    height: 600px;
    margin-top: 20px;
    padding-top: 20px;
    margin-left: 120px;
    padding-top: 60px;

    gap: 20px;
}

.col-izquierda-secundario {
    width: 15%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-centro-secundario {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;

}

.col-derecha-secundario {
    width: 15%;
    height: 100%;
    margin-left: -30px;
}

/* SWIPER (60% del alto del centro) */
.col-centro .swiper-container {
    margin-left: 20px;
    height: 60%;
    width: 100%;
    position: relative;
    /* Importante para posicionar elementos de navegación */
}

.col-centro-secundario .swiper-container {

    height: 60%;
    width: 100%;
    position: relative;
    /* Importante para posicionar elementos de navegación */
}

/* SWIPER SLIDE LLENAR 100% */
.swiper-container .swiper-slide {
    width: 100%;
    height: 100%;
}

.banner-pymes .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-pymes .swiper-slide img {
    width: 100%;
    height: auto;
    /* <-- evita que se recorte */
    object-fit: contain;
    /* <-- la imagen completa, sin cortes */
}


/* ESTILOS PARA PAGINACIÓN (DOTS) */
.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #007aff;
    opacity: 1;
}

/* ESTILOS PARA FLECHAS DE NAVEGACIÓN */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;

    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

/* TEXTO 20% */
.col-centro .centro-texto {
    height: 20%;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;

}

.centro-texto p {
    text-align: justify;
    font-size: 12px;
}

/* BOTONES 20% */
.col-centro .centro-botones {
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* COLUMNA DERECHA */
.col-derecha {
    width: 20%;
    height: 100%;
}