* {
	margin: 0px;
	padding: 0px;
}

*::-webkit-scrollbar {
	width: 10px;
	background-color: #37556D;
	padding: 10px;
}

*::-webkit-scrollbar-thumb {
	background-color: #caccce;
	border-radius: 4px;
}

html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
}

.topo {
	padding: 20px 0px 0px 20px;
	height: 400px;
}

.topo video {
	position: absolute;
	top: 0;
	left: 0;
	height: 420px;
	width: 100%;
	z-index: -1;
	object-fit: cover;
}

.topo .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
}

.topo .header .logo img {
	width: 70px;
	margin-left: 15px;
}

.topo .header .menu {
	background-color: #37556D;
	padding: 15px;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
}

.topo .header .menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.topo .header .menu li {
	display: inline-block;
	margin-left: 10px;
}

.topo .header .menu a {
	font-family: roboto, sans-serif;
	text-decoration: none;
	color: white;
	padding: 10px;
}

.topo .header .menu a:hover {
	text-decoration: underline;
}

.titulo {
	margin-top: 50px;
	margin-left: 40px;
}

.titulo h1 {
	color: white;
	font-family: lilita one, sans-serif;
	font-size: 90px;
}

.titulo p {
	color: #37556D;
	background: linear-gradient(to right, white 100%, transparent 100%);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 100%;
	animation: grifar 2s forwards;
	padding: 4px;
	display: inline;
	font-family: roboto, sans-serif;
	font-size: 15px;
	margin-top: 20px;
}

.proposito {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 400px;
  animation: entrar 2.5s forwards; /* Executa a animação uma vez e para no final */
}

@keyframes entrar {
  0% {
    transform: translateX(-100%); /* Fora da tela à esquerda */
  }
  100% {
    transform: translateX(0); /* Posição final */
  }
}

.proposito .img_proposito {
	flex: 1;
	height: 100%;
}

.proposito .img_proposito img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.proposito .text_proposito {
	flex: 1;
}

.proposito .text_proposito h3 {
	padding: 25px;
	padding-bottom: 0px;
	color: #37556D;
	font-size: 45px;
	font-family: lilita one, sans-serif;
	text-align: left;
}

.proposito .text_proposito p {
	text-align: justify;
	padding: 25px;
	padding-top: 0px;
	color: black;
	font-size: 18px;
	font-family: Roboto, sans-serif;
}

.safebite {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
	text-align: justify;
	width: 100%;
	height: 400px;
	transform: translateX(50%);
	transition: opacity 2s ease, transform 2s ease;
	opacity: 0;
}

.safebite .img_safebite {
	flex: 1;
	height: 100%;
}

.safebite .img_safebite img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.safebite .text_safebite {
	flex: 1;
}

.safebite .text_safebite h3 {
	padding: 25px;
	padding-bottom: 0px;
	color: #688F4E;
	font-size: 45px;
	font-family: lilita one, sans-serif;
	box-sizing: border-box;
}

.safebite .text_safebite p {
	padding: 25px;
	padding-top: 0px;
	color: black;
	font-size: 18px;
	font-family: Roboto, sans-serif;
	box-sizing: border-box;
}

.sobre {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	text-align: justify;
	width: 100%;
	height: 400px;
	transform: translateX(-50%);
	transition: opacity 2s ease, transform 2s ease;
	opacity: 0;
}

.sobre .img_sobre {
	flex: 1;
	height: 100%;
}

.sobre .img_sobre img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.sobre .text_sobre {
	flex: 1;
}

.sobre .text_sobre h3 {
	padding: 25px;
	padding-bottom: 0px;
	color: #37556D;
	font-size: 45px;
	font-family: lilita one, sans-serif;
	box-sizing: border-box;
}

.sobre .text_sobre p {
	padding: 25px;
	padding-top: 0px;
	color: black;
	font-size: 18px;
	font-family: Roboto, sans-serif;
	box-sizing: border-box;
}

.carrossel {
	position: relative;
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
	margin-top: 20px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 2s ease, transform 2s ease;
}

.carrossel.show {
	opacity: 1;
	transform: translateY(0);
}

.carrossel h1 {
	color: #37556D;
	text-align: center;
	font-size: 45px;
	font-family: lilita one, sans-serif;
	margin-bottom: 20px;
	margin-top: 20px;
}

.carrossel .carrossel_integrantes {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.carrossel .carrossel_integrantes .integrantes {
	min-width: 31%;
	text-align: center;
	padding: 10px;
}

.carrossel .carrossel_integrantes .integrantes img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.carrossel .carrossel_integrantes .integrantes h3 {
	font-family: lilita one, sans-serif;
	color: #37556D;
	margin-top: 10px;
	font-size: 20px;
}

.carrossel .carrossel_integrantes .integrantes p {
	color: black;
	font-family: Roboto, sans-serif;
	font-size: 15px;
	margin-top: 5px;
	text-align: justify;
	font-weight: normal;
}

.carrossel button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: silver;
	color: white;
	border: none;
	font-size: 24px;
	padding: 10px;
	cursor: pointer;
	z-index: 10;
	border-radius: 20px;
}

.carrossel .voltar {
	left: 0;
}

.carrossel .ir {
	right: 0;
}

.carrossel button:focus {
	outline: none;
}

.pilares {
	background-color: #688F4E;
	padding: 20px 0px 30px 0px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.pilares .coluna {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.pilares .coluna .conteudo h1 {
	font-family: lilita one, sans-serif;
	font-size: 30px;
	color: white;
}

.pilares .coluna .conteudo p {
	font-family: roboto, sans-serif;
	padding: 0px 25px;
	color: white;
}

.pilares .coluna .conteudo {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: justify;
}

.pilares .coluna .conteudo img {
	width: 100px;
	opacity: 0;
	transform: translateY(-50px);
	transition: opacity 2s ease, transform 2s ease;
}

.pilares .coluna .conteudo h1,
.pilares .coluna .conteudo p {
	padding: 0px 25px;
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 2s ease, transform 2s ease;
}

.titulo_depoimentos h1 {
	color: #688F4E;
	text-align: center;
	font-size: 45px;
	font-family: lilita one, sans-serif;
	margin-top: 20px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 2s ease, transform 2s ease;
}

.depoimentos {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin: 20px;
	margin-top: 15px;
}

.depoimentos .bloco {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #f9f9f9;
	border-radius: 8px;
	padding: 25px;
	width: 300px;
	margin: 10px;
	box-shadow: 0px 2px 5px #4B4B4B;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 2s ease, transform 2s ease;
}

.depoimentos .bloco h2 {
	font-size: 20px;
	font-family: lilita one, sans-serif;
	color: #688F4E;
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 2s ease, transform 2s ease;
}

.depoimentos .bloco p {
	font-family: roboto, sans-serif;
	text-align: justify;
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 2s ease, transform 2s ease;
}

.depoimentos .foto {
	box-shadow: 1px 2px 5px #4B4B4B;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 2s ease, transform 2s ease;
}

.titulo_mascotes h1 {
	color: #37556D;
	text-align: center;
	font-size: 45px;
	font-family: lilita one, sans-serif;
	margin-top: 25px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 2s ease, transform 2s ease;
}

.mascotes {
	display: flex;
	justify-content: space-around;
	background-color: #37556D;
	flex-wrap: wrap;
	padding: 20px;
	margin-top: 15px;
}

.mascotes .bloco {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 25px;
	width: 300px;
	margin: 10px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 2s ease, transform 2s ease;
}

.mascotes .foto {
	width: 100px;
	height: 100px;
	object-fit: cover;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 2s ease, transform 2s ease;
}

.mascotes .bloco h2 {
	font-size: 20px;
	font-family: lilita one, sans-serif;
	color: white;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 2s ease, transform 2s ease;
}

.mascotes .bloco p {
	font-family: roboto, sans-serif;
	text-align: justify;
	color: white;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 2s ease, transform 2s ease;
}

.app {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 35px;
	height: 300px;
}

.app .app_conteudo {
	flex: 1;
	text-align: right;
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 2s ease, transform 2s ease;
}

.app .app_conteudo h1 {
	color: #37556D;
	font-size: 45px;
	font-family: lilita one, sans-serif;
}

.app .app_conteudo p {
	font-family: roboto, sans-serif;
	color: black;
	margin-bottom: 10px;
}

.app .baixar img {
	width: 150px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: transform 0.3s;
}

.app .baixar img:hover {
	transform: scale(1.05);
}

.app .app_imagem {
	height: 100%;
	flex: 1;
	text-align: left;
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 2s ease, transform 2s ease;
}

.app .app_imagem img {
	height: 100%;
}

.rodape {
	color: white;
	text-align: center;
	padding: 15px;
	font-size: 15px;
	font-family: Roboto, sans-serif;
	background-color: #37556D;
}

.rodape a img:hover {
	transition: 2s;
	opacity: 0.7;
}

.show-on-scroll {
	opacity: 1 !important;
	transform: translateX(0) !important;
}

@keyframes grifar {
	from {
		background-size: 0 100%;
	}

	to {
		background-size: 100% 100%;
	}
}

@keyframes mover {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(300px);
  }
}

@media screen and (max-width: 768px) {
	.topo {
		padding: 0px;
		padding-top: 20px;
	}

	.topo .header {
		flex-direction: column;
		text-align: center;
	}

	.topo .header .logo img {
		margin-left: 0px;
	}

	.topo .header .menu {
		margin-top: 10px;
		border-radius: 25px;
	}

	.topo .header .menu li {
		display: block;
		margin: 5px 0;
		font-size: 12px;
		padding: 5px;
	}


	.topo .titulo {
		margin-top: 180px;
		margin-left: 0px;
		text-align: center;
	}

	.topo .titulo h1 {
		font-size: 40px;
	}

	.topo .titulo p {
		font-size: 12px;
	}

	.sobre,
	.proposito,
	.safebite {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: justify;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
	}

	.proposito .text_proposito h3,
	.safebite .text_safebite h3,
	.sobre .text_sobre h3 {
		font-size: 35px;
	}

	.carrossel {
		height: 300px;
	}

	.carrossel h1 {
		font-size: 35px;
	}

	.titulo_depoimentos h1 {
		color: #688F4E;
		text-align: center;
		font-size: 35px;
		font-family: lilita one, sans-serif;
		margin-top: 20px;
		opacity: 0;
		transform: translateY(50px);
		transition: opacity 2s ease, transform 2s ease;
	}

	.carrossel .carrossel_integrantes .integrantes {
		min-width: 25%;
		text-align: center;
		padding: 10px;
		height: 25%;
	}

	.carrossel .carrossel_integrantes .integrantes img {
		width: 100%;
		height: 100%;
	}

	.carrossel .carrossel_integrantes .integrantes p {
		display: none;
	}

	.pilares {
		padding: 20px 0px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.pilares .coluna {
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.pilares .coluna .conteudo {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: justify;
	}
	.app .baixar img {
		width: 100px;
	}
	.app .app_imagem, .app .app_conteudo, .titulo_mascotes h1, .depoimentos .bloco, .depoimentos .bloco p, .safebite, .sobre, .depoimentos .bloco h2, .depoimentos .foto, .mascotes .bloco, .mascotes .bloco p, .mascotes .bloco h2, .mascotes .foto{
		transition:none;
		transform:none;
	}
}