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: 1px;
    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: 1px;
    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: var(--secundaria);
    background-color: var(--secundaria);
}

/* Produtos */
.produtos_ctn .item {
    background-color: #FFF;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.produtos_ctn .item .imagem {
    background-color: #d5d6d7;
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid #d5d6d7;
    text-align: center;
}
.produtos_ctn .item .imagem:after {
   content: '';
   display: block;
   left: 0px;
   right: 0px;
   top: 0px;
   bottom: 0px;
   background-color: rgba(0,0,0,.5);
}
.produtos_ctn .item .imagem img {
    border-radius: 40px;
    margin: 0px auto;
    object-fit: contain;
    width: 100%;
}
.produtos_ctn .item .titulo {
    font-size: 24px;
    font-weight: 600;
    position: absolute;
    bottom: 30px;
    left: 15px;
    right: 15px;
    color: white
}

/* Produtos - Detalhes */
.produto_ctn ._body h2 {
    color: #000;
    font-size: 40px;
    text-align: center;
    font-weight: 900;
}
.produto_ctn ._body .resumo {
    font-size: 18px;
    color: #878286;
}
.produto_ctn .btn-contato {
    color: #FFF;
    border-radius: 200px;
    width: 100%;
    font-size: 14px;
    background: #12d15e;
    box-shadow: 0px 0px 0px 5px rgba(32, 89, 95, .0);
}
.produto_ctn .btn-contato:hover {
    background: var(--principal);
    box-shadow: 0px 0px 0px 5px rgba(32, 89, 95, .3);
}

/* Posts */
.posts_ctn .chapeu {
   text-transform: uppercase;
   font-weight: 700;
   font-size: 13px;
   letter-spacing: 1px;
   color: var(--principal)
}
.posts_ctn .titulo {
   font-weight: 900;
   font-size: 22px;
   color: #2f2e2e;
   padding-bottom: 10px;
   margin-bottom: 10px;
}
.posts_ctn .btn-saibamais {
   background-color: var(--principal);
   color: #FFF;
   margin: 20px 0px
}
.posts_ctn .btn-saibamais:hover {
   background-color: var(--secundaria)
}

/* 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) {
    header {
        padding-top: 15px !important;
        position: static !important;
    }
	.page_ctn>._head h1._titulo {
		font-size: 32px;
	}
	.page_ctn img {
		max-width: 100%;
		height: auto
	}
}