/*********************************************
** Footer 
*********************************************/

#footer {
	float: left;
	width: 100%;
	padding: 70px 0;
	background: url('../../../uploads/2024/02/bg-rodape.jpg') top center no-repeat;
	background-size: cover;
}

#footer .container {
	position: relative;
}

/* Botão Subir */
 
#botao_subir {
    position: absolute;
    top: -90px;
    right: 15px;
    z-index: 1;
    border-radius: 30px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
	background: #4B7891;
}

#botao_subir i {
    color: #fff;
    font-size: 34px;
}

/* Título Rodapé */

#footer .tituloRodape {
	font-size: 20px;
    line-height: 20px;
    float: left;
    width: 100%;
    color: #fff;
    margin: 0;
	margin-bottom: 45px;
	font-family: 'sybilla';
	position: relative;
}

#footer .tituloRodape::before {
	content: "";
	width: 50%;
	height: 5px;
	background: #4B7891;
	position: absolute;
	bottom: -20px;
	left: 0;
}

/* Box Cima */

#footer .boxCima {
	float: left;
	width: 100%;
}

/* Menus */

#footer .menuRodape ul {
	float: left;
	width: 100%;
	padding: 0;
	list-style: none;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 5px 15px;
}

#footer .menuRodape ul li::before {
	content: "•";
	margin-right: 5px;
	color: #fff;
}

#footer .menuRodape ul li a {
	font-size: 15px;
	line-height: 25px;
	color: #fff;
}

/* Contatos */

#footer .contatos .boxTelefones {
	float: left;
	width: 100%;
}

#footer .contatos .boxTelefones a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	float: left;
}

#footer .contatos .boxTelefones a.margen {
	margin-top: 10px;
}

#footer .contatos .boxTelefones a i {
	color: #fff;
    font-size: 20px;
    line-height: 20px;
	text-align: center;
	width: 20px;
}

#footer .contatos .boxTelefones a span {
	margin-left: 10px;
    font-size: 15px;
    line-height: 22px;
	color: #fff;
}

#footer .contatos .redesSociais {
	float: left;
	width: 100%;
	margin-top: 30px;
}

#footer .contatos .redesSociais a {
	display: inline-block;
}

#footer .contatos .redesSociais a + a {
	margin-left: 10px;
}

#footer .contatos .redesSociais a i {
	color: #fff;
	font-size: 30px;
}

/* Acesso Rápido */

#footer .acessoRapido p {
	float: left;
	width: 100%;
	font-size: 15px;
	color: #fff;
	margin: 0;
}

#footer .acessoRapido ul {
	float: left;
	width: 100%;
	padding: 0;
	margin: 30px 0 0 0;
}

#footer .acessoRapido ul li {
	float: left;
	width: 100%;
	list-style: none;
}

#footer .acessoRapido ul li + li {
	margin-top: 10px;
}

#footer .acessoRapido ul li a {
	background: #FFFFFF;
    border-radius: 60px;
    padding: 10px 25px;
    color: #373C53;
    font-size: 14px;
    letter-spacing: 1px;
    border: 0;
    display: inline-block;
}

/* Box Baixo */

#footer .boxEndereco {
	float: left;
	width: 100%;
	padding: 15px 0;
	margin-top: 20px;
	text-align: center;
}

#footer .boxEndereco span {
	float: left;
	width: 100%;
	color: #fff;
}

/* Box Assinatura */

.boxAssinatura {
	float: left;
	width: 100%;
	padding: 15px 0;
	text-align: center;
	border-top: solid 1px #CFCBCB;
}

.boxAssinatura a {
	display: inline-block;
}

.boxAssinatura a img {
	max-width: 100px!important;
}

/* Whatsapp */

#modalWhatsapp {
	position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999999999;
    cursor: pointer;
}

#modalWhatsapp img {
	width: 60px;
}

@media (max-width: 1000px) {

	/* Box */

	#footer .boxCima .col-sm-3 {
		float: left;
		width: 50%;
		margin-bottom: 30px;
	}

}

@media (max-width: 768px) {

	#footer {
		padding: 40px 0;
		background: #1F3048;
	}

	#botao_subir {
		top: -60px;
	}

	#footer .boxCima .col-sm-3 {
		float: left;
		width: 100%;
		margin-bottom: 30px;
	}

	#footer .boxCima .col-sm-3 figure {
		text-align: center;
		margin-bottom: 20px;
	}

	#footer .boxCima .col-sm-3 figure img {
		max-width: 120px!important;
	}

	#footer .boxBaixo {
		margin-top: 0;
	}

}