/* Global Styles for Ideas Comunicaciones */

:root {
    --primary: #2563eb;
    --bg-dark: #0a0a0a;
    --card-dark: #121212;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.glass-panel {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.metric-glow {
    text-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Transitions */
.transition-standard {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Gradients for Backgrounds */
.bg-gradient-dark {
    background: radial-gradient(circle at top right, #111814, #0a0a0a);
}