@charset "utf-8";

.secao-apresentacao {
    position: relative;
    text-align: center;
    background-color: #E5F7EE;
    padding: 50px 20px;
}
.secao-apresentacao h1 {
    background-color: #19778c;
}
.secao-apresentacao::before {
    position: absolute;
	top: 0;
    left: 0;
    right: 0;
    content: "";
    display: block;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    z-index: 0;
}
.secao-apresentacao .projeto-logo {
	position: relative;
    margin-top: 0;
    max-width: 216px;
    padding: 25px;
    background-color: rgba(255,255,255,.3);
    border-radius: 50%;
}
.secao-apresentacao .projeto-logo img {
    max-width: 100%;
    border-radius: 50%;
    background-color: white;
}
.secao-apresentacao h1 {
	position: relative;
    text-align: center;
    display: inline-block;
    font-family: 'Fredoka One', cursive;
    text-transform: uppercase;
    font-weight: normal;
    color: white;
    margin-left: auto;
    margin-right: auto;
    padding: 4px 30px;
    border-radius: 8px;
}

/*Rodapé*/
.cor-tema {
    fill: #19778c;
}
.outros-links-rodape {
    color: #19778c !important;
}
a.outros-links-rodape::before {
    background-color: #19778c;
}@charset "utf-8";

/*Botões de paginação*/
.bts-paginacao {
	display: flex;
	justify-content: center;
	margin-top: 50px;
	max-width: 900px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.bts-paginas {
	display: inline-flex;
	border: 2px solid #19778c;
	border-radius: 50%;
	justify-content: space-around;
	align-items: center;
	width: 30px;
	height: 30px;
	font-weight: bolder;
	text-decoration: none;
	color: #19778c;
	margin-left: 2px;
	margin-right: 2px;
}
.bt-anterior-2x,
.bt-anterior,
.bt-proximo,
.bt-proximo-2x {
	font-size: 0;
	background-repeat: no-repeat;
	background-position: center;
}
.bt-anterior-2x {
	background-image: url('/arquivos/imagens/svg/seta-2x.svg#bt-ativo-view');
	transform: rotateZ(180deg);
	background-size: 69%;
	background-position: 100% 70%
}
.bt-anterior {
	background-image: url('/arquivos/imagens/svg/seta-1x.svg#bt-ativo-view');
	transform: rotateZ(180deg);
	background-size: 40%;
}
.bt-proximo {
	background-image: url('/arquivos/imagens/svg/seta-1x.svg#bt-ativo-view');
	background-size: 40%;
}
.bt-proximo-2x {
	background-image: url('/arquivos/imagens/svg/seta-2x.svg#bt-ativo-view');
	background-size: 69%;
	background-position: center;
	background-position: 100% 84%;;
}
.bt-ativo {
	background-color: #19778c;
	color: white !important;
}
.bt-inativo {
	border: 2px solid #87BDC9;
}
.bt-inativo.bt-anterior,
.bt-inativo.bt-proximo {
	background-image: url('/arquivos/imagens/svg/seta-1x.svg#bt-inativo-view') !important;
}
.bt-inativo.bt-anterior-2x,
.bt-inativo.bt-proximo-2x {
	background-image: url('/arquivos/imagens/svg/seta-2x.svg#bt-inativo-view');
}

