:root
{
    --color_botones_cantidad:#002D58;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.carrusel 
{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.carrusel img, .carrusel video
{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.carrusel img.activa, .carrusel video.activa 
{
    opacity: 1;
}
/* Botones opcionales */
.botones 
{
    z-index: 2;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.botones span 
{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 1px solid white;
    cursor: pointer;
}
.botones span.activo 
{
    background: var(--color_botones_cantidad);
}

.seccion_principal
{
    z-index: 1;
    position: absolute;
    top: 0px;
    height: 90vh;
}
.h_100_porcent
{
    height: 100%;
}
@media (max-width: 991px)
{
    .h_100_porcent
    {
        height: 50%;
    }
}