@charset "UTF-8";
/* Reset básico e moderno */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 100%;
}

html {
  scroll-behavior: auto !important;
}

html,
body {
  height: 100%;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Open Sans", sans-serif;
}

body {
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.flex {
  display: flex;
}

.flex-jcc {
  justify-content: center;
}

.flex-aic {
  align-items: center;
}

.gap-6 {
  gap: 6px;
}

.color-blue {
  color: #0b496d;
}

.color-white {
  color: white;
}

.color-yellow {
  color: #f7981b;
}

.lh-140 {
  line-height: 140%;
}

.fs-12 {
  font-size: 12px;
}

.fs-18 {
  font-size: 18px;
}

.fs-26 {
  font-size: 26px;
}

.fs-40 {
  font-size: 40px;
}

.fs-56 {
  font-size: 48px;
}

.fs-66 {
  font-size: 54px;
}

.fs-100 {
  font-size: 100px;
}

.fs-150 {
  font-size: 150px;
}

.fs-italic {
  font-style: italic;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.tt-uppercase {
  text-transform: uppercase;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-20 {
  margin-top: 20px;
}

.ml-50 {
  margin-left: 50px;
}

.ta-center {
  text-align: center;
}

.container {
  padding: 0px 20px;
  width: 100%;
  max-width: 1300px;
  margin: auto;
}

p {
  line-height: 1.2;
}

@media (max-width: 992px) {
  .mb-50 {
    margin-bottom: 30px;
  }
  .fs-18 {
    font-size: 16px;
  }
  .fs-26 {
    font-size: 18px;
  }
  .fs-40 {
    font-size: 28px;
  }
  .fs-56 {
    font-size: 44px;
  }
  .fs-66 {
    font-size: 32px;
  }
  .fs-100 {
    font-size: 80px;
  }
  .fs-150 {
    font-size: 120px;
  }
}
.header {
  background: #007cb0;
}
.header .container {
  justify-content: space-between;
}

.form {
  background: #16587e;
  padding: 120px 0px;
}
.form .content {
  max-width: 800px;
  margin: 0 auto;
}
.form form {
  display: flex;
  gap: 5px;
}
.form input {
  background: white;
  height: 40px;
  width: 100%;
  padding: 10px 20px;
}
.form button {
  color: #16587e;
  background: #f2ba16;
  padding: 0 24px;
  font-weight: bold;
  transition: 0.3s ease all;
  cursor: pointer;
}
.form button:hover {
  opacity: 0.8;
}

.subject {
  background-color: #007cb0;
  padding: 100px 0px;
}
.subject .title {
  position: relative;
  padding-left: 40px;
}
.subject .title:before {
  content: "*";
  font-size: 60px;
  position: absolute;
  top: 50%;
  transform: translate(0, -25%);
  left: 0;
}
@media (min-width: 992px) {
  .subject .title:before {
    font-size: 120px;
  }
}
@media (min-width: 992px) {
  .subject .title {
    padding-left: 80px;
  }
}
.subject .container {
  gap: 50px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .subject .container {
    flex-direction: row;
    gap: 100px;
  }
}
.subject .container .item {
  flex: 1;
  position: relative;
}
.subject .container .item:last-child:before {
  content: "";
  display: none;
  position: absolute;
  left: -50px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: white;
}
@media (min-width: 1200px) {
  .subject .container .item:last-child:before {
    display: block;
  }
}

.types {
  background: #f2ba16;
  padding-top: 100px;
  position: relative;
}
@media (min-width: 992px) {
  .types {
    padding-top: 200px;
  }
}
.types:before {
  content: "";
  position: absolute;
  border: 1px solid white;
  display: block;
  height: calc(100% - 150px);
  top: 150px;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 40px);
  max-width: 1400px;
  border-radius: 50px;
}
@media (min-width: 992px) {
  .types:before {
    height: calc(100% - 320px);
    top: 300px;
  }
}
.types .box-yellow {
  padding: 20px 20px;
  border-radius: 50px;
  background: #f7981b;
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .types .box-yellow {
    padding: 20px 100px;
  }
}
.types .box-yellow h2 {
  font-size: 16px;
}
.types .box-yellow h2 strong {
  font-size: 40px;
}
@media (min-width: 992px) {
  .types .box-yellow h2 {
    font-size: 40px;
  }
  .types .box-yellow h2 strong {
    font-size: 100px;
  }
}
.types .box-yellow:before, .types .box-yellow:after {
  position: absolute;
  top: 20px;
  font-size: 100px;
  content: "*";
  font-weight: 900;
  display: none;
  color: white;
}
@media (min-width: 992px) {
  .types .box-yellow:before, .types .box-yellow:after {
    display: block;
  }
}
.types .box-yellow:before {
  left: 40px;
}
.types .box-yellow:after {
  right: 40px;
}
.types .box-yellow strong {
  display: block;
}

.section-yellow {
  padding: 50px 0px;
}
@media (min-width: 992px) {
  .section-yellow {
    padding: 100px 0px;
  }
}
.section-yellow br {
  display: none;
}
@media (min-width: 992px) {
  .section-yellow br {
    display: block;
  }
}
.section-yellow .custom-ul li {
  margin-bottom: 11px;
}
@media (max-width: 992px) {
  .section-yellow ul {
    list-style-type: none !important;
  }
}
.section-yellow ul li {
  margin: 5px 0;
}

.section-blue {
  background: #007cae;
  padding: 50px 0px;
}
@media (min-width: 992px) {
  .section-blue {
    padding: 100px 0px;
  }
}
.section-blue .box-billions {
  position: relative;
  padding: 20px;
  text-align: center;
  margin-bottom: 50px;
}
.section-blue .box-billions .title {
  background: #007cae;
  display: inline-block;
  padding: 0 5px;
}
.section-blue .box-billions p {
  position: relative;
  z-index: 1;
}
.section-blue .box-billions:before {
  position: absolute;
  left: 0;
  top: 50px;
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 50px);
  border-radius: 12px;
  border: 1px solid #f7981b;
}
.section-blue ul li {
  padding: 5px 0px;
}
.section-blue .container-icons {
  flex-direction: column;
}
.section-blue .container-icons.box-default .flex .item:nth-child(1) {
  max-width: max-content;
}
@media (min-width: 992px) {
  .section-blue .container-icons.box-default .flex .item:nth-child(1) {
    max-width: none;
  }
}
.section-blue .container-icons img {
  width: 64px;
  height: 64px;
}
@media (min-width: 992px) {
  .section-blue .container-icons img {
    width: 128px;
    height: 128px;
  }
}

.yellow-two {
  padding: 50px 0px;
}
@media (min-width: 992px) {
  .yellow-two {
    padding: 100px 0px;
  }
}

.footer {
  background: #014b6b;
  padding: 50px 0px;
}
@media (min-width: 992px) {
  .footer {
    padding: 100px 0px;
  }
}
.footer .box-footer {
  padding: 20px;
  width: 100%;
  border-radius: 12px;
  border: 2px solid #f7981b;
}
.footer .box-footer p {
  line-height: 150%;
}

.video {
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0px;
}
.video .content-video {
  height: 100%;
  width: 100%;
  max-width: 1400px;
}
.video .content-video iframe {
  width: 100%;
}
@media (min-width: 767px) {
  .video .content-video iframe {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .video .content-video iframe {
    height: 500px;
  }
}
@media (min-width: 1400px) {
  .video .content-video iframe {
    height: 650px;
  }
}
@media (min-width: 1800px) {
  .video .content-video iframe {
    height: 750px;
  }
}
.video .navigation-wrapper {
  position: relative;
}
.video .dots {
  display: flex;
  padding: 10px 0;
  justify-content: center;
  background: #000;
  margin-top: 20px;
}
.video .dot {
  border: none;
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-radius: 50%;
  margin: 0 5px;
  padding: 5px;
  cursor: pointer;
}
.video .dot:focus {
  outline: none;
}
.video .dot--active {
  background: #c5c5c5;
}

.circle-yellow {
  width: 20px;
  height: 20px;
  background: #f7981b;
  border-radius: 50%;
}

.box-default {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  gap: 50px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .box-default {
    flex-direction: row;
  }
}
.box-default .item ul {
  text-align: center;
}
@media (min-width: 992px) {
  .box-default .item ul {
    text-align: left;
  }
}
.box-default .item ul li {
  padding: 5px 0px;
}
.box-default .item .decoration {
  display: inline-block;
  padding: 5px 10px;
  background: #007cae;
  border-radius: 30px;
  color: white;
  margin-bottom: 20px;
}
.box-default .item:nth-child(1) {
  width: 280px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 992px) {
  .box-default .item:nth-child(1) {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
  }
}
.box-default .item:nth-child(1) img {
  margin: 0 auto;
}
.box-default .item:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  text-align: center;
}
@media (min-width: 992px) {
  .box-default .item:nth-child(2) {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }
}

.container-custom {
  padding: 0 40px;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

.popup {
  display: none;
  position: relative;
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.popup.active {
  display: flex;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: white;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease all;
}
.popup .close:hover {
  color: #007cb0;
}
.popup .content {
  position: relative;
  max-width: 1100px;
  padding: 0 20px;
}
.popup .content img {
  width: 100%;
  max-width: 100%;
}
.popup img.mobile {
  display: none;
}
@media (max-width: 992px) {
  .popup img.mobile {
    display: block;
  }
  .popup img.desktop {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */