/* ================================
   PITIUPI PRESENTATION - SLIDE 10 STYLES
   Flujo del reto con tarjetas
   ================================ */

/* ================================
   CONTENEDOR DE PASOS
   ================================ */

   .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin: 2rem 0;
}

/* ================================
   TARJETAS DE PASOS
   ================================ */

.step-card {
    background: rgba(3, 0, 46, 0.7);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: cardSlideIn 0.5s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }
.step-card:nth-child(5) { animation-delay: 0.5s; }
.step-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto hover en tarjetas */
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(51, 204, 0, 0.4),
        0 0 60px rgba(57, 255, 20, 0.3);
    border-color: var(--neon);
}

/* Brillo de fondo animado */
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.2), transparent);
    transition: left 0.5s ease;
}

.step-card:hover::before {
    left: 100%;
}

/* ================================
   NÚMEROS DE PASOS
   ================================ */

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(51, 204, 0, 0.5));
}

/* ================================
   TEXTO DE PASOS
   ================================ */

.step-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text);
}

/* ================================
   RESPONSIVE - SLIDE 10
   ================================ */

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-text {
        font-size: 1.2rem;
    }
}