/*
    Rojo:       #9E3232
    Negro:      #373435
    Gris:       #666364
    Gris Compl: #a3a3a3
*/

*{
    font-family: 'Roboto', sans-serif;
}

/* Header */
header{
    padding: .5rem;
    background-color: #666364;
}
.header-logo img{
    max-width: 160px;
    transition: all .15s ease-in-out;
}
.header-logo img:hover{
    transform: scale(1.05);
}
.header-contenedor{
    border: dashed  2px #a3a3a3;
    padding: .5rem 0;
    display: flex;
}
.header-cont-1{
    gap: 2rem;
    display: flex;
}
.header-cont-2{
    padding-left: 2rem;
    padding-right: 2rem;
}
.header-cont-3{
    gap: 2rem;
    display: flex;
}
/*--------*/
.header-link{
    color: white !important;
    text-align: center;
    padding: 0 !important;
    width: 120px;
    transition: all .15s ease-in-out !important;
}
.header-link:hover{
    transform: scale(1.1);
    text-shadow: 0px 0px 1px #fff, 0px 0px 1px #fff, 0px 0px 1px #fff, 0px 0px 1px #fff ;
}
.header-link-activo{
    transform: scale(1.1);
    text-shadow: 0px 0px 1px #fff, 0px 0px 1px #fff, 0px 0px 1px #fff, 0px 0px 1px #fff ;
}

.btn-abrir-menu{
    display: none !important;
    visibility: hidden !important;
    background: none !important;
    color: rgba(0, 0, 0, .5) !important;
    border-color: rgba(0, 0, 0, .2) !important;
    font-size: 2rem !important;
    padding: 0px 10px !important;
}


.btns-lang{
    position: fixed;
    right: 0;
    top: 8rem;
    z-index: 9;
    padding: 1rem;
    padding-left: 1.2rem;
    background: rgb(229 229 229 / 80%);
    border-radius: 30px 0 0 30px;
}
.btns-lang a,
.btn_off a{
    border-radius: 50%;
    border: 3px solid #fff;
}
.btns-lang .active,
.btn_off .active{
    border: 3px solid #f1ff23;
}

.btn_off{
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.header-offcanvas{
    background-color: rgb(29, 23, 23) !important;
}
.offcanvas-enlace{
    color: white !important;
    font-size: 2rem;
}
.offcanvas-enlace-activo{
    color: #9E3232 !important;
    font-weight: 500;
}
.off-canvas-contenedor-rs{
    margin-top: 10px;
}

/* Footer */
.footer-link{
    color: black !important;
    text-decoration: none;
    transition: all .15s ease-in-out;
}
.footer-link:hover{
    color: #9E3232 !important;
    font-weight: bold;
}
.footer-link-activo{
    color: #9E3232 !important;
    font-weight: bold;
}
.footer-div{
    display: flex;
    flex-direction: column;
    border-top: solid 2px #9E3232;
    border-bottom: solid 2px #9E3232;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.footer-div-enlaces{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-div-enlaces p{
    margin: 0;
}
.footer-div-logos{
    width: 95vw;
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.footer-logo{
    max-width: 200px;
}
.div-rpe p{
    margin: 0;
}
.div-derechos{
    text-align: center;
}
.div-derechos a{
    color: #9E3232 !important;
    text-decoration: none;
}
/*===========WSP===========*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    line-height: 60px;
    z-index: 9999;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.whatsapp-float:hover {
    opacity: 1;
}
@media (max-width: 992px) {
    .footer-div-enlaces{
        display: none;
    }
    .header-contenedor{
        align-items: center;
    }
    .header-cont-1,
    .header-cont-3{
        display: none;
    }
    .header-cont-2{
        padding: 0
    }
    .header-logo img{
        max-width: 100px;
    }

    .btns-lang{
        display: none;
    }
    .btn-abrir-menu{
        display: inline !important;
        visibility: visible !important;
        position: absolute;
        right: 30px;
        z-index: 4;
    }
}

@media (max-width: 768px) {
    .div-rpe{
        text-align: center;
    }
    .div-rpe p{
        margin: 0;
    }
    .footer-div-logos{
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}

@media (max-width: 576px) {

    .btns-lang{
        display: none;
    }
}

@media (max-width: 425px) {

    .btn-abrir-menu{
        font-size: 1.5rem !important;
        right: 20px;
        padding: 0px 10px !important;
    }

}

@media (max-width: 375px) {
    .btn-abrir-menu{
        font-size: 1.2rem !important;
    }
}