/**
 * Pixhook.io - Estilos principales
 * Paleta de colores oscuros con degradados animados
 */

/* =====================================================
   ANIMACIONES
   ===================================================== */

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =====================================================
   CLASES PRINCIPALES
   ===================================================== */

.gradient-bg {
    background: linear-gradient(-45deg, #0f0f0f 0%, #1a1a1a 25%, #262626 50%, #1f1f1f 75%, #0f0f0f 100%);
    background-size: 400% 400%;
    /*animation: gradient 15s ease infinite;*/
}

.glass {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(80, 80, 80, 0.3);
}

/* =====================================================
   EFECTOS HOVER
   ===================================================== */

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* =====================================================
   BOTONES
   ===================================================== */

.btn-primary {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid #404040;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3d3d3d 0%, #2a2a2a 100%);
}

/* =====================================================
   COLORES AUXILIARES
   ===================================================== */

.accent-color {
    color: #a0a0a0;
}

/* =====================================================
   SCROLLBAR PERSONALIZADA (opcional)
   ===================================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #404040;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #505050;
}

/* =====================================================
   RESPONSIVE UTILITIES
   ===================================================== */

@media (max-width: 768px) {
    .hover-lift:hover {
        transform: translateY(-2px);
    }
}

/* =====================================================
   ANIMACIONES ADICIONALES
   ===================================================== */

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

.fade-in {
    animation: fadeIn 0.3s ease;
}

/* =====================================================
   ESTADOS DE CARGA
   ===================================================== */

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    animation: spin 1s linear infinite;
}

/* =====================================================
   FOCUS STATES
   ===================================================== */

input:focus,
button:focus {
    outline: none;
}

/* =====================================================
   TRANSICIONES GLOBALES
   ===================================================== */

* {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration: 200ms;
    transition-timing-function: ease-in-out;
}

button,
a,
input {
    transition-duration: 150ms;
}