:root {
    --lasit-blue: #0f172a;
    --lasit-red: #e11d48;
    --lasit-light-blue: #3b82f6;
}

body { 
    font-family: 'Outfit', sans-serif; 
    background-color: #020617; /* Slate 950 */
    color: white;
    overflow-x: hidden;
}

/* FONDO ANIMADO ESPECTACULAR */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 20s infinite ease-in-out alternate;
}
.orb-1 { width: 40vw; height: 40vw; background: rgba(59, 130, 246, 0.15); top: -10%; left: -10%; animation-delay: 0s; }
.orb-2 { width: 30vw; height: 30vw; background: rgba(225, 29, 72, 0.15); bottom: 10%; right: -5%; animation-delay: -5s; }
.orb-3 { width: 25vw; height: 25vw; background: rgba(14, 165, 233, 0.1); top: 40%; left: 40%; animation-delay: -10s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 10%) scale(1.1); }
    100% { transform: translate(-5%, -5%) scale(0.9); }
}

/* EFECTO CRISTAL Y 3D TILT AVANZADO */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

.tilt-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.3), inset 0 0 20px rgba(255,255,255,0.05);
}

/* EFECTO DE RESPLANDOR INTERNO (GLARE) */
.glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
    transform: translateZ(10px); /* Elementos 3D internos flotan más */
}
.tilt-card:hover .glare { opacity: 1; }

/* ELEMENTOS INTERNOS FLOTANTES (EFECTO PARALLAX) */
.card-content { transform: translateZ(40px); }
.card-icon-container { transform: translateZ(60px); }

/* ANIMACIÓN DE ENTRADA EN CASCADA */
.stagger-enter {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slideUpFade {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* EFECTO TEXTO BRILLANTE ANIMADO */
.animate-text-glow {
    background-size: 300% auto;
    animation: textGlow 8s linear infinite;
}

/* EFECTO TEXTO BRILLANTE ANIMADO (Gris a Blanco) */
.animate-text-glow-gray {
    background-size: 200% auto;
    animation: textGlow 6s linear infinite;
}

@keyframes textGlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* SCROLLBAR INVISIBLE PERO FUNCIONAL */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }
