/* Conteudo */
.body_ctn {
    min-height: 400px;
}
.body_ctn ._head {
    background: #f1f1f1;
	position: relative;
}
.body_ctn>._head h1._titulo {
    font-size: 38px;
    font-weight: 700;
    position: relative;
    color: var(--terciaria);
    padding-bottom: 10px;
}
.body_ctn>._head h1._titulo span:after {
    content: '';
    background-color: var(--terciaria);
    height: 1px;
    width: 200px;
    display: inline-block;
    margin-top: 10px;

    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 3;
    position: absolute;
}
.body_ctn>._head h1._titulo span:before {
    content: '';
    background-color: #c9c9c9;
    height: 1px;
    display: inline-block;
    margin-top: 10px;
    
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 2;
    position: absolute;
}

.body_ctn ._body h4 {
	font-size: 24px;
	font-weight: bold;
}

._notfound {
	min-height: 300px
}

/* Exames */
.exames_ctn ._tituloLista {
    font-weight: bold;
    font-size: 18px;
    color: var(--terciaria);
}
.exames_ctn ._exames {
    background: #f1f1f1;
}
.exames_ctn ._categoria {
    font-weight: bold;
    font-size: 18px;
    color: var(--terciaria);
}

.exame_ctn ._titulo {
    font-weight: bold;
    font-size: 26px;
    color: var(--terciaria);
}
.exames_ctn ._imagem img,
.exame_ctn ._imagem img {
    transition: transform 0.3s ease;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Equipe */
.equipe_ctn .equipe-imagem {
    position: relative;
    display: inline-block;
}

.equipe_ctn .equipe-imagem img {
    transition: transform 0.3s ease;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.equipe_ctn .equipe-imagem:hover img {
    transform: scale(1.05);
}

.equipe_ctn .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipe_ctn .card:hover {
    transform: translateY(-5px);
}

.equipe_ctn .card-title {
    color: var(--principal);
    font-weight: 600;
}

.equipe_ctn .card-text {
    font-size: 0.9rem;
}

/* Localização */
.mapa {
	height: 400px;
}

._callout {
    border-left: 4px solid var(--terciaria);
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

._callout strong {
    color: var(--terciaria);
    display: block;
    margin-bottom: 8px;
}

/* Comum */
h1 {
    font-size: 60px;
    font-weight: 600;
}
h2 {
    font-size: 40px;
    font-weight: 600;
}
h3 {
    font-size: 30px;
    font-weight: 600;
}

@media(max-width:767px) {
	.page_ctn>._head h1._titulo {
		font-size: 32px;
	}
	.page_ctn img {
		max-width: 100%;
		height: auto
	}
}