/* ============================================
   PROCESO PROFESIONAL - DISEÑO MODERNO
   ============================================ */

.section-proceso {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95) 0%, rgba(10, 10, 20, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

/* Timeline Profesional */
.process-timeline-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Card de Paso */
.process-step-pro {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.process-step-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-step-pro:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.process-step-pro:hover::before {
    transform: scaleX(1);
}

/* Número del Paso */
.step-number-pro {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Contenido del Paso */
.step-content-pro {
    position: relative;
    z-index: 1;
}

/* Icono del Paso */
.step-icon-pro {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.step-icon-pro i {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.process-step-pro:hover .step-icon-pro {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(5deg);
}

/* Título del Paso */
.step-title-pro {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Descripción del Paso */
.step-description-pro {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Lista del Paso */
.step-list-pro {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.step-list-pro li {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.step-list-pro li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Highlight del Paso */
.step-highlight {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-left: 3px solid var(--color-primary);
    border-radius: 4px;
    font-style: italic;
}

/* CTA del Proceso */
.process-cta-pro {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.process-cta-pro h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 1rem;
}

.process-cta-pro p {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-timeline-pro {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-timeline-pro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step-pro {
        padding: 1.5rem;
    }

    .step-number-pro {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        top: 1rem;
        right: 1rem;
    }

    .step-icon-pro {
        width: 60px;
        height: 60px;
    }

    .step-icon-pro i {
        font-size: 1.5rem;
    }

    .step-title-pro {
        font-size: 1.3rem;
    }

    .step-description-pro {
        font-size: 0.95rem;
    }

    .step-list-pro li {
        font-size: 0.9rem;
    }

    .step-highlight {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    .process-cta-pro {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .process-cta-pro h3 {
        font-size: 1.5rem;
    }

    .process-cta-pro p {
        font-size: 1rem;
    }
}

/* Animación de entrada */
@media (prefers-reduced-motion: no-preference) {
    .process-step-pro {
        opacity: 0;
        animation: fadeInUp 0.6s ease forwards;
    }

    .process-step-pro:nth-child(1) {
        animation-delay: 0.1s;
    }

    .process-step-pro:nth-child(2) {
        animation-delay: 0.2s;
    }

    .process-step-pro:nth-child(3) {
        animation-delay: 0.3s;
    }

    .process-step-pro:nth-child(4) {
        animation-delay: 0.4s;
    }

    .process-step-pro:nth-child(5) {
        animation-delay: 0.5s;
    }

    .process-step-pro:nth-child(6) {
        animation-delay: 0.6s;
    }

    .process-step-pro:nth-child(7) {
        animation-delay: 0.7s;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}