:root{
	--cor-fundo: #0e0e0f;
	--cor-principal: #956c34;
}
body{
    margin: 0;
}
*{
    box-sizing: border-box;
}

a{
	color: var(--cor-principal);
}

.centralizar{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.topo{
	float:left;
	width: 100%;
	min-height: 150px;
	background: var(--cor-fundo);
	padding: 30px 0;
}
.topo .centralizar{
	display: flex;
}
.topo .logo{
	width: 100%;
	max-width: 300px;	
}
.topo .logo img{
	width: 100%;
	max-width: 300px;
}

.topo .topo_menu{
	width: 100%;
	text-align: right;
}
.topo .topo_menu a{
	color: var(--cor-principal);
	text-decoration: none;
	display: inline-block;
	padding: 30px 10px;
}

.banner_topo{
	position: relative;
	float:left;
	width: 100%;
	height: 600px;
	background: var(--cor-fundo);
}
.banner_topo .banner_img{
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-image: url(../../templates/simplelaw/imagens/banner-topo.jpeg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	filter: brightness(.5);	
}

.banner_topo .centralizar{
	position: relative;
	color: white;
	font-size: 50px;
	text-align: center;
	padding: 200px 0;
}


/** modulos */
.module .title,
.module .module_content{
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
}

.module{
	padding: 60px 0;
}

.module .title{
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	padding-bottom: 25px;
	font-size: 25px;
}
.module .title_content{
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.module .title_content:after{
	content: '';
	position: absolute;
	left: 50%;
	margin-left: -100px;
	bottom: 0;
	width: 200px;
	height: 2px;
	background: black;
}

.module:nth-child(even){
	background: #f6f6f6;
}
.module .module_content{
	font-size: 18px;
}

/** rodape */
.rodape{
	float:left;
	width: 100%;
	background: var(--cor-fundo);
	padding: 40px 0;
	border-top: 1px solid var(--cor-principal);
	filter: brightness(1.2);
}
.rodape .centralizar{
	display: flex;	
}

.rodape .logo{
	max-width: 150px;
}
.rodape .logo img{
	width: 100%;
}
.rodape .contatos{
	width: 100%;
	text-align: right;
	color: var(--cor-principal);
}

.rodape_bottom{
	float:left;
	width: 100%;
	background: var(--cor-fundo);
	padding-top: 15px;
	padding-bottom: 15px;
	border-top: 1px solid var(--cor-principal);
	filter: brightness(1.2);
}

.rodape_bottom .centralizar{
	text-align: center;
	color: white;
	font-size: 13px;
}

/* 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;
}