/* Dentro do novo arquivo static/css/equipe.css */

.equipe-section {
    padding: 1vh 0;
    background-color: var(--cor-branca);
    margin-bottom: 10vh;
}

.equipe-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- Coluna da Esquerda: Foto --- */
.image-column {
    flex-basis: 45%; /* Define um tamanho base para a coluna da imagem */
}

.team-member-photo-wrapper {
    position: relative; /* Essencial para o efeito de camadas */
    height: 500px; /* Altura do container da foto, ajuste se necessário */
}

.photo-background-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 1vh;
    width: 85%;
    height: 90%;
    background: linear-gradient(180deg, rgba(23, 56, 107, 0.56) 0%, #666666 100%); /* Cor do elemento de fundo */
    border-radius: 20px;
    z-index: 1; /* Camada 1 (fundo) */
}

.team-member-photo-wrapper img {
    position: absolute;
    top: 3vh;
    right: 2.7vw;
    width: 85%;
    height: 90%;
    object-fit: cover; /* Garante que a imagem cubra a área sem distorcer */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 2; /* Camada 2 (foto, fica na frente) */
}

/* --- Coluna da Direita: Texto --- */
.text-column-team {
    flex-basis: 55%; /* Tamanho base para a coluna de texto */
}

.text-column-team .divider {
    width: 50px;
    height: 4px;
    background-color: var(--cor-primaria);
    margin-bottom: 25px;
    border-radius: 2px;
}

.text-column-team h3 {
    font-size: 2.2rem;
    color: var(--cor-primaria);
    margin: 0;
}

.text-column-team .job-title {
    font-size: 1.5rem;
    color: #3b3d3f;
    margin-top: 0px;
    margin-bottom: 25px;
}

.bio-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;

}

/* --- Responsividade --- */
@media (max-width: 992px) {
    .equipe-section .container {
        flex-direction: column;
    }

    .image-column {
        width: 100%;
        max-width: 400px; /* Limita o tamanho da foto em telas menores */
    }
}