.c-slider-imagenes {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.c-slider-imagenes,
.c-imagen-flayer {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-dos-contenedores {
    height: 100%;
    /* Ajusta a lo que necesites */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-block: 1rem;
}


.c-imagen-flayer {
    width: 100%;
    height: 100%;
}

.c-imagen-flayer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-carruselP {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carruselesP {
    display: flex;
    width: 100%;
}

.slider-section {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slider-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slider-section.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0px 4px 30px rgba(255, 255, 255, 0.8);
}

.btn-leftP,
.btn-rigthP {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 6;
}

.btn-leftP {
    left: 20px;
}

.btn-rigthP {
    right: 20px;
}

/* Media queris del carrusel */

@media screen and (max-width: 768px) {
    .c-slider-imagenes {
        height: 300px;
    }
}