/* ============================
   PROFISSIONAIS - LISTAGEM
   ============================ */

.card img {
    height: 300px;
    object-fit: contain;
    object-position: top;
    border-bottom: 1px solid #eee;
    background-color: #b4b2b2;
}

.card .card-body {
    padding: 1rem;
}

/* ============================
   DETALHE DO PROFISSIONAL
   ============================ */

.conteudo-profissional {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .conteudo-profissional {
        text-align: justify;
    }
}

/* ============================
   BANNER DAS PÁGINAS DE PROFISSIONAIS
   ============================ */
.banner-profissionais {
    background-image: url('../../assetsSite/images/banners/fundo_menu.jpg');
    background-size: cover;
    background-position: center center;
    height: 300px;
    position: relative;
}

.banner-profissionais h1 {
    margin-top: 130px;
    font-size: 2.5rem;
    font-weight: bold;
    z-index: 2;
    position: relative;
}

.banner-profissionais::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); /* overlay escuro */
    z-index: 1;
}

