a {
    color: var(--principal)
}

/* Conteudo */
main {
    min-height: 400px;
}
main ._head {
	position: relative;
}
main>._head h1._titulo {
    font-size: 38px;
    font-weight: 700;
    position: relative;
    color: #000;
    padding-bottom: 10px;
}
main>._head h1._titulo span:after {
    content: '';
    background-color: var(--principal);
    height: 2px;
    width: 200px;
    display: inline-block;
    margin-top: 10px;

    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 3;
    position: absolute;
}
main>._head h1._titulo span:before {
    content: '';
    background-color: #c9c9c9;
    height: 2px;
    display: inline-block;
    margin-top: 10px;
    
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 2;
    position: absolute;
}

main ._body h4 {
	font-size: 24px;
	font-weight: bold;
}

._notfound {
	min-height: 300px
}

.btn-primary {
    background-color: var(--principal);
    border-color: var(--principal);
    color: #FFF;
    border-radius: 200px;
    text-align: center;
    color: #FFF;
    padding: 15px 25px
}
.btn-primary:hover {
    color: #FFF;
    border-color: #8b0805;
    background-color: #8b0805;
}


/* Podcast */
.podcasts_ctn {
   background-color: #f2f2f2;
}
.podcasts_ctn .titulo {
   font-size: 30px;
   font-weight: 600;
}
.podcasts_ctn .podcast-item {
   background: #31343e;
    border-radius: 3px;
    overflow: hidden;
    display: block;
    margin-bottom: 30px;
}
.podcasts_ctn .podcast-imagem img {
   width: 100%;
   height: 220px;
   object-fit:cover;
   object-position: center;
}
.podcasts_ctn .podcast-item .overlay {
   position: absolute;
   top: 0px;
   left: 0px;
   right: 0px;
   bottom: 0px;
   background-color: rgba(0,0,0,.5);
   z-index: 2;
}
.podcasts_ctn .podcast-item .play {
    color: #FFF;
    font-size: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    cursor: pointer;
    margin-top: -29px;
    z-index: 3;
}
.podcasts_ctn .podcast-item .pause {
    color: #FFF;
    font-size: 30px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: 34px;
    cursor: pointer;
    top: 50%;
    margin-top: -29px;
    z-index: 3;
}
.podcasts_ctn .podcast-item .play:hover,
.podcasts_ctn .podcast-item .pause:hover {
   color: var(--principal)
}

.podcasts_ctn .podcast-item .titulo-podcast {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    margin: 15px 15px 30px;
    min-height: 32px;
}

/* Localização */
.mapa {
	height: 400px;
}

._callout {
    border-left: 4px solid var(--principal);
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

._callout strong {
    color: var(--texto);
    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) {
    header {
        padding-top: 15px !important;
        position: static !important;
    }
	.page_ctn>._head h1._titulo {
		font-size: 32px;
	}
	.page_ctn img {
		max-width: 100%;
		height: auto
	}
}