/*********************************************
** Footer 
*********************************************/

#footer {
	float: left;
	width: 100%;
	padding: 50px 0;
	background: url('https://goroger.com.br/wp-content/uploads/2022/04/bg-rodape.jpg') #373C53 center center no-repeat;
	background-size: cover!important;
}

#footer .container {
	position: relative;
}

/* Botão Subir */
 
#botao_subir {
    position: absolute;
    top: -75px;
    right: 15px;
    background: #32DAD8;
    z-index: 1;
    border-radius: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
}

#botao_subir i {
    color: #373C53;
    font-size: 34px;
}
 
/* Box Footer */

#footer .boxRodape {
	float: left;
	width: 20%;
}

/* Título Footer */

#footer .tituloFooter {
	float: left;
    width: 100%;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
	position: relative;
    font-size: 18px;
}

#footer .tituloFooter::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	background: #32DAD8;
	width: 80%;
	height: 3px;
}

/* Menus */

#footer .menusFooter ul {
	padding: 0 0 0 15px;
	margin: 0;
	float: left;
	width: 100%;
}

#footer .menusFooter ul li {
	color: #fff;
}

#footer .menusFooter ul li a {
	color: #fff;
	font-size: 13px;
}

/* Contatos */

#footer .contatos .telefones {
	float: left;
	width: 100%;
	margin-bottom: 30px;
}

#footer .contatos .telefones a {
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	float: left;
	cursor: pointer;
}

#footer .contatos .telefones a i {
	color: #fff;
	font-size: 20px;
	margin-right: 10px;
}

#footer .contatos .telefones a span {
	color: #fff;
}

/* Redes Sociais */

#footer .contatos .redesSociais {
	float: left;
	width: 100%;
}

#footer .contatos .redesSociais a {
	display: inline-block;
	margin: 0 10px 0 0;
}

#footer .contatos .redesSociais a i {
	color: #32DAD8;
	font-size: 28px;
	transition: all 0.1s linear 0s;
}

#footer .contatos .redesSociais a i:hover {
	transform: scale(1.1);
}

/* Acesso sistema */

#footer .acessoSistema figure {
	float: left;
	width: 100%;
}

#footer .acessoSistema p {
	float: left;
	width: 100%;
	margin: 20px 0;
	color: #fff;
}

#footer .acessoSistema .boxLogin {
	float: left;
	width: 100%;
	margin-top: 30px;
}

/* Logo MMD */

.logoMMD {
	float: left;
	width: 100%;
	text-align: center;
	background-color: #fff;
	padding: 15px 0;
}

.logoMMD img {
	max-width: 90px!important;
}

@media (max-width: 1100px) {

	#footer {
		padding: 40px;
	}

	#footer .boxRodape {
		float: left;
		width: 50%;
		margin-bottom: 30px;
	}

	#footer .boxRodape:nth-child(3) {
		clear: both;
	}
	
}

@media (max-width: 768px) {

	#footer .boxRodape {
		width: 100%;
	}

	#footer .tituloFooter::before {
		width: 100%;
	}

}

@media (max-width: 450px) {

	#footer {
		padding: 20px;
	}

}