.whatsapp-fixed {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
}

.whatsapp-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25D366; /* Verde WhatsApp */
    color: #fff;
    border-radius: 50%; /* Forma circular */
    width: 60px;
    height: 60px;
    text-decoration: none;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* Estilo empresarial sutil al pasar el ratón (opcional) */
.whatsapp-button.business-hover {
    background-color: #1EBEA5; /* Un tono verde empresarial */
}

/* Animación sutil de pulso (opcional) */
.whatsapp-button.pulse {
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Responsividad (opcional - ajustar según necesidades) */
@media (max-width: 768px) {
    .whatsapp-fixed {
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 25px;
        height: 25px;
    }
}