.whatsapp-float-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    animation: fadeInUp 0.5s ease-out 0.5s backwards;
}

.whatsapp-channel-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white !important;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.whatsapp-channel-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
    background-color: #22bf5b;
}

.whatsapp-icon-svg {
    width: 18px;
    height: 18px;
    fill: white;
    display: block;
}

.whatsapp-text {
    line-height: 1.2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajustes para móviles */
@media (max-width: 480px) {
    .whatsapp-float-container {
        bottom: 20px;
        left: auto;
        right: 20px;
    }
    
    .whatsapp-channel-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .whatsapp-icon-svg {
        width: 20px;
        height: 20px;
    }
}
