a {
    color: var(--principal)
}
header { 
    background-color: var(--principal);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding-bottom: 15px
}
header .container {
    background-color: #FFF;
}
/* Conteudo */
main {
    min-height: 400px;
}
main ._head {
	position: relative;
}
main>._head h1._titulo {
    font-size: 38px;
    font-weight: 700;
    position: relative;
    color: var(--secundaria);
    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(--secundaria);
    border-color: var(--secundaria);
    color: #FFF;
    border-radius: 200px;
    text-align: center;
    color: #FFF;
    padding: 15px 25px
}
.btn-primary:hover {
    color: #FFF;
    border-color: var(--principal);
    background-color: var(--principal);
}

/* Produtos */
.produtos_ctn .item {
    padding: 10px;
    background-color: #FFF;
    border-radius: 40px;
    box-shadow: 3px 3px 5px 2px rgba(0,0,0,.2);
}
.produtos_ctn .item .imagem {
    background-color: #d5d6d7;
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid #d5d6d7;
    text-align: center;
}
.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;
    color: var(--secundaria)
}
.produtos_ctn .item .resumo {
    color: #878286;
    height: 95px
}
.produtos_ctn .item .btn-comprar {
    color: #FFF;
    border-radius: 200px;
    width: 100%;
    font-size: 14px;
    background: #2A464A;
    background: linear-gradient(90deg,rgba(42, 70, 74, 1) 0%, rgba(32, 89, 95, 1) 100%);
    box-shadow: 0px 0px 0px 5px rgba(32, 89, 95, .0);
}
.produtos_ctn .btn-comprar:hover {
    background: #2A464A;
    background: linear-gradient(90deg,rgba(32, 89, 95, 1) 0%, rgba(32, 89, 95, 1) 100%);
    box-shadow: 0px 0px 0px 5px rgba(32, 89, 95, .3);
}
.produtos_ctn .item .clique-aqui {
    font-size:11px;
    color:#848688;
    text-decoration: underline;
}
.produtos_ctn .item .clique-aqui:hover {
    color: var(--principal)
}

/* Produtos - Detalhes */
.produto_ctn ._body h2 {
    color: var(--secundaria);
    font-size: 40px;
    text-align: center;
}
.produto_ctn ._body .resumo {
    font-size: 18px;
    color: #878286;
}
.produto_ctn .btn-comprar {
    color: #FFF;
    border-radius: 200px;
    width: 100%;
    font-size: 14px;
    background: #2A464A;
    background: linear-gradient(90deg,rgba(42, 70, 74, 1) 0%, rgba(32, 89, 95, 1) 100%);
    box-shadow: 0px 0px 0px 5px rgba(32, 89, 95, .0);
}
.produto_ctn .btn-comprar:hover {
    background: #2A464A;
    background: linear-gradient(90deg,rgba(32, 89, 95, 1) 0%, rgba(32, 89, 95, 1) 100%);
    box-shadow: 0px 0px 0px 5px rgba(32, 89, 95, .3);
}

/* 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
	}
}