@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

 @media (max-width: 768px) {
	 .creditos, .redessociais {
		 text-align: center !important; /* Centraliza em dispositivos móveis */
	 }
}

html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
	box-sizing: border-box;
}

.fade-in {
	animation: fadeIn 1s;
  }
  
  .fade-out {
	animation: fadeOut 1s;
  }
  
  @keyframes fadeIn {
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
  }
  
  @keyframes fadeOut {
	from {
	  opacity: 1;
	}
	to {
	  opacity: 0;
	}
  }

.nav-pills .nav-link.active {
  background-color: #f1b121 !important; /* Amarelo */
  color: #000000 !important; /* Preto */
}

.nav-pills .nav-link {
  background-color: #FFFFFF; /* Branco (ou outra cor de fundo desejada) */
  color: #000000; /* Preto (ou outra cor de texto desejada) */
}

.nav-pills .nav-link:hover {
  background-color: #CCCCCC; /* Cinza (ou outra cor de fundo desejada) */
  color: #000000; /* Preto (ou outra cor de texto desejada) */
}

body {
	font-family: montserrat, sans-serif !important;
	font-weight: 400;
	font-style: normal;
	background-image: url("../images/background-footer.webp");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom;
}

.card {
	transition: all 0.5s;
}

.card:hover {
	background-color: #fff !important;
}

.titlefunc {
	font-size: 1.5em;
	text-transform: uppercase;
	font-weight: bold;
}

@keyframes slideFromRight {
	0% { transform: translateX(20%); opacity: 0; }
	100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideFromleft {
	0% { transform: translateX(-20%); opacity: 0; }
	100% { transform: translateX(0); opacity: 1; }
}

.mainimg {
	animation: 1s ease-out 0s 1 slideFromRight;
}

.maintext {
	animation: 1s ease-out 0s 1 slideFromleft;
}

.navbar {
	border-radius: 10px;
	margin-top: 10px;
	-webkit-transition: all .3s linear 0s;
	transition: all .3s linear 0s;
}

.hero {
	background-image: url("../images/background.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
}

.bloco {
	padding: 6rem 2rem;
	margin-bottom: 2rem;
	border-radius: 0px;
}

/*.bloco:first-of-type {
	padding: 4rem 2rem 1rem;
}*/

.menu {
	position: fixed;
	max-width: 1140px;
	width: 100%;
}

.show {
	opacity: 1;
	display: block;
	-webkit-transition: all .3s linear 0s;
	transition: all .3s linear 0s;
}

.hidden {
	opacity: 0;
	display: none;
	-webkit-transition: all .3s linear 0s;
	transition: all .3s linear 0s;
}

#totop {
	position: fixed;
	font-size: 45px;
	bottom: 80px;
	right: 10px;
	margin: 20px;
	color: rgba(0,0,0,0.50);
}

a[data-toggle="collapse"] {
	color: #666;
	font-weight: bold;
}

a[data-toggle="collapse"]:hover {
	text-decoration: none;
}

.creditos {
	text-align: left;
	font-size: 12px;
}

.redessociais {
	text-align: right;
	font-size: 1.3em;
}

.redessociais a, .creditos a {
	color: #212529;
	transition: all 0.5s;
}

.redessociais a:hover, .creditos a:hover {
	color: #f1b121;
}