/*######################
### BASE
######################*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
	list-style: none;
	text-decoration: none;
	padding: 0;
	margin: 0;
	outline: none;
	font-weight: normal;
}

.centro {
	width: calc(100% - 40px);
	max-width: 1220px;
	margin: auto;
}


/*######################
### HEADER
######################*/

header,
header *{
	transition: all 0.08s ease-in;
}

header {
	width: calc(100% - 540px);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
}

header .logo{
	display: none;
}

header .centro {
	width: 100%;
	height: 85px;
	background: #505250;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-right: 0;
	padding: 0 40px;
	box-sizing: border-box;
	max-width: unset;
	position: relative;
}

header nav {
	display: flex;
	flex-direction: row;
	align-content: center;
	margin: auto;
	gap: 68px;
}

header.ativo{
	width: 100%;
}

header.ativo .centro{
	display: block;
}

header.ativo .logo{
	display: inline-block;
	width: 169px;
	height: 50px;
	background: url(../imagens/logo.png) center center no-repeat;
	background-size: auto 50px;
	text-indent: -20000px;
	float: left;
	position: relative;
	top: 17px;
	cursor: pointer;
}

header.ativo nav{
	float: right;
	padding-top: 33px;
	padding-right: 170px;
}

header.ativo .bt_menu_mobile{
	position: absolute;
	top: 35px;
	right: 44px;
}

header nav .wrapper{
	position: relative;
}
header nav .submenu {
	display: none;
	position: absolute;
	top: 30px;
	left: 0;
	width: 150px;
	background: #505250;
	padding: 15px;
}
header nav .submenu a{
	font-size: 11px;
	margin-bottom: 15px;
	display: block;
}
header nav a {
	font-family: "Montserrat", sans-serif;
  	font-weight: 500;
  	font-size: 14px;
  	color: #ffffff;
  	text-transform: uppercase;
  	padding-bottom: 3px;
}

header nav a:hover{
	border-bottom: 1px solid #fff;
}

header nav a.selected{
	font-weight: 700;
	border-bottom: 1px solid #fff;
	padding-bottom: 5px;
}

header nav .wrapper > a {
	background: url(../imagens/seta_submenu.png) center right no-repeat;
	background-size: 14px 7px;
	padding-right: 24px;
}

.bt_menu_mobile {
	text-indent: -9999px;
	display: inline-block;
	width: 20px;
	height: 14px;
	background: url(../imagens/menu_mobile.png) center no-repeat;
	background-size: contain;
	display: none;
}


/*######################
### HOME
######################*/

#banner {
	min-height: 100vh;
	position: relative;
}

#banner .mask_img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

#banner .mask_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#banner aside {
	position: relative;
	z-index: 2;
	width: 100%;
	min-height: 85px;
    max-width: 500px;
    margin-left: 40px;
    backdrop-filter: blur(10px) brightness(0.9);
    box-sizing: border-box;
    padding: 17px 40px;
	display: flex;
	flex-direction: column;
	background-color: rgba(0,0,0,0.3);
}

#banner aside h1 {
	display: inline-block;
	text-indent: -9999px;
	width: 219px;
	height: 80px;
	background: url(../imagens/logo.png) center no-repeat;
	background-size: contain;
	cursor: pointer;
	width: 169px;
  	height: 50px;
}

#banner aside ul {
	display: flex;
	flex-direction: column;
	row-gap: 39px;
	margin-top: auto;
	margin-bottom: auto;
}

#banner aside ul p,
#banner aside ul a {
	display: none;
}

#banner aside ul .aberto p,
#banner aside ul .aberto a {
	display: flex;
}

#banner aside ul li {
	padding-left: 90px;
}

#banner aside ul h2 {
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 20px;
  	line-height: 40px;
  	color: #ffff;
  	text-transform: uppercase;
  	position: relative;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	column-gap: 27px;
  	cursor: pointer;
}

#banner aside ul .aberto h2 {
	/*color: #c53c4a;*/
} 

#banner aside ul h2::before {
	content: '';
	width: 64px;
	height: 2px;
	background: #ffff;
	display: inline-block;
	margin-left: -90px;
}

#banner aside ul .aberto h2::before {
	/*background: #c53c4a;*/
}

#banner aside ul p {
	font-family: "Montserrat", sans-serif;
  	font-weight: 300;
  	font-size: 18px;
  	line-height: 28px;
  	color: #ffff;
  	margin-top: 4px;
}

#banner aside ul a {
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 14px;
  	color: #ffffff;
  	text-transform: uppercase;
  	width: 146px;
  	height: 40px;
  	box-sizing: border-box;
  	border: 2px solid #ffffff;
  	flex-direction: row;
  	align-items: center;
  	padding-left: 14px;
  	background: url(../imagens/bt_seta.png) center right 15px no-repeat;
  	background-size: 28px 13px;
  	margin-top: 15px;
  	margin-bottom: 4px;
}

.titulo {
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 40px;
  	color: #c53c4a;
  	display: flex;
  	flex-direction: column;
  	row-gap: 21px;
}

.titulo::after {
	content: '';
	display: inline-block;
	width: 250px;
	height: 2px;
	background: #c53c4a;
	margin-left: -100px;
}
#produtos {
	margin-top: 75px;
}
#pag_produtos #banner_produtos{
	position: relative;
}
#pag_produtos #banner_produtos .container{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-shadow: 0px 0px 20px #000000;
}

#pag_produtos #banner_produtos .container h2{
	text-align: center;
	color: #ffffff;
	font-size: 51px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;	
}

#produtos .titulo::after {
	width: 295px;
	background: #565657;
}
#produtos .centro {
	max-width: 920px;
}

#produtos ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 40px;
}

#produtos ul li:first-child {
	grid-column: 1/3;
}

#produtos ul .mask_img {
	width: 100%;
	position: relative;
	padding-top: 111.11%;
}

#produtos ul li:first-child .mask_img {
	padding-top: 54.34%;
}

#produtos ul .mask_img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}
#produtos ul li:first-child .wrapper {
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 61px;
}

#produtos ul .wrapper {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 40px;
}

#produtos ul li:first-child .wrapper h3,
#produtos ul li:first-child .wrapper h4 {
	font-size: 18px;
}

#produtos ul .wrapper h3 {
	font-family: "Montserrat", sans-serif;
  	font-weight: 500;
  	font-size: 16px;
  	line-height: 24px;
  	color: #ffff;
  	background: #505250;
  	padding: 0 30px;
  	display: flex;
  	align-items: center;
}

#produtos ul .wrapper h4 {
	font-family: "Montserrat", sans-serif;
  	font-weight: 700;
  	font-size: 16px;
  	color: #ffff;
  	text-transform: uppercase;
	background: #c53c4a url(../imagens/interesse_seta.png) center right 21px no-repeat;
	display: flex;
	align-items: center;
	padding-left: 23px;
	box-sizing: border-box;
}
#categorias {
	background: #c4c4c4;
	padding-bottom: 76px;
	padding-top: 43px;
	margin-top: 64px;
}

#categorias .top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}
#categorias .titulo {
	color: #565657;
}

.passador {
	display: flex;
	flex-direction: row;
	column-gap: 5px;
}

.passador span {
	display: inline-block;
	width: 40px;
	height: 40px;
	text-indent: -9999px;
	cursor: pointer;
}
.passador span.esquerda {
	background: url(../imagens/passador_esquerda.png) center no-repeat;
	background-size: contain;
}

.passador span.direita {
	background: url(../imagens/passador_direita.png) center no-repeat;
	background-size: contain;
}

#categorias ul {
	display: flex;
	flex-direction: row;
	margin-top: 10px;
}

#categorias ul li {
	width: 290px;
	height: 380px;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

#categorias ul .mask_img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: #000000;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0.45;
	overflow: hidden;
}
#categorias ul .mask_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
#categorias ul h3 {
	position: relative;
	z-index: 2;
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 18px;
  	color: #ffff;
  	text-transform: uppercase;
	text-align: center;
}
#infos {
	margin-top: 67px;
	margin-bottom: 67px;
}

#infos .centro {
	/*padding: 0 90px;*/
	box-sizing: border-box;
	display: flex;
}

#infos ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: auto;
	gap: 60px;
	width: 100%;
}

#infos ul li {
	/*padding-left: 123px;*/
}
#infos ul li.entrega {
	background: url(../imagens/icon_entrega.png) center left no-repeat;
}
#infos ul li.atendimento {
	background: url(../imagens/icon_atendimento.png) center left no-repeat;
}
#infos ul li.qualidade {
	background: url(../imagens/icon_qualidade.png) center left no-repeat;
}
#infos ul li.conforto {
	background: url(../imagens/icon_conforto.png) center left no-repeat;
}

#infos ul h2 {
	font-family: "Montserrat", sans-serif;
  	font-weight: 700;
  	font-size: 18px;
  	color: #c53c4a;
  	text-transform: uppercase;
  	background: url(../imagens/checklist.png) center left no-repeat;
	background-size: 20px auto;
	padding-left: 32px;
}
#sobre .centro {
	max-width: 920px;
}
#infos ul p,
#sobre p {
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 18px;
  	line-height: 28px;
  	color: #505250;
  	margin-top: 9px;
}
#sobre p {
	font-weight: 400;
	color: #ffff;
}
#sobre p b {
	font-weight: 700;
}
#sobre p:nth-of-type(1) {
	margin-top: 20px;
}
#cases,
#sobre {
	background: #565657;
	/*margin-top: 58px;*/
	padding-bottom: 83px;
	padding-top: 61px;
}

#cases .titulo,
#sobre .titulo {
	color: #ffff;
}
#cases ul {
	margin-top: 47px;
	width: 100%;
	padding-left: 80px;
	box-sizing: border-box;
}

#cases ul li {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

#cases ul .esquerda {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
#cases ul .esquerda .mask_img {
	position: relative;
	width: 100%;
	padding-top: 79.31%;
}
#cases ul .esquerda .mask_img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#cases ul .esquerda .mask_img:last-child {
	grid-column: 1/3;
	padding-top: 38.33%;
}
#cases ul article {
	background: #c53c4a;
	padding: 0 34px;
	padding-top: 38px;
	padding-bottom: 29px;
}

#cases ul article h3 {
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 28px;
  	color: #ffffff;
}

#cases ul article h4 {
	font-family: "Montserrat", sans-serif;
  	font-weight: 400;
  	font-size: 20px;
  	color: #ffffff;
}

#cases ul article h5 {
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 20px;
  	color: #ffffff;
  	margin-top: 9px;
}

#cases ul article p {
	font-family: "Montserrat", sans-serif;
  	font-weight: 400;
  	font-size: 16px;
  	line-height: 26px;
  	color: #ffffff;
  	margin-top: 23px;
}
#cases .passador span.esquerda {
	background: url(../imagens/passador_esquerda2.png) center no-repeat;
  	background-size: contain;
}

#cases .passador span.direita {
	background: url(../imagens/passador_direita2.png) center no-repeat;
  	background-size: contain;
}
#cases ul a,
#case_interno .case_aberto .descricao_case .direita a {
	display: inline-block;
	width: 151px;
	height: 40px;
	box-sizing: border-box;
	border: 2px solid #ffff;
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 14px;
  	color: #ffffff;
  	text-transform: uppercase;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	padding-left: 14px;
  	background: url(../imagens/bt_seta.png) center right 15px no-repeat;
  	background-size: 28px 13px;
}
#cases ul .wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-top: 24px;
}

/*######################
### QUEM SOMOS
######################*/

#banner_quem_somos{
	width: calc(100% - 80px);
	background: #a2a09c url(../imagens/banner_quem_somos.jpg) center center no-repeat;
	background-size: cover;
	height: calc(100vh - 120px);
	max-height: 560px;
	margin-left: 40px;
	margin-top: 125px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#banner_quem_somos .container{
	max-width: 750px;
}
#banner_quem_somos .container h2{
	text-align: center;
	color: #ffffff;
	font-size: 42px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;	
}
#banner_quem_somos .container p{
	text-align: center;
	color: #ffffff;
	font-size: 18px;
	line-height: 28px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 400;	
  	padding-top: 17px;	
}
#conteudo_quem_somos{
    background: linear-gradient(to bottom, 
        transparent 0px,     /* Parte transparente antes dos 80px */
        transparent 80px,    /* Mantém transparente até 80px */
        #f3f3f3 80px,        /* Começa o fundo cinza */
        #f3f3f3 720px,       /* Mantém o fundo cinza até 720px */
        transparent 720px    /* Volta a ser transparente após os 720px */
    );	
}

#conteudo_quem_somos .centro{
	display: grid;
	grid-template-columns: 55% 45%;
	margin-top: 70px;
	max-width: 1420px;
}
#conteudo_quem_somos .centro .esquerda h2{
	color: #505250;
	font-size: 40px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 700;	
  	padding-top: 130px;	
  	padding-bottom: 20px;
}
#conteudo_quem_somos .centro .esquerda p{
	color: #505250;
	font-size: 18px;
	line-height: 28px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 400;	
  	padding-right: 80px;
  	padding-bottom: 20px;
}

#conteudo_quem_somos .centro .esquerda p.destaque{
	padding-top: 85px;
	font-weight: 600;
}
#conteudo_quem_somos .centro .direita img{
	display: block;
	width: 100%;
}

/*######################

### CASES

######################*/

#case_interno{
	margin-top: 125px;
}

#case_interno .centro.grande{
	max-width: 1220px;
}

#case_interno h2{
	color: #505250;
}
#case_interno .nav_cases{
	padding-top: 40px;
	padding-bottom: 40px;
}
#case_interno .nav_cases .centro{
	display: flex;
	column-gap: 7px;
	row-gap: 7px;
}

#case_interno .nav_cases a{
	background: #505250;
	color: #fff;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 13px;
  	padding: 12px 15px 12px 15px;
  	display: inline-block;	
}

#case_interno .nav_cases a.selected{
	background: #c53c4a;
}

#case_interno .case_aberto .descricao_case{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	background: #e5e5e5;
	margin-bottom: 45px;
}
#case_interno .case_aberto .descricao_case .esquerda img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
#case_interno .case_aberto .descricao_case .direita{
	padding: 45px;
	box-sizing: border-box;
}
#case_interno .case_aberto .descricao_case .direita h3{
	color: #565657;
	font-size: 28px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 700;	
}
#case_interno .case_aberto .descricao_case .direita h4{
	color: #565657;
	font-size: 18px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;	
}
#case_interno .case_aberto .descricao_case .direita h5{
	color: #565657;
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 500;
  	text-transform: uppercase;		
  	padding-top: 7px;
}
#case_interno .case_aberto .descricao_case .direita p{
	color: #565657;
	font-size: 16px;
	line-height: 26px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 400;
  	padding-right: 70px;
  	padding-top: 13px;
}
#case_interno .case_aberto .descricao_case .direita a {
	width: 100%;
	max-width: 300px;
	border: unset;
	background-color: #c53c4a;
	margin-top: 20px;
}
#case_interno .galeria_case{
	position: relative;
}

#case_interno .galeria_case ul{
	position: relative;
	left: -5px;
}
#case_interno .galeria_case ul li{
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
	margin-top: 20px;
	margin-bottom: 70px;
	margin-left: 10px;
	position: relative;	
	left: -5px;
	cursor: pointer;
}
#case_interno .galeria_case ul li.selected span{
	display: block;
	width: 100%;
	height: 8px;
	background: #505250;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
}
#case_interno .galeria_case .passador_left{
	position: absolute;
	left: -104px;
	top: 0;
	width: 50px;
	height: 100%;
	z-index: 999;
	display: flex;
	align-items: center;
}

#case_interno .galeria_case .passador_left span{
	display: inline-block;
	width: 50px;
	height: 50px;
	background: url(../imagens/passador_left.png) left center no-repeat;
	cursor: pointer;
	background-size: 100% auto;
	position: relative;
	top: -20px;
}
#case_interno .galeria_case .passador_right{
	position: absolute;
	right: -104px;
	top: 0;
	width: 50px;
	height: 100%;
	z-index: 999;
	display: flex;
	align-items: center;
}

#case_interno .galeria_case .passador_right span{
	display: inline-block;
	width: 50px;
	height: 50px;
	background: url(../imagens/passador_right.png) left center no-repeat;
	cursor: pointer;
	background-size: 100% auto;
	position: relative;
	top: -20px;
}

/*######################
### QUEM SOMOS
######################*/

#banner_produtos {
    width: calc(100% - 80px);
    /* height: calc(100vh - 120px); messes up with the new <picture> implementation*/
    max-height: 560px;
    margin-left: 40px;
    margin-top: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#banner_produtos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
	filter: brightness(70%);
}
#banner_produtos .container{
	max-width: 750px;
}
#banner_produtos .container h2{
	text-align: center;
	color: #ffffff;
	font-size: 40px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;	
}
#banner_produtos .container a{
	color: #ffffff;
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;	
  	display: inline-block;
  	border: 2px solid #fff;
  	padding: 9px 60px 9px 15px;
  	text-transform: uppercase;
  	background: url(../imagens/seta_banner_produtos.png) calc(100% - 15px) center no-repeat;
  	transition: all 0.08s ease-in;
  	position: relative;
  	left: 53px;
  	margin-top: 10px;
}
#banner_produtos .container a:hover{
	background: url(../imagens/seta_banner_produtos.png) calc(100% - 10px) center no-repeat;
}

#listagem_produtos{
	padding-top: 65px;
	padding-bottom: 65px;
}

#listagem_produtos .centro{
	max-width: 1420px;
	display: grid;
	grid-template-columns: 22% 78%;
}

#listagem_produtos .centro .esquerda .titulo {
  	font-size: 34px;
  	row-gap:10px;
}

#listagem_produtos .centro .esquerda .titulo::after {
	background: #565657;
	width: 200px;
}
#listagem_produtos .centro .esquerda .titulo.titulo2{
	color: #505250;
	font-size: 20px;
	font-weight: 700;
	margin-top: 20px;
	cursor: pointer;
}
#listagem_produtos .centro .esquerda .titulo.titulo2::after {
	width: 70px;
	background: #565657;
	margin-left: -100px;
	margin-top: -25px;	
	margin-bottom: 20px;
}
#listagem_produtos .centro .esquerda ul li a{
	font-size: 17px;
	color: #505250;
	font-family: "Montserrat", sans-serif;
  	font-weight: 400;
  	line-height: 30px;
}
#listagem_produtos .centro .esquerda ul li a:hover,
#listagem_produtos .centro .esquerda ul li a.selected{
	text-decoration: underline;
}

#listagem_produtos .centro .direita ul{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 15px;
	row-gap: 15px;
}

#listagem_produtos .centro .direita ul li{
	background: #ffffff;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.14);
	position: relative;
	overflow: hidden;
	max-height: 380px;
	position: relative;
	padding-bottom: 65px;
}

#listagem_produtos .centro .direita ul li img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#listagem_produtos .centro .direita ul li h2{
	display: block;
	width: calc(100% - 30px);
	padding: 15px;
	padding-top: 10px;
	height: 40px;
	background: #505250;
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 16px;
	color: #fff;
	font-family: "Montserrat", sans-serif;
  	font-weight: 400;
  	line-height: 20px;
  	transition: all 0.08s ease-in;	
}
#listagem_produtos .centro .direita ul li a:hover h2{
	background: #c53c4a;
}

#listagem_produtos .centro .direita ul li span{
	display: block;
	width: calc(100% - 40px);
	padding: 15px;
	padding-left: 25px;
	padding-top: 22px;
	height: 28px;
	background: #c53c4a url(../imagens/seta_banner_produtos.png) calc(100% - 45px) center no-repeat;
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 16px;
	color: #fff;
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	line-height: 20px;
  	transition: all 0.08s ease-in;
  	z-index: 999;	
  	text-transform: uppercase;
  	opacity: 0;
}
#listagem_produtos .centro .direita ul li:hover span{
	background: #c53c4a url(../imagens/seta_banner_produtos.png) calc(100% - 25px) center no-repeat;
	opacity: 1;
}

/*######################
### FOOTER
######################*/

footer {
	background: #c4c4c4;
}

footer .centro {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	column-gap: 40px;
	padding: 43px 0;
}

footer .esquerda {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 762px;
}

footer h2 {
	text-indent: -9999px;
	cursor: pointer;
	width: 205px;
	height: 61px;
	background: url(../imagens/logo2.png) center no-repeat;
	background-size: contain;
}

footer h3 {
	font-family: "Montserrat", sans-serif;
  	font-weight: 700;
  	font-size: 15px;
  	color: #565657;
  	text-transform: uppercase;
  	margin-bottom: 17px;
}
footer ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 70px;
	row-gap: 13px;
}

footer ul a,
footer h4 {
	font-family: "Montserrat", sans-serif;
  	font-weight: 400;
  	font-size: 15px;
  	color: #565657;
}

footer .wrapper h4 ~ h4 {
	margin-top: 13px;
}
footer .wrapper a {
	color: inherit;
    text-decoration: none;
	display: flex;    
    align-items: center;  
    gap: 8px;     
}

.sociais {
	display: grid;
	grid-template-columns: 32px;
	grid-auto-rows: 32px;
	gap: 8px;
}
.sociais li {
	background: #565657;
}

.sociais a {
	display: inline-block;
	text-indent: -9999px;
	width: 100%;
	height: 100%;
}

.sociais a.instagram {
	background: url(../imagens/icon_instagram.png) center no-repeat;
	background-size: 20px;
}

.sociais a.facebook {
	background: url(../imagens/icon_facebook.png) center no-repeat;
	background-size: 11px 20px;
}

.sociais a.whatsapp {
	background: url(../imagens/icon_whatsapp.png) center no-repeat;
	background-size: 20px;
}
.sociais a.linkedin {
	background: url(../imagens/icon_linkedin.png) center no-repeat;
	background-size: 20px;
}

footer h6 {
	padding: 17px 0;
}

footer h6,
footer h6 a {
	background: #ffff;
	text-align: center;
	font-family: "Montserrat", sans-serif;
  	font-weight: 400;
  	font-size: 16px;
  	color: #565657;
}
footer h6 a {
	text-decoration: underline;
}



/*######################
### PRODUTO
######################*/

#breadcrumbs {
	margin-top: 139px;
}

#breadcrumbs a,
#breadcrumbs span {
	font-family: "Montserrat", sans-serif;
  	font-weight: 500;
  	font-size: 28px;
  	color: #505250;
}

#breadcrumbs span {
	font-weight: 600;
	color: #c53c4a;
}

#breadcrumbs .centro {
	max-width: 1760px;
	padding-left: 100px;
	box-sizing: border-box;
}

#breadcrumbs .centro::after {
	content: '';
	display: inline-block;
	width: 221px;
	height: 2px;
	background: #565657;
	margin-left: -100px;
	margin-top: 14px;
}
#produto {
	margin-top: 49px;
}

#produto .centro {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	max-width: 1760px;
}

#produto .esquerda .mask_img {
	position: relative;
	width: 100%;
	padding-top: 73.5%;
}

#produto .esquerda .mask_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
}

#produto .direita {
	background: rgba(80, 82, 80, 0.15);
	box-sizing: border-box;
	padding-left: 46px;
	padding-bottom: 46px;
}
#produto article {
	width: 100%;
	max-width: 414px;
}

#produto h2 {
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 32px;
  	line-height: 32px;
  	color: #505250;
  	margin-top: 50px;
}
#produto h3 {
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 16px;
  	line-height: 24px;
  	color: #505250;
  	text-transform: uppercase;
  	margin-top: 2px;
}
#produto p {
	font-family: "Montserrat", sans-serif;
  	font-weight: 400;
  	font-size: 16px;
  	line-height: 28px;
  	color: #505250;
  	margin-top: 18px;
}

#produto a {
	font-family: "Montserrat", sans-serif;
  	font-weight: 700;
  	font-size: 16px;
  	color: #ffff;
  	text-transform: uppercase;
  	background: #c53c4a url(../imagens/interesse_seta.png) center right 21px no-repeat;
  	display: flex;
  	align-items: center;
  	padding-left: 15px;
  	box-sizing: border-box;
  	height: 64px;
  	margin-top: 70px;
}

#galeria, #ambientados {
	margin-top: 54px;
}
#galeria .titulo,
#ambientados .titulo {
	margin-left: auto;
	margin-right: auto;
	color: #505250;
	margin-bottom: 49px;
	row-gap: 11px;
}
#galeria .titulo::after,
#ambientados .titulo::after {
	background: #505250;
	width: 295px;
}

#galeria ul,
#ambientados ul {
	display: flex;
	flex-direction: row;
}

#galeria ul li,
#ambientados ul li {
	width: 100%;
	max-width: 274px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
	cursor: pointer;
}

#galeria ul .mask_img,
#ambientados ul .mask_img {
	position: relative;
	width: 100%;
	padding-top: 109.48%;
}
#galeria ul .mask_img img,
#ambientados ul .mask_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
}

#detalhes {
	margin-top: 79px;
}

#detalhes ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 13px;
}

#detalhes ul li {
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
}
#detalhes ul .mask_img {
	position: relative;
	width: 100%;
	padding-top: 86.02%;
}
#detalhes ul .mask_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
}

#detalhes .centro,
#galeria .centro,
#ambientados .centro  {
	position: relative;
	display: flex;
	flex-direction: column;
}

#detalhes .passador span,
#galeria .passador span,
#ambientados .passador span {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

#detalhes .passador span.esquerda,
#galeria .passador span.esquerda,
#ambientados .passador span.esquerda {
	left: -100px;
	background: url(../imagens/passador_left.png) center no-repeat;
	background-size: contain;
}
#detalhes .passador span.direita,
#galeria .passador span.direita,
#ambientados .passador span.direita {
	right: -100px;
	background: url(../imagens/passador_right.png) center no-repeat;
	background-size: contain;
}
#detalhes .titulo {
	margin-left: auto;
	margin-right: auto;
	color: #505250;
	margin-bottom: 49px;
	row-gap: 11px;
}
#detalhes .titulo::after {
	background: #505250;
	width: 295px;
}

/**********************************************
 * ESTILOS PARA A SEÇÃO DE CARACTERÍSTICAS
 **********************************************/

#caracteristicas {
	margin-top: 79px;
	text-align: center;
}
#caracteristicas .centro {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px; 
	max-width: 1500px;
}

#caracteristicas .titulo {
    width: 100%;
	margin-bottom: 20px;
}
#caracteristicas .titulo::after {
    display: none;
}

#caracteristicas .esquerda {
    flex: 0 0 45%; 
    width: 40%;
}
#caracteristicas .esquerda img {
    height: auto;
    display: inline;
	max-height: 500px;
	max-width: 100%;
}


#caracteristicas .direita {
    /* flex: 1; */
    width: 35%;
	margin-right: 10%;
}

.lista_caracteristicas {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lista_caracteristicas li {
    border-bottom: 2px solid #969696;
	text-align: left;
}
#caracteristicas h3 {
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 16px;
  	line-height: 24px;
  	color: #505250;
  	text-transform: uppercase;
  	margin-top: 2px;
}
#caracteristicas p {
	font-family: "Montserrat", sans-serif;
  	font-weight: 400;
  	font-size: 16px;
  	line-height: 28px;
  	color: #505250;
  	margin-top: 18px;
}

.lista_caracteristicas .titulo_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    cursor: pointer;
    font-weight: bold;
}

/* Ícone da seta */
.lista_caracteristicas .arrow {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transition: transform 0.3s ease; 
}

.lista_caracteristicas .arrow.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.lista_caracteristicas .arrow.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.lista_caracteristicas .descricao_item {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out; 
    padding: 0 10px;
}

.lista_caracteristicas li.active .descricao_item {
    padding: 0 10px 15px 10px;
    max-height: 500px;
    transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

.lista_caracteristicas li.active .arrow {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

#pag_produto #listagem_produtos {
	background: rgba(196, 196, 196, 0.5);
	padding-top: 58px;
	margin-top: 73px;
}

#pag_produto #listagem_produtos .centro {
	grid-template-columns: 1fr;
}
#pag_produto #listagem_produtos .centro .direita ul {
	grid-template-columns: repeat(4, 1fr);
	column-gap: 15px;
	margin-top: 51px;
}

#pag_produto #listagem_produtos h3 {
	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 36px;
  	color: #505250;
  	text-align: center;
}

#pag_produto #listagem_produtos h3 span {
	font-weight: 600;
	color: #c53c4a;
}
#pag_produto #cases {
	margin-top: 0;
}
#parceiros {
  	padding-bottom: 61px;
  	padding-top: 61px;
}
#parceiros ul {
	display: flex;
	margin-top: 47px;
	align-items: center;
}
#parceiros .owl-carousel .owl-stage {
	display: flex;
	flex-direction: row;
	align-items: center;
}
#parceiros ul .mask_img {
	width: 100%;
}
#parceiros ul .mask_img img {
	width: 100%;
	filter: grayscale(100%);
}

#menu_mobile {
	position: fixed;
	top: 85px;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 600px;
	background: #505250;
	display: none;
	flex-direction: column;
	padding: 40px 20px;
	box-sizing: border-box;
	overflow: auto;
}
#menu_mobile.aberto {
	display: flex;
}
header #menu_mobile nav {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0;
	margin: auto 0;
	gap: 20px;
}

header #menu_mobile .submenu_mobile {
	display: none;
	padding-left: 20px;
	padding-top: 15px;
	display: none;
}

header #menu_mobile .submenu_mobile a {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 15px;
	display: block;
}
.bt_categorias {
	font-family: "Montserrat", sans-serif;
  	font-weight: 700;
  	font-size: 16px;
  	color: #ffff;
  	text-transform: uppercase;
  	background: #c53c4a;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	box-sizing: border-box;
  	height: 64px;
  	width: 100%;
  	text-align: center;
  	margin-top: 26px;
  	display: none;
}
#produtos ul .mask_img {
	padding-top: 60%;
}
#categorias .centro {
	position: relative;
}
.passador {
	position: absolute;
	width: 100%;
	justify-content: space-between;
	width: calc(100% + 140px);
	top: 50%;
	transform: translateY(calc(-50% + 60px));
	margin-left: -70px;
}
#listagem_produtos .centro .direita ul li img {
	height: 300px;
}
.owl-carousel .owl-stage {
	padding-top: 10px;
	padding-bottom: 10px;
}
#produtos ul li:first-child .mask_img {
	padding-top: 45%;
}
#conteudo_quem_somos .centro .esquerda h3 {
	color: #505250;
	font-size: 24px;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	padding-top: 20px;
	padding-bottom: 20px;
}
#conteudo_quem_somos .centro .esquerda ul {
	padding-left: 14px;
}
#conteudo_quem_somos .centro .esquerda ul li {
	list-style-type: square;
	color: #505250;
}
#detalhes ul .mask_img .legenda {
	display: none;
}
#detalhes ul .mask_img:hover .legenda {
	background-color: #505250;
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex !important;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	padding: 15px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 15px;
	line-height: 24px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	box-sizing: border-box;
}
/* header nav .submenu a:nth-child(2),
header nav .submenu a:nth-child(3),
header nav .submenu a:nth-child(7) {
	display: none;
} */
/* header nav .submenu {
	height: auto !important;
	margin-top: -5px !important;
}
#banner aside ul h2:not(#banner aside:hover ul h2, #banner aside:focus ul h2),
#banner aside ul p:not(#banner aside:hover ul p, #banner aside:focus ul p) {
	text-indent: -9999px;
}
#banner aside ul a:not(#banner aside:hover ul a, #banner aside:focus ul a) {
	display: none;
}
#banner aside ul li:not(#banner aside:hover ul li, #banner aside:focus ul li) {
	max-height: 12px;
}
#banner aside ul:not(#banner aside:hover ul, #banner aside:focus ul) {
	row-gap: 0;
	margin-top: -66px;
	margin-left: auto;
	margin-right: -45px;
	margin-left: 194px;
}
#banner aside:not(#banner aside:hover, #banner aside:focus) {
	min-height: 85px;
}
#banner aside ul h2::before{
	width: 45px;
}
#banner aside:hover ul h2::before, #banner aside:focus ul h2::before {
	width: 64px;
} */

/* ALTERAÇÃO CASES */
#cases ul .direita {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 2;
	padding: 10px;
	box-sizing: border-box;
}
#cases ul .wrapper {
	margin-top: 0;
}
#cases ul li {
	position: relative;
}
#cases ul .esquerda .mask_img:last-child {
	padding-top: 70%;
}
#cases ul article {
	background: unset;
	padding: 0;
}
#cases ul article h3 {
	font-size: 22px;
}
#cases ul a {
	background: #c53c4a;
	width: unset;
	height: unset;
	padding: 10px 20px;
	border: unset;
	border-radius: 4px;
	font-size: 13px;
}
#pag_fale_conosco footer,
#fale_conosco {
	width: calc(100% - 80px);
	margin-left: auto;
	margin-right: auto;
}
#pag_inicial #fale_conosco {
	width: 100%;
}
#fale_conosco {
	background: #565657;
}
#fale_conosco .sociais {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	row-gap: 20px;
	margin-top: 32px;
}
#fale_conosco .sociais li {
	background: unset;
}
#fale_conosco .sociais p,
#fale_conosco .sociais a {
	text-indent: 0;
	line-height: 20px;
	text-align: left;
	padding-left: 32px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 400;
  	font-size: 16px;
  	color: #ffff;
  	margin: 0;
}
#fale_conosco .sociais p {
	padding-left: 0px;
}
#fale_conosco .sociais p.unidades {
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
    letter-spacing: -0.52px;
    color: #ffff;
}
#fale_conosco .sociais a.instagram {
	background-position: center left;
	background-size: contain;
}
#fale_conosco .sociais a.whats {
	background: url(../imagens/icon_whatsapp.png) center left no-repeat;
	background-size: contain;
	margin-top: 30px;
}
#fale_conosco .direita h2 {
	font-size: 36px;
	font-weight: 600;
}
#categorias .passador {
	position: relative;
	transform: unset;
	left: 0;
	top: 0;
	margin-left: auto;
	width: unset;
	margin-top: 30px;
}

