/* EQUIPE BIS Hub - CSS Personalizado */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@500;600;700&display=swap');

:root {
    --accent: #10b981;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.heading-font {
    font-family: 'Poppins', sans-serif;
}

.logo-glow {
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.4));
}

.link-card {
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.link-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgb(16 185 129 / 0.5);
}

.aviso {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #1f2937;
    font-weight: 600;
}

.platform-btn {
    transition: all 0.3s ease;
}

.platform-btn:hover {
    transform: scale(1.05);
}

.social-btn {
    transition: all 0.2s ease;
}
        
.social-btn:hover {
    transform: translateY(-3px) scale(1.02);
}