:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1b2f47c *//* -------- Process Timeline Zigzag (CORREGIDO) -------- */
.process-timeline-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f0ede8 100%);
}

.process-timeline-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
}

.timeline-row-reverse {
    flex-direction: row;
}

.timeline-item {
    text-align: center;
    flex-shrink: 0;
    position: relative;
}

.timeline-item-loop {
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(210, 85%, 50%) 0%, hsl(210, 85%, 42%) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
    border: 4px solid white;
}

.timeline-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    width: 280px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid hsl(210, 85%, 50%);
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.timeline-card h3 {
    font-size: 1.1rem;
    color: #212529;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.loop-arrow {
    margin-top: 1rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #856404;
    border: 2px solid #f39c12;
}

.timeline-connector {
    font-size: 2.5rem;
    color: hsl(210, 85%, 50%);
    font-weight: bold;
    flex-shrink: 0;
}

/* Conector de bajada alineado a la derecha */
.timeline-down-connector-right {
    text-align: right;
    font-size: 3rem;
    color: hsl(210, 85%, 50%);
    font-weight: bold;
    margin: 1rem 0;
    padding-right: 10%;
}

.timeline-footer {
    margin-top: 4rem;
    text-align: center;
}

.timeline-highlight {
    background: linear-gradient(135deg, hsl(210, 85%, 50%) 0%, hsl(150, 70%, 60%) 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 16px;
    display: inline-block;
    font-size: 1.1rem;
    line-height: 2;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.timeline-highlight strong {
    font-size: 1.2rem;
}

/* Responsive - Vista móvil */
@media (max-width: 1200px) {
    .timeline-row,
    .timeline-row-reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-connector {
        transform: rotate(90deg);
        font-size: 2rem;
    }

    .timeline-down-connector-right {
        display: none;
    }

    .timeline-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .process-timeline-section {
        padding: 3rem 0;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .timeline-card {
        padding: 1.5rem 1.2rem;
    }

    .timeline-card h3 {
        font-size: 1rem;
    }

    .timeline-card p {
        font-size: 0.9rem;
    }

    .loop-arrow {
        font-size: 0.8rem;
    }

    .timeline-highlight {
        padding: 1.5rem 2rem;
        font-size: 1rem;
    }
}/* End custom CSS */