
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 50px; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Texto visible solo en pantallas grandes */
.whatsapp-float span {
    display: inline-block;
    white-space: nowrap;
}

/* Solo ícono en móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        padding: 12px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
    }
    .whatsapp-float span {
        display: none;
    }
}

