/*BOTON PARA VOLVER ARRIBA*/
#backToTop{
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 50px;
    left: 25px;
    background-color: rgba(238, 238, 238, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}
#backToTop:hover{
    transform: scale(1.1);
}
/*WHATSAPP*/
.iconoFlotanteWhatsapp{
    position: fixed;
    display: flex;
    width: 65px;
    height: 65px;
    bottom: 50px;
    right: 25px;
    z-index: 100;
    align-items: center;
    justify-content: center;
    background-color: rgba(37,211,102,0.75);
    border-radius: 50%;
    padding: 7px;
    overflow: hidden;
    cursor: pointer;
    color: white;
    transition: transform 0.5s ease;
}
.iconoFlotanteWhatsapp:hover{
    transform: scale(1.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.iconoFlotanteWhatsapp i{
    font-size: 2.7rem;
}
/*TELEGRAM*/
.iconoFlotanteTelegram{
    position: fixed;
    display: flex;
    width: 65px;
    height: 65px;
    bottom: 120px;
    right: 25px;
    z-index: 100;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    color: rgba(36,161,222,0.75);
    transition: transform 0.5s ease;
}
.iconoFlotanteTelegram:hover{
    transform: scale(1.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.iconoFlotanteTelegram i{
    font-size: 65px;
}

@media screen and (max-width: 800px){
    .iconoFlotanteWhatsapp{
        width: 50px;
        height: 50px;
        bottom: 45px;
        right: 10px;
    }
    .iconoFlotanteTelegram{
        width: 50px;
        height: 50px;
        bottom: 100px;
        right: 10px;
    }
    .iconoFlotanteWhatsapp i{
        font-size: 2rem;
    }
    .iconoFlotanteTelegram i{
        font-size: 50px;
    }
    #backToTop{
        width: 40px;
        height: 40px;
        bottom: 45px;
        left: 10px;
    }
}