.container-whatsApp {
    position: fixed;
    right: 0%;
    bottom: 20%;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Estilo del botón flotante */
.whatsapp-icon {
    background: linear-gradient(90deg, rgba(89, 187, 170, 0.5) 0%, rgba(1, 113, 157, 0.5) 100%);
    width: 133px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, opacity 0.3s;
}
.whatsapp-icon img{
    width: 63.58px;
    height: 63.58px;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.whatsapp-expanded {
    display: none;
    align-items: center;
    background: linear-gradient(90deg, rgba(252, 196, 80, 1) 0%, rgba(232, 71, 87, 1) 100%);
    width: 393px;
    height: 80px;
    padding-left: 12%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    font-weight: bold;
    font-family:'Rubik Regular';
}

.whatsapp-expanded a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 1.2em;
}

.whatsapp-expanded img {
    width: 63.58px;
    height: 63.58px;
}

/* LAPTOS */
@media (max-width: 1024px) {
    .whatsapp-icon {
        width: 110px; 
        height: 80px; 
    }

    .whatsapp-icon img {
        width: 50px; 
        height: 50px;
    }

    .whatsapp-expanded {
        width: 320px; 
        height: 80px; 
        font-size: 1em; 
        padding-left: 10%;
    }

    .whatsapp-expanded img {
        width: 50px; 
        height: 50px;
    }
}

/* TABLETS */
@media (max-width: 768px) {
    .whatsapp-icon {
        width: 100px; 
        height: 70px; 
    }
    .whatsapp-icon img {
        width: 60px; 
        height: 60px;
    }
    .whatsapp-expanded {
        width: 280px; 
        height: 70px; 
        font-size: 0.9em; 
        padding-left: 10%;
    }
    .whatsapp-expanded img {
        width: 50px; 
        height: 50px;
    }
}

@media screen and (max-width: 480px) and (orientation: portrait) {

}