:root {
  --main-blue-color: #0029a3;
  --main-gray-color: gray;
}

::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 1);
}

::-webkit-scrollbar-corner {
	background: rgba(255, 255, 255, 0.0)
}

@font-face {
  font-family: Muli;
  src: url('/assets/font/Muli-Regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('/assets/font/Muli-Bold.woff2') format('woff2');
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: Tim;
  src: url('/assets/font/timsans-regular.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: Tim;
  src: url('/assets/font/timsans-bold.woff') format('woff');
  font-weight: bold;
  font-display: swap;
}

body {
	margin: 0;
	padding: 0;
	overflow: auto;
	color: white;
	background: #111215;
	min-width: 400px;
	font-family: Tim, Muli, sans-serif !important;
}

@media only screen and (max-width: 400px) {
	body {
		zoom: 0.8;
	}
}

.navbar {
	background-color: #002d9f;
}

.navbar-brand img {
	height: 30px;
}

.botao-whatsapp img {
	width: 300px;
}

#page-1 {
	width: 100%;
	background-image: linear-gradient(to right, #0033b6, #061f52);
	padding-bottom: 100px;
	position: relative;
}

#page-1::after {
	content: "";
	display: block;
	width: 100%;
	height: 40px;
	background-image: url("/assets/image/divider-1-top.png");
	background-repeat: repeat-x;
	position: absolute;
	bottom: 0px;

}

#page-1 .info img {
	width: auto;
	height: 200px;
}

#page-1 .info h3 {
	max-width: 320px;
}

#page-1 .container {
	position: relative;
}

#page-1 .man {
	height: 350px;
	position: absolute;
	left: 10%;
	bottom: -90px;
	transform: translateX(-50%);
}

#page-2 {
	background-color: white;
	color: var(--main-blue-color);
	position: relative;
}

#page-2 .plano {
	position: relative;
}

#page-2 .plano .plano-botao img {
	position: absolute;
	bottom: 47%;
	left: 10%;
	width: 80%;
}

#page-2 .plano .plano-img {
	/*width: 250px;*/
	height: 60vh;
}

@keyframes atention {
  0% {
    transform: scale(1.0);
    filter: drop-shadow(0px 0px 0px #27a3e7);
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0px 0px 50px #27a3e7);
  }

  100% {
  	transform: scale(1.0);
  	filter: drop-shadow(0px 0px 0px #27a3e7);
  }
}

#page-2 .plano-especial {
	position: relative;
	/*order: 2;*/
	animation-name: atention;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	z-index: 1000;
}

#page-2 .plano-especial .plano-botao img {
	position: absolute;
	bottom: 41.3%;
	left: 10%;
	width: 80%;
}

#page-2 .plano-especial .plano-img {
	/*width: 250px;*/
	height: 68.15vh;
}

#page-2 .plano-90 {
	order: 6;
}

#page-2 .plano-8 {
	order: 1;
}

#page-2 .plano-60 {
	order: 4;
}

#page-2 .plano-70 {
	order: 5;
}

#page-3 {
	position: relative;
	background-image: linear-gradient(to top, #0033b6, #061f52);
	padding-top: 100px;
	padding-bottom: 150px;
	min-height: 1000px;
}

#page-1::before, .page-2b::before {
	content: "";
	display: block;
	width: 100%;
	height: 40px;
	background-image: url("/assets/image/divider-1-bottom.png");
	background-repeat: repeat-x;
	position: absolute;
	top: 0px;
}

#page-3::after {
	content: "";
	display: block;
	width: 100%;
	height: 100px;
	background-image: url("/assets/image/bg-page-3.png");
	background-repeat: round;
	position: absolute;
	bottom: 0px;
}

#page-3 .beneficios .beneficio img {
	height: 200px;
}

#page-3 .man {
	height: 700px;
}

#page-4 {
	background-color: #061f52;
	min-height: 800px;
}

h1 {
	font-size: 60px;
}

h2 {
	font-size: 35px;
}

h3, #page-2 h2, #page-3 h2, #page-4 h2 {
	font-size: 30px;
}

h4, #page-3 h3, #page-4 h3 {
	font-size: 25px;
}

form {
	border-radius: 15px;
	background-color: white;
	padding: 20px;
	min-width: 300px;
	max-width: 400px;
	margin: 0 20px 0 20px;
}

form .form-group {
	text-align: left;
	margin-bottom: 20px;
}

input[type="text"] {
	-webkit-appearance: none;
	border: 0;
	border-bottom: 2px solid var(--main-gray-color);
	width: 100%;
	font-size: 25px;
	height: 60px;
	color: var(--main-blue-color);
	transition: all 0.5s;
}

input[type="text"]::placeholder {
	color: var(--main-gray-color);
}

input[type="text"]:focus, input[type="text"]:hover {
	border-bottom: 2px solid var(--main-blue-color);
	outline: none;
	transition: all 0.5s;
}

.error-msg {
	font-size: 20px;
	color: red;
}

button[type="submit"] {
	width: 300px;
	height: 50px;
	background-color: var(--main-blue-color);
	border: 0;
	border-radius: 15px;
	color: white;
	font-size: 25px;
}

.anim-opacity {
	opacity: 0;
}

.anim-opacity.anim-animation {
	opacity: 1;
	transition: all 0.5s;
}

.anim-left {
	opacity: 0;
}

.anim-left.anim-animation {
	opacity: 1;
	transform: translateX(10px);
	transition: all 0.5s;
}

.anim-right {
	opacity: 0;
}

.anim-right.anim-animation {
	opacity: 1;
	transform: translateX(-10px);
	transition: all 0.5s;
}

.anim-top {
	opacity: 0;
}

.anim-top.anim-animation {
	opacity: 1;
	transform: translateY(10px);
	transition: all 0.5s;
}

.anim-bottom {
	opacity: 0;
}

.anim-bottom.anim-animation {
	opacity: 1;
	transform: translateY(-10px);
	transition: all 0.5s;
}


.anim-delay-1 {
	transition-delay: 0.1s !important;
}

.anim-delay-2 {
	transition-delay: 0.2s !important;
}

.anim-delay-3 {
	transition-delay: 0.3s !important;
}

.anim-delay-4 {
	transition-delay: 0.4s !important;
}

.anim-delay-5 {
	transition-delay: 0.5s !important;
}

@media (max-width: 575.98px) {

	h1 {
		font-size: 55px;
	}

	h2 {
		font-size: 30px;
	}

	h3, #page-2 h2, #page-3 h2, #page-4 h2 {
		font-size: 25px;
	}

	h4, #page-3 h3, #page-4 h3 {
		font-size: 20px;
	}

	#page-1 .info img {
		height: 140px;
	}

	#page-1 .info h3 {
		max-width: 280px;
	}

}

body.obrigado {
	background-image: linear-gradient(to right, #0033b6, #061f52);
}

#obrigado {
	width: 100%;
	padding-bottom: 100px;
	position: relative;
}

#obrigado img {
	width: 300px;
}