/* Estilos para o fluxo do projeto */
.fluxo-content {
    margin-top: 2rem;
}

.fluxo-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fluxo-diagram {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.fluxo-step {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #444444; /* Alterado de branco para cinza escuro */
}

.fluxo-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4ECDC4, #3498DB);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #4ECDC4;
}

.step-responsible {
    font-weight: bold;
    color: #3498DB;
    margin-bottom: 1rem;
}

.fluxo-arrow {
    font-size: 2rem;
    color: #4ECDC4;
    margin: 0 1rem;
    display: flex;
    align-items: center;
}

.fluxo-roles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.role-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.role-icon {
    font-size: 2rem;
    color: #4ECDC4;
    margin-right: 1.5rem;
}

.role-content h4 {
    margin-top: 0;
    color: #3498DB;
}

/* Estilos para as rotas tecnológicas atualizadas */
.rota-etapa {
    background: linear-gradient(135deg, #4ECDC4, #3498DB);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Responsividade para o fluxo do projeto */
@media (max-width: 768px) {
    .fluxo-diagram {
        flex-direction: column;
    }
    
    .fluxo-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .fluxo-step {
        width: 100%;
        max-width: 100%;
    }
    
    .role-card {
        flex-direction: column;
        text-align: center;
    }
    
    .role-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Ajustes para parceiros */
.partners-section h3 {
    margin-top: 2.5rem;
    color: #4ECDC4;
    text-align: center;
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

/* Partner styles moved to updated-styles.css to avoid conflicts */

/* Ajustes para equipe */
.team-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Otimizações para imagens */
.team-member .member-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

/* Ajustes para responsividade em dispositivos móveis */
@media (max-width: 576px) {
    .partner-card {
        max-width: 100%;
    }
    
    .team-member {
        max-width: 100%;
    }
    
    .team-member .member-img img {
        height: 180px;
    }
}
