/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

.text-beige {
    color: #b4ac9a !important;
}

header nav ul {
    text-align: center;
}

.titulo-nosotros {
    color: #b4ac9a !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 3rem;
}

.descripcion-nosotros {
    color: #b4ac9a !important;
}

.banner_1_fondo{
    background-image: url('../img/cama.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}
.banner_1_fondo .contenido{
    z-index: 10!important;
    position: relative;
}

.banner_1_fondo::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1!important;
}

.banner_1_fondo .titulo{
    color: #b5ae9c;
    font-weight: 600;
}

.banner_1_fondo .descripcion{
    color: #b5ae9c;
    font-weight: 600;
}
.img-aliado{
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
}
.img-producto-prev{
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}
.img-producto-prev::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1!important;
}
.img-producto-prev:hover::before{
    background-color: rgba(0, 0, 0, 0.5);
}
.img-producto-prev .botones-producto{
       opacity: 0;
       transition: all 0.3s ease-in-out;
       z-index: 2;  
}
.img-producto-prev:hover .botones-producto{
       opacity: 1;
}
.img-producto-prev:hover .botones-producto a{
       color: #fff;
       background-color: #015571;
}
