/* --------------- CSS GERAL - Aplica em todas as páginas --------------- */
html {
    background: url("../imagens/geral/fundo.jpg") no-repeat center center fixed;
    background-size: cover;
    height: 100%;
}

body {
    margin: 0;
    font-family: Verdana;
}

body.loadfix * {
    transition: none!important;
}

p, h1, h2, h3, h4, h5, h6, ul {
    margin: 0;
}

a {
    text-decoration: none;
}

header {
    width: 100%;
    height: 80px;
    background-color: #132329;
    position: fixed;
    z-index: 997;
    top: 0;
}

header + * {
    margin-top: 80px;
}

header.sticky {
    height: 40px;
}

header.sticky #menu {
    width: 100%;
    margin-top: 0;
    height: 40px;
    text-align: center;
}

header.sticky #menu a {
    height: 40px;
    line-height: 40px;
}

header.sticky #logo,
header.sticky #login {
    display: none;
}

#cabecalho {
    width: 100%;
    max-width: 1250px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

#logo {
    width: 100px;
    height: 70px;
    margin-top: 5px;
    margin-left: 20px;
    margin-right: 20px;
    float: left;
}

#menu {
    width: calc(100% - 480px);
    height: 60px;
    margin-top: 20px;
    float: left;
    background-color: #132329;
    padding-left: 20px;
    padding-right: 5px;
    box-sizing: border-box;
    overflow: hidden;
}

#menu a {
    height: 60px;
    line-height: 60px;
    color: #ffffff;
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
    box-sizing: border-box;
    font-size: 14px;
    text-overflow: clip;
    white-space: nowrap;
}

#menu a:after {
    content: "";
    margin-top: -3px;
    display: block;
    border-bottom: solid 3px #ff0000;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 200ms ease-in-out;
}

#menu a:hover:after, 
#menu a.active:after {
    transform: scaleY(1);
}

#logo_mobile {
    width: calc(100% - 50px);
    height: 50px;
    line-height: 50px;
    color: #ffffff;
    text-align: center;
    display: none;
    font-size: 25px;
    font-weight: bold;
    float: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#botao_menu {
    width: 50px;
    height: 50px;
    float: left;
    background-image: url("../imagens/icones/menu.png");
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    display: none;
}

#login {
    width: 260px;
    height: 80px;
    margin-right: 10px;
    float: left;
}

#login label {
    width: 70px;
    height: 23px;
    padding-top: 8px;
    color: #ffffff;
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: bold;
    float: left;
    text-align: right;
    margin-right: 10px;
}

#login #nome_usuario,
#login #senha {
    width: 110px;
    height: 20px;
    border: none;
    border-bottom: solid 1px #ff0000;
    background: transparent;
    float: left;
    color: #ffffff;
    outline: none;
}

#login input[type="submit"] {
    width: 50px;
    height: 22px;
    margin-top: 35px;
    margin-left: 10px;
    background-color: #c10a0a;
    color: #ffffff;
    border: solid 1px #a50303;
    float: left;
}

#form_login.disabled input[type="submit"] {
    cursor: not-allowed;
    background-image: url("../imagens/icones/loading.gif");
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center center;
    font-size: 0px;
}

#login #campos {
    width: 200px;
    float: left;
}

#login .grupo {
    width: 200px;
    height: 30px;
    clear: both;
}

#login .grupo:first-child {
    margin-top: 10px;
}

footer {
    width: 100%;
    min-height: 150px;
    background-color: #132329;
    overflow: hidden;
}

#rodape {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.titulo_footer {
    border-bottom: solid 2px #ff0000;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

#quem_somos {
    width: 470px;
    height: auto;
    color: #ffffff;
    margin-left: 20px;
    float: left;
}

#quem_somos p {
    margin-bottom: 10px;
}

#contato {
    width: 300px;
    height: auto;
    color: #ffffff;
    margin-right: 20px;
    float: right;
    text-align: right;
}

#contato p {
    margin-bottom: 10px;
}

#main {
    width: 100%;
    max-width: 1200px;
    min-height: 750px;
    margin-left: auto;
    margin-right: auto;
    background-color: #e0e2e5;
}

#main.no_overflow {
    overflow: hidden;
}

#main::before, #main::after {
    content: "";
    clear: both;
    display: table;
    margin-top: -1px;
}

#redes_sociais {
    width: 60px;
    height: 200px;
    position: fixed;
    margin-top: 150px;
    margin-left: 1220px;
    z-index: 996;
}

.rede_social {
    width: 60px;
    height: 60px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 5px;
    border-radius: 50%;
}

.rede_social.facebook {
    background-color: #3b5998;
    background-image: url("../imagens/redes_sociais/facebook.png");
}

.rede_social.facebook:hover {
    background-color: rgba(59, 89, 152, 0.8);
}

.rede_social.instagram {
	background-color: #125688;
    background-image: url("../imagens/redes_sociais/instagram.png");
}

.rede_social.instagram:hover {
    background-color: rgba(18, 86, 136, 0.8);
}

.rede_social.twitter {
    background-color: #55acee;
    background-image: url("../imagens/redes_sociais/twitter.png");
}

.rede_social.twitter:hover {
    background-color: rgba(85, 172, 238, 0.8);
}

.rede_social.mobile {
    display: inline-block;
    border-radius: 0;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
}

#redes_sociais_footer {
    width: 100%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    margin-top: 10px;
    display: none;
    text-align: center;
}

.clearfix:after {
    content: "";
    clear: both;
    display: block;
}


/* --------------- CSS para Modal --------------- */

.modal:before {
	content: "";
    background-color: #000000;
	opacity: 0.6;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
}

.modal .body {
    width: 90%;
    max-width: 500px;
    background-color: #fefefe;
    border-radius: 6px;
    z-index: 999;
    position: fixed;
    margin: auto;
    left: 0;
    right: 0;
    top: -100%;
    border: solid 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal .header {
    padding: 10px 15px;
}

.modal .header h1 {
    float: left;
    font-size: 22px;
    margin-top: 8px;
}

.modal .header .fechar {
    color: #b4b4b4;
    font-size: 18px;
    text-decoration: none;
    float: right;
}

.modal .header .fechar:hover {
    color: #919191;
}

.modal .content {
    padding: 10px 15px;
    font-size: 14px;
}

.modal .footer {
    padding: 10px 15px;
    border-top: solid 1px #dddddd;
}

.modal .footer a {
    float: right;
    text-decoration: none;
    background-color: #2f5162;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    margin-left: 10px;
    border: solid 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.modal .footer a:hover {
    background-color: #2a3c45;
}

/* --------------- CSS Página Home --------------- */

#container_slider {
    width: 100%;
    height: 0;
    padding-bottom: 33.33%;
    position: relative;
}

#container_slider .prev,
#container_slider .next {
    position: absolute;
    z-index: 995;
    top: 45%;
    transform: translateY(-45%);
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    width: 40px;
    height: 50px;
}

#container_slider .prev {
    left: 0;
}

#container_slider .prev:before,
#container_slider .next:before {
    content: "";
    display: block;
    width: 26px;
    height: 30px;
    border-bottom: solid 15px transparent;
    border-top: solid 15px transparent;
    box-sizing: border-box;
    margin-top: 10px;
    margin-left: 7px;
}

#container_slider .next {
    right: 0;
}

#container_slider .prev:before {
    border-right: solid 26px rgba(255, 255, 255, 0.9);
}

#container_slider .next:before {
    border-left: solid 26px rgba(255, 255, 255, 0.9);
}

#slider {
    margin: 0;
    position: absolute;
    list-style: none;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 0;
}

#slider li {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#slider li:first-child {
    position: relative;
    display: block;
    float: left;
}

#slider img {
    width: 100%;
    height: 100%;
}

#slider .legenda {
    position: absolute;
    z-index: 995;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    font-size: 23px;
    font-weight: bold;
    padding-left: 10px;
    margin: 0;
}

#menu_categorias {
    list-style: none;
    padding: 0;
    position: relative;
    width: 280px;
    height: auto;
    float: left;
    margin-top: 10px;
}

#menu_categorias > li {
    width: 280px;
    min-height: 50px;
    text-align: center;
    font-size: 15px;
    position: relative;
    left: -10px;
    overflow: hidden;
}

#menu_categorias > li p {
    width: 260px;
    line-height: 40px;
    background-color: #8c0000;
    position: relative;
    z-index: 10;
    text-overflow: clip;
    white-space: nowrap;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.7);
}

#menu_categorias > li::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    border-top: solid 5px #740000;
    border-right: solid 5px #740000;
    border-left: solid 5px transparent;
    border-bottom: solid 5px transparent;
    box-sizing: border-box;
    top: 40px;
    left: 0;
    z-index: 11;
}

#menu_categorias > li::after {
    content: "";
    display: block;
    width: 20px;
    height: 40px;
    position: absolute;
    border-left: solid 15px #8c0000;
    border-bottom: solid 20px transparent;
    border-top: solid 20px transparent;
    box-sizing: border-box;
    top: 0;
    right: 0;
    z-index: 11;
}

#menu_categorias > li a {
    color: #ffffff;
}

#menu_categorias > li:hover .submenu_categorias {
    margin-top: 0;
}

.submenu_categorias {
    width: 230px;
    height: auto;
    list-style: none;
    padding: 0;
    margin-top: -150%;
    margin-left: 20px;
    margin-bottom: 10px;
    background-color: #740000;
    overflow: hidden;
    transition: margin-top 500ms;
}

.submenu_categorias li {
    width: 100%;
    min-height: 20px;
    font-size: 13px;
    padding: 0 12px;
    box-sizing: border-box;
}

.submenu_categorias a {
    color: #ffffff;
    display: block;
    white-space: nowrap;
    text-overflow: clip;
    overflow: hidden;
    padding: 10px 0;
}

#titulo_mobile {
    width: 100%;
    background-color: #8c0000;
    position: relative;
    display: none;
    overflow: hidden;
    font-size: 14px;
}

#titulo_mobile h1 {
    width: calc(100% - 60px);
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    float: left;
    color: #ffffff;
}

#botao_categorias {
    width: 50px;
    height: 100%;
    position: absolute;
    right: 0;
    background-image: url("../imagens/icones/menu_categorias.png");
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transform: rotate(0deg);
    transition: transform 500ms;
}

#botao_categorias.ativo {
    transform: rotate(180deg);
}

#produtos {
    width: calc(100% - 280px);
    min-height: 700px;
    float: left;
    margin-top: 10px;
}

#area_produtos {
    width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.produto {
    width: 260px;
    height: 330px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    float: left;
    box-shadow: 5px 5px 5px #c5c5c5;
    background-color: #740000;
    text-align: center;
    position: relative;
}

.produto .titulo {
    color: #ffffff;
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    background-color: #1f1d1a;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 10px;
    overflow: hidden;
}

.produto img {
    max-width: 260px;
    height: 150px;
}

.produto .descricao {
    color: #ffffff;
    width: 100%;
    max-height: 80px;
    line-height: 20px;
    overflow: hidden;
    padding: 0 10px;
    box-sizing: border-box;
}

.produto .rodape {
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0;
}

.produto .preco {
    height: 30px;
    max-width: 140px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
    color: #ffffff;
    font-size: 23px;
    margin-left: 10px;
    float: left;
}

.produto .detalhes {
    float: right;
    background-color: #1f1d1a;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    text-align: center;
    width: 100px;
    color: #ffffff;
    margin-right: 10px;
}

#caixa_pesquisa {
    width: 80%;
    height: 30px;
    box-sizing: border-box;
    margin: 15px auto;
}

#caixa_pesquisa input[type="text"] {
    width: calc(100% - 55px);
    height: 25px;
    border: none;
    background: none;
    border-bottom: solid 1px #740000;
    box-sizing: border-box;
    padding: 7px;
    line-height: 1.5;
    float: left;
    outline: none;
}

#caixa_pesquisa input[type="submit"] {
    width: 50px;
    height: 25px;
    background-image: url("../imagens/icones/procurar.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 35%;
    background-color: #740000;
    border: none;
    box-sizing: border-box;
    float: left;
    margin-left: 5px;
    outline: none;
}

.nenhum_produto {
    text-align: center;
    padding: 20px;
    font-size: 25px;
    font-weight: bold;
}

.modal_detalhes .body {
    max-width: 600px;
    transform: translateY(-50%);
    background-color: #1f1d1a;
}

.modal_detalhes .header h1 {
    color: #ffffff;
}

.modal_detalhes .content {
    text-align: center;
    overflow: hidden;
}

.modal_detalhes .content img {
    width: 20%;
    max-width: 300px;
    height: 20%;
    float: left;
}

.modal_detalhes .informacoes {
    width: 270px;
    height: 168px;
    float: left;
    box-sizing: border-box;
    padding-top: 36px;
    margin-bottom: 15px;
}

.modal_detalhes .informacoes p {
    font-size: 18px;
    color: #ffffff;
    padding: 5px 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.modal_detalhes .content > p {
    color: #ffffff;
    font-size: 16px;
    margin-top: 15px;
    clear: both;
    border: solid 1px rgba(238, 238, 238, 0.5);
    padding: 10px 10px 10px 10px;
    position: relative;
}

.modal_detalhes .content > p span {
    position: absolute;
    top: -10px;
    left: 5px;
    background-color: #1f1d1a;
    color: rgba(255, 255, 255, 0.9);
    padding: 2px 5px;
    font-size: 12px;
}

/* --------------- CSS Página Nossos Ambientes --------------- */

.container_loja {
    width: 100%;
    height: auto;
    background-color: #1f1d1a;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.7);
}

.container_loja.alternate {
    background-color: #d2d3d4;
    box-shadow: 0 -1px 10px rgba(210, 211, 212, 0.7);
}

.container_loja.alternate .informacoes {
    background-color: #d2d3d4;
}

.container_loja.alternate .galeria {
    background-color: #d2d3d4;
}

.container_loja.alternate .informacoes span,
.container_loja.alternate .informacoes h2 {
    color: #000000;
}

.loja {
    width: 100%;
    max-width: 1200px;
    height: auto;
    overflow: hidden;
    position: relative;
}

.loja .informacoes {
    width: 30%;
    height: 100%;
    background-color: #1f1d1a;
    vertical-align: top;
    word-break: break-all;
    float: left;
    position: absolute;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-content: center;
    align-items: center;
    text-align: center;
}

.loja .informacoes .texto {
    width: 100%;
    max-height: 100%;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.loja .informacoes span {
    display: block;
    color: #ffffff;
}

.loja .informacoes h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
    color: #ffffff;
}

.loja .informacoes .telefone {
    margin-top: 10px;
}

.loja .container_galeria {
    width: 70%;
    height: auto;
    float: right;
}

.loja .galeria {
    width: 100%;
    height: 0;
    padding-bottom: 33.33%;
    position: relative;
    background-color: #1f1d1a;
}

.loja .imagens {
    margin: 0;
    position: absolute;
    list-style: none;
    overflow: hidden;
    width: 95%;
    height: 100%;
    padding: 0;
}

.loja .imagens li {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.loja .imagens li:first-child {
    position: relative;
    display: block;
    float: left;
}

.loja .imagens img {
    width: 100%;
    height: 100%;
}

.loja .controles {
    width: 95%;
    height: 30px;
    background-color: rgba(31, 29, 26, 0.8);
    position: absolute;
    bottom: 0;
    z-index: 995;
}

.loja .controles .pager {
    width: calc(100% - 80px);
    height: 30px;
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
}

.loja .controles li {
    display: inline-block;
    margin-top: 8px;
}

.loja .pager a {
    background-color: #d2d3d4;
    width: 14px;
    height: 14px;
    display: block;
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 5px;
}

.loja .pager a:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #1f1d1a;
    border-radius: 50%;
    margin-top: 3px;
    margin-left: 3px;
    display: none;
}

.loja .pager .rslides_here a:after {
    display: block;
}

.loja .prev,
.loja .next {
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    width: 40px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: 0;
}

.loja .prev {
    left: 0;
}

.loja .next {
    right: 0;
}

/* --------------- CSS Página Sobre Nós --------------- */

.sobre_nos {
    width: 100%;
    height: auto;
    max-height: 460px;
    background-color: #1f1d1a;
    padding: 30px 20px;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.7);
    color: #ffffff;
    box-sizing: border-box;
}

.sobre_nos.alternate {
    background-color: #d2d3d4;
    box-shadow: 0 -1px 10px rgba(210, 211, 212, 0.7);
    color: #000000;
}

.sobre_nos.alternate .imagem {
    float: right;
}

.sobre_nos .texto {
    width: calc(100% - 400px);
    height: 100%;
    float: left;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 17px;
    max-height: 250px;
    overflow: hidden;
}

.sobre_nos .imagem {
    width: 400px;
    height: 100%;
    float: left;
    text-align: center;
}

.sobre_nos img {
    width: 400px;
    height: 250px;
}

.sobre_nos p {
    margin-top: 25px;
    line-height: 20px;
}

.sobre_nos h2 {
    font-size: 30px;
    margin-top: 10px;
}

/* --------------- CSS Página Destaques --------------- */

.destaque {
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 2;
}

.destaque .destaque_fundo {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    color: #ffffff;
    background-color: rgba(31, 29, 26, 0.5);
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.destaque.alternate .destaque_fundo {
    color: #000000;
    background-color: rgba(210, 211, 212, 0.4);
}

.destaque .texto {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.destaque h2 {
    height: 50px;
    line-height: 50px;
    margin-top: 160px;
    font-size: 40px;
    transition: margin-top 1s;
}

.destaque:hover h2 {
    margin-top: 0;
}

.destaque .descricao {
    margin-top: 50px;
    opacity: 0;
    font-size: 18px;
    transition: opacity 1s;
}

.destaque:hover .descricao {
    opacity: 1;
}

/* --------------- CSS Página Promoções --------------- */

.promocao {
    width: 100%;
    height: auto;
    max-height: 460px;
    background-color: #1f1d1a;
    padding: 30px 20px;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.7);
    color: #ffffff;
    box-sizing: border-box;
}

.promocao.alternate {
    background-color: #d2d3d4;
    box-shadow: 0 -1px 10px rgba(210, 211, 212, 0.7);
    color: #000000;
}

.promocao .imagem {
    width: 400px;
    height: 100%;
    float: left;
    text-align: center;
    position: relative;
}

.promocao img {
    width: 400px;
    height: 250px;
}

.promocao .preco {
    width: 200px;
    height: 52px;
    background-color: rgba(210, 211, 212, 0.9);
    position: absolute;
    right: 0;
    bottom: 10px;
    color: #000000;
}

.promocao.alternate .preco {
    background-color: rgba(31, 29, 26, 0.9);
    color: #ffffff;
}

.promocao .preco::before, 
.promocao .preco::after {
    content: "";
    width: 240px;
    height: 1px;
    position: absolute;
    left: -40px;
    background-color: rgba(0, 0, 0, 0.7);
}

.promocao .preco::before {
    top: -1px;
}

.promocao .preco::after {
    bottom: -1px;
}

.promocao.alternate .preco::before, 
.promocao.alternate .preco::after {
    background-color: rgba(255, 255, 255, 0.8);
}

.promocao .preco .borda {
    width: 40px;
    height: 26px;
    box-sizing: border-box;
    position: absolute;
    left: -40px;
    top: 0;
    border-style: solid;
    border-width: 26px 0 26px 40px;
    border-color: rgba(210, 211, 212, 0.9) rgba(210, 211, 212, 0.9) rgba(210, 211, 212, 0.9) transparent;
}

.promocao.alternate .preco .borda {
    border-color: rgba(31, 29, 26, 0.9) rgba(31, 29, 26, 0.9) rgba(31, 29, 26, 0.9) transparent;
}

.promocao .preco .borda::before {
    content: "";
    width: 48px;
    height: 1px;
    background-color: #000000;
    position: absolute;
    left: -44px;
    top: -14px;
    transform: rotate(33deg);
}

.promocao .preco .borda::after {
    content: "";
    width: 48px;
    height: 1px;
    background-color: #000000;
    position: absolute;
    left: -44px;
    top: 13px;
    transform: rotate(-33deg);
}

.promocao.alternate .preco .borda::before,
.promocao.alternate .preco .borda::after {
    background-color: #ffffff;
}

.promocao .preco .valor_original {
    margin-top: 8px;
    display: inline-block;
    position: relative;
    font-size: 12px;
    color: #484848;
}

.promocao.alternate .preco .valor_original {
    color: #acacac;
}

.promocao .preco .valor_novo {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.promocao .valor_original:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid;
    border-color: inherit;
    transform: rotate(-5deg);
}

.promocao .desconto {
    position: absolute;
    left: 0;
    top: 0;
    height: 52px;
    line-height: 52px;
    width: 60px;
    text-align: center;
}

.promocao .texto {
    width: calc(100% - 400px);
    height: 100%;
    float: left;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 17px;
    max-height: 250px;
    overflow: hidden;
}

.promocao h2 {
    font-size: 30px;
    margin-top: 10px;
}

.promocao p {
    margin-top: 25px;
    line-height: 20px;
}

/* --------------- CSS Página Produto do Mês --------------- */

#produto_mes_fundo {
    width: 100%;
    height: auto;
    min-height: 751px;;
    position: relative;
    overflow: hidden;
}

#produto_mes_fundo::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
    background-color: rgba(31, 29, 26, 0.2);
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 2;
}

.produto_mes {
    width: 90%;
    max-width: 500px;
    min-height: 400px;
    margin: 75px auto;
    text-align: center;
    background-color: #1f1d1a;
    padding-bottom: 10px;
    position: relative;
    z-index: 3;
}

.produto_mes h2 {
    font-size: 28px;
    color: #ffffff;
    padding: 10px;
}

.produto_mes .imagem {
    width: 100%;
    height: 300px;
    display: block;
    border-left: solid 10px #1f1d1a;
    border-right: solid 10px #1f1d1a;
    box-sizing: border-box;
}

.produto_mes .container_thumbails {
    width: 100%;
    height: 0;
    padding-bottom: 20%;
    position: relative;
}

.produto_mes .thumbnails {
    width: 100%;
    height: 100%;
    position: absolute;
}

.produto_mes .thumbnails a {
    width: 25%;
    height: 100%;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
    float: left;
    opacity: 0.8;
}

.produto_mes .thumbnails a.active,
.produto_mes .thumbnails a.active:hover {
    opacity: 1;
}

.produto_mes .thumbnails a:hover {
    opacity: 0.9;
}

.produto_mes .thumbnails a:first-child {
    padding-left: 10px;
}

.produto_mes .thumbnails a:last-child {
    padding-right: 10px;
}

.produto_mes .thumbnails img {
    width: 100%;
    height: 100%;
}

.produto_mes p {
    padding: 10px;
    color: #ffffff;
    line-height: 20px;
}

.produto_mes .preco {
    font-weight: bold;
    font-size: 25px;
}

/* --------------- CSS Página Fale Conosco --------------- */

#fale_conosco_fundo {
    width: 100%;
    height: auto;
    position: relative;
}

#fale_conosco_fundo .texto {
    position: relative;
    width: 100%;
    min-height: 300px;
    color: #ffffff;
    background-color: rgba(31, 29, 26, 0.6);
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 2;
    text-align: center;
}

#fale_conosco_fundo .texto h2 {
    font-size: 35px;
    margin: 20px 0;
}

#fale_conosco_fundo .texto p {
    font-size: 22px;
}

#fale_conosco_fundo .texto p:first-of-type {
    margin-top: 50px;
    margin-bottom: 20px;
}

#fale_conosco {
    width: 100%;
    height: auto;
    background-color: #1f1d1a;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

#form_fale_conosco {
    width: 100%;
    max-width: 900px;
    height: auto;
    padding: 30px 20px;
    box-sizing: border-box;
    position: relative;
    font-size: 0;
    background-color: #1f1d1a;
    margin: 0 auto;
}

#fale_conosco .grupo {
    margin-bottom: 15px;
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
    font-size: 14px;
    width: 100%;
    vertical-align: top;
}

#fale_conosco .grupo.duas_colunas {
    width: 50%;
}

#fale_conosco .grupo.quatro_colunas {
    width: 25%;
}

#fale_conosco label {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
}

#fale_conosco input,
#fale_conosco select,
#fale_conosco textarea {
    width: 100%;
    border: 1px solid #bebebe;
    transition: all 0.30s ease-in-out;
    box-sizing: border-box;
    padding: 7px;
    line-height: 1.5;
    height: 35px;
    outline: none;
}

#fale_conosco textarea {
    resize: vertical;
    min-height: 125px;
}

#fale_conosco input:focus,
#fale_conosco select:focus,
#fale_conosco textarea:focus {
    box-shadow: 0 0 8px #88d5e9;
    border: 1px solid #88d5e9;
}

#fale_conosco input:focus.invalid {
    box-shadow: 0 0 8px #ff0000!important;
    border: 1px solid #ff0000!important;
}

#fale_conosco .required {
    color: #ff0000;
    vertical-align: sub;
    margin-left: 5px;
}

#fale_conosco #aviso {
    float: left;
    color: #ffffff;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 10px;
    margin-right: 10px;
}

#fale_conosco #aviso p {
    color: #00ff00;
    margin-left: 5px;
}

#fale_conosco input[type="submit"] {
    width: 100px;
    float: right;
    margin-right: 5px;
    color: #ffffff;
    background-color: #c10a0a;
    border: solid 1px #a50303;
    outline: none;
    transition: none;
}

#fale_conosco input[type="submit"]:focus {
    box-shadow: none;
    border: none;
}

#form_fale_conosco.disabled input[type="submit"] {
    cursor: not-allowed;
    background-image: url("../imagens/icones/loading.gif");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center center;
    font-size: 0px;
}

/* --------------- CSS Responsivo --------------- */

@media screen and (max-width: 1180px) {
    #login {
        display: none;
    }
    
    #menu {
        width: calc(100% - 210px);
    }
}

@media screen and (max-width: 1140px) {
    #area_produtos {
        width: 560px;
    }
}

@media screen and (max-width: 850px) {
    #area_produtos {
        width: 280px;
    }
    
    #contato {
        display: none;
    }
    
    #fale_conosco .grupo.quatro_colunas {
        width: 50%;
    }
}

@media screen and (max-width: 700px) {
    .container_loja {
        box-shadow: none!important;
        background-color: #e0e2e5!important;
        padding: 0;
    }
    
    .container_loja:last-of-type {
        padding-bottom: 20px;
    }
    
    .loja .informacoes {
        width: 100%;
        float: none;
        position: relative;
        background-color: #e0e2e5!important;
    }
    
    .loja .informacoes span {
        color: #000000;
    }

    .loja .container_galeria {
        width: 100%;
        float: none;
    }
    
    .loja .galeria {
        width: calc(100% - 20px);
        margin-left: 10px;
        padding-bottom: calc(33.33% + 30px);
        background-color: #e0e2e5!important;
    }
    
    .loja .imagens {
        width: 100%;
        height: calc(100% - 30px);
    }
    
    .loja .controles {
        width: 100%;
        background-color: #1f1d1a;
    }

    .loja .informacoes h2 {
        color: #000000;
    }
    
    .sobre_nos {
        background-color: #e0e2e5!important;
        box-shadow: none!important;
        color: #000000!important;
        max-height: none;
        position: relative;
        padding-bottom: 0;
    }
    
    .sobre_nos:last-of-type {
        padding-bottom: 30px;
    }
    
    .sobre_nos::before {
        content: "";
        display: table;
        margin-top: -1px;
    }
    
    .sobre_nos .imagem {
        width: 100%;
        float: none!important;
        margin-top: 50px;
    }
    
    .sobre_nos img {
        max-width: 400px;
        height: auto;
        width: 100%;
    }
    
    .sobre_nos .texto {
        width: 100%;
        float: none;
        max-height: none;
        text-align: center;
    }
    
    .sobre_nos h2 {
        width: 100%;
        margin-top: 0;
        position: absolute;
        top: 30px;
        left: 0;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .promocao {
        background-color: #e0e2e5!important;
        box-shadow: none!important;
        color: #000000!important;
        max-height: none;
        position: relative;
        padding-bottom: 0;
    }

    .promocao:last-of-type {
        padding-bottom: 30px;
    }
    
    .promocao::before {
        content: "";
        display: table;
        margin-top: -1px;
    }
    
    .promocao .imagem {
        max-width: 100%;
        height: auto;
        float: none!important;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .promocao img {
        max-width: 400px;
        height: auto;
        width: 100%;
    }
    
    .promocao .texto {
        width: 100%;
        float: none;
        max-height: none;
        text-align: center;
    }
    
    .promocao h2 {
        width: 100%;
        margin-top: 0;
        position: absolute;
        top: 30px;
        left: 0;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    #fale_conosco .grupo.duas_colunas,
    #fale_conosco .grupo.quatro_colunas {
        width: 100%;
    }
}

@media screen and (max-width: 540px) {
    header {
        height: auto;
        min-height: 50px;
        position: relative;
    }
    
    header + * {
        margin-top: 0;
    }
    
    #menu {
        width: 100%;
        height: 0;
        display: block;
        overflow: hidden;
        margin-top: 0;
        padding: 0;
        text-align: left!important;
    }
    
    header.sticky #menu {
        height: 0;
    }
    
    header.sticky #menu.visivel,
    #menu.visivel {
        height: 280px;
    }
    
    #menu a {
        height: 40px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 5px 10px;
        line-height: 29px;
        border-top: solid 1px #ffffff;
    }

    #menu a:after {
        display: none;
    }
    
    #botao_menu,
    #logo_mobile, 
    #botao_fechar_menu {
        display: block;
    }
    
    #logo, 
    #botao_login {
        display: none;
    }
    
    #login {
        display: none!important;
    }
    
    #quem_somos {
        width: calc(100% - 40px);
        margin-right: 20px;
    }
    
    #redes_sociais_footer {
        display: block;
    }
    
    #slider .legenda,
    #container_slider .prev,
    #container_slider .next {
        display: none;
    }
    
    #menu_categorias {
        height: 0;
        width: 100%;
        padding-top: 0;
        overflow: hidden;
        border: none;
        box-shadow: none;
        margin-left: 0;
        margin-top: 0;
        background-color: #8c0000;
        position: absolute;
        z-index: 994;
    }
    
    #menu_categorias.visivel {
        height: auto;
    }
    
    #menu_categorias > li {
        background-color: transparent;
        margin-left: 30px;
        position: relative;
        padding: 0;
        min-height: 40px;
    }
    
    #menu_categorias > li:before,
    #menu_categorias > li:after {
        display: none;
    }
    
    #menu_categorias > li p {
        background-color: transparent;
        text-align: left;
        width: 100%;
        line-height: 20px;
        box-shadow: none;
    }
    
    #menu_categorias > li p:before {
        content: "";
        display: inline-block;
        width: 10px;
        height: 5px;
        border-left: solid 10px #ffffff;
        border-bottom: solid 5px transparent;
        border-top: solid 5px transparent;
        box-sizing: border-box;
        top: 0;
        right: 0;
        z-index: 11;
        margin-right: 7px
    }
    
    .submenu_categorias {
        display: block;
        background: transparent;
        margin-left: 0;
        margin-top: 0;
        transition: none;
    }
    
    .submenu_categorias li {
        padding: 0;
        margin-top: 10px;
        margin-left: 40px;
    }
    
    .submenu_categorias a {
        padding: 0;
        text-align: left;
    }
    
    #titulo_mobile {
        display: block;
    }
    
    #produtos {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .produto {
        float: none;
        margin: 15px auto 0 auto;
    }
    
    .destaque h2 {
        margin-top: 0;
        transition: none;
    }
    
    .destaque .descricao {
        opacity: 1;
        transition: none;
    }
    
    #produto_mes_fundo .parallax-mirror {
        display: none;
    }
    
    .produto_mes .imagem {
        height: auto;
        max-height: 300px;
    }
    
    .modal_detalhes .body {
        max-height: calc(100% - 10px);
        overflow-y: auto;
    }
}