/* Botón Flotante */
.btn-wsp-flotante {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-wsp-flotante img {
    width: 35px;
    height: 35px;
}

.btn-wsp-flotante:hover {
    background-color: #128c7e; /* Un verde más oscuro al pasar el mouse */
    transform: scale(1.1); /* Se agranda un poquito */
}

/* Ajuste para celulares: que no tape contenido importante */
@media (max-width: 768px) {
    .btn-wsp-flotante {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}