@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=Manrope:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

main {
    background-color: rgb(245, 245, 245);
    padding-top: 100px;
    padding-bottom: 200px;
}

section {
    padding-top: 80px;
}

.titulo-equipe {position: relative; margin-bottom: 40px;}

section p {
    color: rgb(100, 100, 100);
    font-size: 18px;
    line-height: 1.8em;
    max-width: 700px;
}

.profissionais .col-md-4 {
    min-width: 360px;
    max-width: 390px;
    margin: auto;
}

.card {
    border: none;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease;
    margin-bottom: 40px;
}

.card p {
    line-height: 1.2em;
}

.card img {
    height: 400px;
    display: block;
    margin: auto;
}

.card:hover {
    transform: translateY(-15px);
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0; /* Inicialmente oculto, movido para fora da vista à direita */
    width: 0;
    height: 3px;
    background-color: rgb(138, 123, 112);
    transition: width 0.25s ease; /* Suaviza a transição */
}

.card:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

.topTitle {
    position: relative;
    padding: 100px 80px;
    overflow: hidden; /* Impede que o pseudo-elemento saia dos limites do elemento pai */
    color: rgb(223, 214, 207);
}

.topTitle h1 {
    z-index: 5;
    position: relative;
}

.topTitle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/page_title.png');
    background-size: cover;
    background-position: center;
    filter: grayscale(1); /* Aplica o filtro de escala de cinza */
    z-index: 0; /* Garante que o pseudo-elemento fique atrás do conteúdo do .topTitle */
}

.topTitle::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 0; /* Fica entre o fundo e o conteúdo */
}

.dados-pessoais {
    padding-left: 20px;
    padding-right: 30px;
    margin-bottom: 60px;
}

.imagemPro {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 50px;
}

.dados {
    color: #717477;
    margin: 0;
}

.redes-botoes {
    margin-top: 30px;
}

.btn-social {
    background-color: #e7e7e7;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.8s ease;
}

.btn-social i {
    color: rgb(0, 0, 0); /* Cor dos ícones */
    transition: all 0.8s ease;
}

.btn-social:hover {
    background-color: rgb(0, 0, 0);
}

.btn-social:hover i {
    color: rgb(255, 255, 255);
}

.bloco {
    margin-bottom: 60px;
}

.bio-title {
    color: #717477; /* Cor do texto */
    margin-bottom: 30px;
}

.bio-quote {
    font-style: italic;
    color: #aeb3b9; /* Cor do texto para a citação */
    margin-bottom: 30px;
    font-size: 20px;
    font-family: "Playfair Display", serif;
}

.bio-text {
    color: #444; /* Cor do texto para a descrição */
    line-height: 1.6; /* Espaçamento da linha */
    font-family: "Lexend Deca", sans-serif;
}

.title {
    color: #333;
    padding: 20px 0;
    width: 100%;
}

.formacao .title {
    border-bottom: 1px dashed rgb(196, 196, 196);
    margin-bottom: 20px;
    color: #717477;
}

.especialidades .title {
    color: #717477;
}

.formacao ul, .especialidades ul {
    list-style-type: none; /* Remove os marcadores de lista */
    padding: 0;
}

.formacao li, .especialidades li {
    margin-bottom: 5px;
    font-family: "Lexend Deca", sans-serif;
}


