/* Estilos para el boton de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}

/* Estilos para móviles */
@media (max-width: 600px) {
    .whatsapp-button {
        padding: 10px 15px;
        font-size: 14px;
    }
}
