#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background-color: #25D366;
    color: white;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1000;
}
#whatsapp-modal {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 50px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px 10px 0 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
#whatsapp-modal a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    font-family: "Gill Sans", sans-serif;
}
#whatsapp-modal a:last-child {
    border-bottom: none;
}
#whatsapp-modal a:hover:first-child {
    background-color: #f5f5f5;
    border-radius: 10px 10px 0 0;

}

#whatsapp-modal a:last-child:hover {
    background-color: #f5f5f5;
    border-radius: 0 0 0 10px;
}

#phone-1{
    height: 26px;
    width: 26px;
}

#whatsapp-modal.animate {
    animation: abrirSuave 0.3s ease-out, tremer 0.1s ease-in 0.3s;
}

.opc-principal{
    font-size: 17px;
}

@keyframes abrirSuave {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes tremer {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
