:root{
	--cor-principal: #e0a067;
	--cor-fundo: #1e1f28;
}
body{
    margin: 0;
    font-family: 'Open Sans',sans-serif;
    font-weight: 400;
    font-size: 16px;
}
*{
    box-sizing: border-box;
}

a{
	color: var(--cor-principal);
	text-decoration: none;
	transition: all .5s;
}
a:hover{
	filter: brightness(1.2);
}

hr{
	border: 1px solid #e4e4e4;
}

.geral{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}

/* topo */
.topo{
	position: relative;
	float:left;
	width: 100%;
	background: var(--cor-principal);
	color: white;
}
.topo-backdrop{
	position: absolute;
	top:0;
	bottom:0;
	left: calc((100% - 100vw) / 2);
	right: calc((100% - 100vw) / 2);
	background: var(--cor-principal);
	z-index: -5;
}
.topo .centralizar{
	display: flex;
}
.topo .centralizar > div{
	padding: 15px 0px;
	padding-right: 15px;
	font-family: 'Open Sans',sans-serif;
	font-size: 15px;
	font-weight: 500;
}
.topo .centralizar > div i{
	padding-right: 10px;
}
.topo .centralizar > div.menu_fixo{
	flex-grow: 1;
	padding: 0;
}

.topo .menu_fixo > div{
	background: white;
	float:right;	
}
.topo .menu_fixo > div a{
	display: inline-block;
	text-decoration: none;	
	padding: 15px 30px;
	color: var(--cor-fundo);
	font-weight: 700;
	transition: all .4s;
}
.topo .menu_fixo > div a:hover{
	background: var(--cor-fundo);
	color: white;
}

/* menu */
.menu{
	float:left;
	width: 100%;	
}

.menu .centralizar{
	display:flex;
	padding: 25px 0;
}

.menu .centralizar .logo{}
.menu .centralizar .logo img{
	max-width: 215px;
}
.menu .centralizar .links{
	text-align: right;
	width: 100%;	
}
.menu .centralizar .links a{
	display: inline-block;
	text-decoration: none;
	padding: 15px 10px;
	color: var(--cor-fundo);
	font-size: 17px;
	font-weight: 600;
	font-family: 'Open Sans',sans-serif;
}

.menu .centralizar .box_contato{
	display:flex;
}

.menu .centralizar .box_contato .icon{
	color: var(--cor-principal);
}
.menu .centralizar .box_contato .icon i{
	font-size: 24px;
	padding: 12px 15px;
}

.menu .centralizar .box_contato .conteudo{
	white-space: nowrap;
	color: var(--cor-fundo);
	font-family: 'Open Sans',sans-serif;
	font-size: 18px;
	font-weight: 600;
}

.menu .centralizar .box_contato .conteudo span{
	color: var(--cor-principal);
}

/* menu mobile */
.menu_mobile{
	float:left;
	width: 100%;
	display: none;
}
.menu_mobile select{
	float:left;
	width: 100%;
	background: var(--cor-principal);
	color: white;
	text-align: center;
	font-weight: 700;
	border: 0;
	padding: 15px 5px;
}
.menu_mobile select option{
	text-align: center;
}

/** banner */
.banner{
	position: relative;
	float:left;
	width: 100%;
	height: 700px;
}
.banner_img{
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc((100% - 100vw) / 2);
	right: calc((100% - 100vw) / 2);
	
	background-image: url(../../templates/attorna/imagens/banner.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size:cover;
	filter: brightness(.5);
	z-index:-5;
}

.banner .banner_titulo{
	position: relative;
	float:left;
	width: 60%;
	font-size: 60px;
	color: white;
	font-family: 'Frank Ruhl Libre',serif;
	font-weight: 700;
	text-align: left;
	
	margin-top: 200px;
}
.banner .banner_texto{
	position: relative;
	float:left;
	width: 50%;
	font-size: 18px;
	color: white;
	text-align: left;
	
	line-height: 1.6;
	margin-top: 40px;
}
/* banner others*/
.banner_others{
	position: relative;
	float:left;
	width: 100%;
	height: 350px;
}
.banner_others .banner_img{	
	background-image: url(../../templates/attorna/imagens/banner-others.jpg);
}
.banner_others .title_others{
	position: relative;
	float:left;
	width: 100%;
	color: white;
	font-family: 'Frank Ruhl Libre',serif;
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	margin-top: 130px;
}

/* rodape */
.rodape{
	position:relative;
	float:left;
	width: 100%;
	background: var(--cor-fundo);
	padding: 60px 0;
}
.rodape-backdrop{
	position: absolute;
	top: 0;
	bottom:0;
	left: calc((100% - 100vw) / 2);
	right: calc((100% - 100vw) / 2);
	background: var(--cor-fundo);
	z-index:-5;
}
.rodape .centralizar{
	display: flex;
	flex-wrap: wrap;
}
.rodape .centralizar .box_rodape{
	flex-grow: 1;
	width: 25%;
	padding: 0 15px;
}
.rodape .centralizar .box_rodape .titulo{
	float:left;
	width: 100%;
	color: white;
	font-family: 'Frank Ruhl Libre',serif;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	
	margin-bottom: 40px;
}

.rodape .centralizar .box_rodape:nth-child(1) .titulo{
	margin-bottom: 15px;
}

.rodape .centralizar .box_rodape .conteudo{
	float:left;
	width: 100%;
	color: white;
}
.rodape .centralizar .box_rodape .conteudo a{
	float:left;
	width: 100%;
	color: white;
	text-decoration: none;
	padding-bottom: 15px;
	transition: all .4s
}
.rodape .centralizar .box_rodape .conteudo a:before{
	content: '- ';
}
.rodape .centralizar .box_rodape .conteudo a:hover{
	color: var(--cor-principal);
}

.rodape .centralizar .box_rodape .redes_sociais{
	float:left;
	width: 100%;
	margin-top: 10px;
}
.rodape .centralizar .box_rodape .redes_sociais a{
	display: inline-block;
	padding: 10px;
	text-align: center;
}
.rodape .centralizar .box_rodape .redes_sociais a i{
	color: white;
	font-size: 30px;
}

/** rodape bottom */
.rodape_bottom{
	position:relative;
	float:left;
	width: 100%;
	background: var(--cor-fundo);
}
.rodape_bottom .centralizar{
	padding: 26px 0;
	border-top: 1px solid #ffffff61;
	color: white;
	display: flex;
}

.rodape_bottom .centralizar > div{
	flex-grow: 1;
}
.rodape_bottom .centralizar .creditos_vocatus{
	text-align: right;
}

/* mensagem de sucesso, aviso e erro */
.confirmMessage{
    float: left;
    width: 100%;
    padding: 12px;
    background: #4bbf99;
    color: white;
    border-radius: 5px;
    margin: 3px 0;
}
.warningMessage{
    float: left;
    width: 100%;
    padding: 12px;
    background: #dbac65;
    color: white;
    border-radius: 5px;
    margin: 3px 0;
}
.errorMessage{
    float: left;
    width: 100%;
    padding: 12px;
    background: #db4620;
    color: white;
    border-radius: 5px;
    margin: 3px 0;
}