:root {
    --primario: #161d6e;
    --secundario: #757575;
    --enfasis: #FFC107;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
}

#fondo {
    background-image: url('../img/almacen.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100.0vh;
}
#fondo2 {
    background-image: url('../img/almacen2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100.0vh;
}

.blackout{
    position: relative;
}
.blackout::before{
    content: '';
    background-color: rgba(0,0,0,0.5);
    z-index: 3;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    position: absolute;  
}

.contenedor {
    max-width: 100%; /* Establece el ancho máximo del contenedor */
    margin: 0 auto; /* Centra el contenedor horizontalmente */
    background-color: #fdfdfd; /* Color de fondo opcional */
    padding: 0px; /* Relleno opcional */
}

.txt-blanco{
    color: #fdfdfd;
}

.diapositiva {
    z-index: 5;
    color: #fdfdfd;
}

.centrado-vertical{
    border: none;
    align-items: center;
    display: flex;
}

.margenIzq {
    margin-left: 3rem;
}
.zoomX1d5 {
    transition: transform 0s ease-in-out; /* Agrega una transición suave para suavizar el efecto de zoom */
    transform: scale(1.5);
}
.zoomX2 {
    transition: transform 0s ease-in-out;
    transform: scale(2);
}
.zoomX2d5 {
    transition: transform 0s ease-in-out;
    transform: scale(2.5);
}


/* CAROUSEL */
.carousel-item img {
    object-fit: cover; /* Cubre el área del contenedor, manteniendo la relación de aspecto */
    border-radius: 10px;
}
