.professor-bio-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);

    display: flex;
    align-items: center;
    gap: 20px;

    max-width: 100%;
}

/* CONTAINER DA FOTO */
.professor-foto {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

/* A FOTO */
.professor-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* TEXTO */
.professor-info {
    flex: 1;
}

.professor-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.professor-info p {
    font-size: 14px;
    line-height: 1.6;
}
.professor-bio-card {
    margin-bottom: 32px;
}
@media (max-width: 600px) {
    .professor-bio-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .professor-foto {
        margin-bottom: 16px;
    }

    .professor-info {
        width: 100%;
    }
}

.formacao-highlight {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.formacao-highlight h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.formacao-highlight p {
    font-size: 14px;
    line-height: 1.6;
}