/* Estilos Globales - GT Data Consulting */

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

/* Efecto Glassmorphism */
.glass-effect {
    background: rgba(16, 30, 34, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 185, 242, 0.1);
}

/* Gradientes Comunes */
.hero-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(13, 185, 242, 0.15) 0%, rgba(16, 30, 34, 1) 100%);
}

/* Tarjetas con brillo al pasar el mouse */
.service-card-glow:hover {
    box-shadow: 0 0 20px rgba(13, 185, 242, 0.2);
    border-color: rgba(13, 185, 242, 0.4);
}

/* Utilidades adicionales */
.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
