/* DISEÑO BASE (Se aplica a todos los dispositivos) */
.whatsapp-fixed-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 99999; /* Para que siempre esté por encima de todo */
    box-shadow: 2px 4px 12px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

/* EFECTO AL PASAR EL MOUSE (Solo PC) */
.whatsapp-fixed-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* AJUSTE PARA MÓVILES (Pantallas menores a 768px) */
@media (max-width: 767px) {
    .whatsapp-fixed-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}