/* ========================================
   JOURNEY SECTION - NOVA VERSÃO MODERNA
   ======================================== */

.journey-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.1), rgba(0, 191, 166, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.journey-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.1), rgba(255, 230, 109, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.journey-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.journey-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.journey-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.journey-step {
    flex: 1;
    max-width: 300px;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #26d07c, #2B6CB0, #F2C94C);
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon-container {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #26d07c, #169d5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(38, 208, 124, 0.3);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #2B6CB0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
}

.step-content {
    text-align: center;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #F0FDF4;
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #BBF7D0;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #26d07c, #2B6CB0);
    border-radius: 1px;
}

.connector-arrow {
    color: #2B6CB0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.journey-cta {
    text-align: center;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.journey-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.1), rgba(0, 191, 166, 0.1));
    border-radius: 50%;
}

.journey-cta::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.1), rgba(255, 230, 109, 0.1));
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   RESPONSIVE DESIGN - JOURNEY SECTION
   ======================================== */

@media (max-width: 1024px) {
    .journey-steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-connector {
        transform: rotate(90deg);
    }
    
    .connector-line {
        width: 40px;
        height: 2px;
    }
    
    .journey-step {
        max-width: 100%;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .journey-section {
        padding: 60px 0;
    }
    
    .journey-header {
        margin-bottom: 40px;
    }
    
    .journey-title {
        font-size: 2rem;
    }
    
    .journey-subtitle {
        font-size: 1.1rem;
    }
    
    .journey-steps {
        gap: 2rem;
        margin-bottom: 40px;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-icon-container {
        margin-bottom: 0;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .step-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
    
    .feature-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .journey-cta {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .journey-section {
        padding: 40px 0;
    }
    
    .journey-header {
        margin-bottom: 30px;
    }
    
    .journey-title {
        font-size: 1.8rem;
    }
    
    .journey-subtitle {
        font-size: 1rem;
    }
    
    .step-card {
        padding: 1.25rem;
    }
    
    .step-icon-container {
        margin-bottom: 0;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .step-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-features {
        gap: 0.5rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .journey-cta {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
}
