@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Exo+2:ital,wght@0,100..900;1,100..900&family=M+PLUS+Rounded+1c&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("bootstrap.css");
@import url("header.css");
@import url("destaque.css");
@import url("index.css");
@import url("conteudo.css");
@import url("lightbox.css");
@import url("footer.css");
@import url("carousel.css");
@import url("forms.css");
@import url("awesome.css");
@import url("teste.css");


:root {
  --cor-principal: #3E4095;
}


html {
  scroll-behavior: smooth;
}
:target {
  scroll-margin-top: 92px;
}

body {
	
	font-size:16px;
	line-height:20px;
	text-decoration: none;
	color:#000;
	height:100%;
	background:#FFF;
	font-family: "M PLUS Rounded 1c", sans-serif;
  
	/**
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-family: "Exo 2", sans-serif;
	font-family: "Bungee", sans-serif;
	font-family: "Montserrat Alternates", sans-serif;
	**/
}

/** cor site: #0B6755 **/

* { margin:0; padding:0; list-style:none;border:none;outline:none;}

a,
a:hover,
a:focus,
a:active,
button:focus {
    text-decoration: none;
    border: none;
    outline: 0;
	color:#000;
}
img {
    max-width: 100%;
    height: auto;
}
a:hover {
  color: #111111;
}
p {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 27px;
}

.modal-backdrop.show {
    opacity: 0.9; /* padrão é 0.5 */
    background-color: rgba(0, 0, 0, 0.9); /* quase preto */
}

.divider {
    background:url(img/dvder.png);
	height: 7px;
}





/* ======= */
.mt-10 {margin-top: 10px;}
.mt-20 {margin-top: 20px;}
.mt-30 {margin-top: 30px;}
.mt-40 {margin-top: 40px;}
.mt-50 {margin-top: 50px;}
.mt-60 {margin-top: 60px;}
/* ======= */
.mb-10 {margin-bottom: 10px;}
.mb-20 {margin-bottom: 20px;}
.mb-30 {margin-bottom: 30px;}
.mb-40 {margin-bottom: 40px;}
.mb-50 {margin-bottom: 50px;}
.mb-60 {margin-bottom: 60px;}
/* ======= */
.pt-10 {padding-top: 10px;}
.pt-20 {padding-top: 20px;}
.pt-30 {padding-top: 30px;}
.pt-40 {padding-top: 40px;}
.pt-50 {padding-top: 50px;}
.pt-60 {padding-top: 60px;}
/* ======= */
.pb-10 {padding-bottom: 10px;}
.pb-20 {padding-bottom: 20px;}
.pb-30 {padding-bottom: 30px;}
.pb-40 {padding-bottom: 40px;}
.pb-50 {padding-bottom: 50px;}
.pb-60 {padding-bottom: 60px;}
/* ======= */





/**======================INÍCIO BOTÃO NIVEL======================**/
.btnNivel {
	position: relative;
	line-height: 30px;
	overflow: hidden;
	background:none;
	text-align:center;
	border-radius:2px;
	display: inline-grid;
	padding: 6px 32px;
	background-color:#681D49;
}
.btnNivel:before {
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
	background-color:#1D0714;
}
.btnNivel:hover::before {
	opacity:1;
	-webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
.btnNivel .txt {
	position:relative;
	z-index:1;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 16px;
	font-weight:600;
	color: #FFFFFF
}
.btnNivel i {
	position:relative;
	top:0;
	font-size: 16px;
	font-style:normal;
	line-height:30px;
	margin-left:5px;
}
.btnNivel:hover {
	color:#F4E8E8;
}
/**======================FIM BOTÃO NIVEL======================**/