/* Estilos para el botón de WhatsApp */
.whatsapp-container {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1000;
}

.whatsapp-container a {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Color de fondo del botón */
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-container a img {
    margin-top: 10px; /* Ajuste vertical de la imagen */
}

.whatsapp-container a:hover {
    background-color: #128c7e; /* Color de fondo del botón al pasar el cursor */
}