/* Estilos para a jornada de serviços - movido de servicos.html para arquivo externo */

.sectors-section .row:last-child {
    display: flex;
    flex-wrap: wrap;
}

/* Ordem dos setores */
.sectors-section .col-lg-3:nth-child(1) { order: 1; } /* Veículos */
.sectors-section .col-lg-3:nth-child(2) { order: 2; } /* SERVIÇOS */
.sectors-section .col-lg-3:nth-child(3) { order: 3; } /* Bancos - colocado após SERVIÇOS */
.sectors-section .col-lg-3:nth-child(4) { order: 4; } /* Consórcio */

/* Estilos para o caminho dos serviços */
.service-journey {
    position: relative;
    padding: 60px 0;
}

.service-step {
    position: relative;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.service-step-icon i {
    font-size: 2rem;
    color: white;
}

.service-step-number {
    display: none;
}

.service-path-line {
    position: absolute;
    left: 50%;
    top: 140px;
    bottom: -40px;
    width: 3px;
    background: linear-gradient(to bottom, #ff6600, #ff8533);
    transform: translateX(-50%);
    z-index: 1;
}

.service-path-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #ff6600;
    border-radius: 50%;
    transform: translateX(-50%);
}

.service-path-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #ff8533;
    transform: translateX(-50%);
}

.service-step:last-child .service-path-line {
    display: none;
}

.service-possibilities {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.possibility-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.possibility-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.possibility-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.possibility-icon i {
    color: white;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .service-path-line {
        display: none;
    }
    
    .service-step {
        margin-bottom: 30px;
    }
}

