@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  /* 1rem = 16px */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: clamp(0.688rem, 0.581rem + 0.45vw, 1.125rem);
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
  padding: 0;
  background-color: var(--color-primary);
  -webkit-front-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media (max-width: 768px) {
  body {
    font-size: max(3.4vw, 13px);
  }
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0;
}

:root {
  --color-primary: #133f86;
  --color-secondary: #0095d3;
  --color-tertiary: #ef6923;
  --color-dark: #000;
  --color-text-body: #3F3F3F;
  --color-white: #FFFFFF;
  --color-border-dark: #302b24;
  --font-base: "Poppins", Arial, sans-serif;
  --font-primary: "Clash Display", sans-serif;
  --font-secondary: "Gotham", Arial, sans-serif;
  --font-tertiary: "Poppins", Arial, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
}

.container {
  max-width: 90%;
}

.header {
  height: 100vh;
  --min-height: 820px;
  min-height: var(--min-height);
  z-index: 3;
}
@media (max-width: 1450px) {
  .header {
    --min-height: 250px;
    height: auto;
  }
}
.header__container {
  position: relative;
  z-index: 2;
  padding-top: 4vh;
}
@media (max-width: 1450px) {
  .header__container {
    padding-top: 3vh;
  }
}
@media (max-width: 768px) {
  .header__container {
    padding-top: 2rem;
  }
}
.header__title {
  font-size: min(79px, 4.063vw);
  line-height: 0.95;
  font-weight: 800;
  margin: 0;
}
@media (max-width: 1450px) {
  .header__title {
    line-height: 0.95;
    font-size: 3vw;
  }
}
@media (max-width: 768px) {
  .header__title {
    text-align: center;
    font-size: 6.6vw;
    position: absolute;
    top: 0;
    width: 100%;
    transform: translateY(-40%);
  }
}
.header .box-info {
  width: 20vw;
  margin-top: 0.9vw;
}
@media (max-width: 1450px) {
  .header .box-info {
    width: 23vw;
  }
}
@media (max-width: 768px) {
  .header .box-info {
    width: 100%;
    filter: drop-shadow(0px 35px 49px rgba(11, 3, 42, 0.32));
  }
}
.header .box-info__content {
  background-color: var(--color-primary);
  text-align: center;
  padding: 15px 5%;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
@media (max-width: 768px) {
  .header .box-info__content {
    padding: 15px 6.7vw 6vw;
  }
}
.header .box-info__title {
  color: var(--color-white);
  font-size: 1.25vw;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .header .box-info__title {
    font-size: 5.2vw;
  }
}
.header .box-info .logo-header {
  width: 12vw;
  max-width: 240px;
  margin: 1.5vh auto 0;
}
@media (max-width: 1450px) {
  .header .box-info .logo-header {
    width: 11vw;
  }
}
.header .box-info__link {
  text-align: center;
  margin: 1.5vh auto 0;
  display: table;
  font-weight: 500;
  position: relative;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}
.header .box-info__link::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #4893cd;
}
.header .box-info__date {
  color: var(--color-tertiary);
  font-size: 1.43vw;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  padding-bottom: 9px;
  margin-bottom: 7px;
  border-bottom: 2px solid var(--color-tertiary);
}
@media (max-width: 768px) {
  .header .box-info__date {
    font-size: 5.2vw;
  }
}
.header .box-info__text {
  padding-top: 5px;
  font-size: max(13px, 0.88vw);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: left;
  line-height: 1.2;
}
@media (max-width: 1450px) {
  .header .box-info__text {
    font-size: max(12px, 0.88vw);
  }
}
@media (max-width: 768px) {
  .header .box-info__text {
    font-size: 3.6vw;
  }
}
.header .logo-header {
  width: 11.3vw;
  max-width: 240px;
  margin: 1.5vh auto 0;
}
@media (max-width: 1450px) {
  .header .logo-header {
    width: 9vw;
  }
}
.header__link {
  text-align: center;
  margin: 1.5vh auto 0;
  display: table;
  font-weight: 500;
  position: relative;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}
.header__link::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #4893cd;
}
.header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  min-height: var(--min-height);
}
@media (max-width: 768px) {
  .header__bg {
    position: relative;
    height: auto;
    margin-top: 5vw;
  }
}
.header__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.header__bg-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  transform: translateY(33%);
}
@media (max-width: 768px) {
  .header__bg-strip {
    display: none;
  }
}
.header .box-form {
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--color-secondary);
  height: 80vh;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .header .box-form {
    margin-top: 2rem;
  }
}
.header .box-form__header {
  background-color: var(--color-primary);
  padding: 1.6vh 1rem;
  text-align: center;
  font-size: min(30px, 1.563vw);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 768px) {
  .header .box-form__header {
    background-color: #27659f;
    font-size: 4.5vw;
    padding: 1rem;
  }
}
.header .box-form__body {
  position: relative;
  background-color: #fff;
  z-index: 2;
  padding: 2rem 0 1rem 0;
  margin: 0 1rem 0 1rem;
  flex-grow: 1;
}
.header .box-form__p {
  background: #fff;
  margin: 0 1rem 1rem 1rem;
  color: #000;
  padding: 1rem;
  font-size: 10px;
  line-height: 140%;
}
.header .box-form__iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.header .box-form__link {
  position: relative;
  display: table;
  margin: 0.7vh auto 1vh;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.302vw;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .header .box-form__link {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 3.3vw;
  }
}
.header .box-form__link::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ef6923;
}

@media screen and (max-width: 1366px) {
  .header .box-form {
    height: 81vh;
  }
  .header .box-form__p {
    font-size: 8px;
    padding-bottom: 0.5rem;
  }
  .header .box-form__body {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .header .box-form {
    height: 900px;
  }
  .header .box-form__p {
    font-size: 9px;
  }
}
.footer {
  position: relative;
  padding: 6vw 0 3vw;
  background-color: #003d88;
  /* Botões personalizados */
}
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 14vw;
  height: 14vw;
  background: url("../img/footer-curva.webp") no-repeat left bottom;
  background-size: contain;
}
@media (max-width: 768px) {
  .footer::after {
    display: none;
  }
}
@media (max-width: 1450px) {
  .footer {
    padding: 13vw 0 3vw;
  }
  .footer .footer-logo-desk {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .footer {
    background-color: var(--color-primary);
    padding: 0 0 3vw;
    padding-bottom: 0;
  }
}
.footer__text {
  text-align: center;
  font-weight: 600;
  font-size: 2.5vw;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer__text {
    font-size: 4.7vw;
  }
}
.footer .carousel {
  padding-top: 2vw;
  padding-right: 66px;
}
@media (max-width: 1450px) {
  .footer .carousel {
    padding-right: 46px;
  }
}
@media (max-width: 768px) {
  .footer .carousel {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.footer .carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.footer .custom-nav {
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 10;
  width: 55px;
  height: 98px;
}
@media (max-width: 1450px) {
  .footer .custom-nav {
    width: 35px;
  }
}
@media (max-width: 768px) {
  .footer .custom-nav {
    width: 20px;
  }
}
.footer .custom-prev {
  background: url("../img/seta-1.png") no-repeat center/contain;
  left: -12px;
  transform: translateY(-50%) translateX(-100%);
}
.footer .custom-next {
  background: url("../img/seta-2.png") no-repeat center/contain;
  right: -12px;
  transform: translateY(-50%) translateX(100%);
}
.footer .custom-nav img {
  width: 40px;
  height: 40px;
}
.footer .footer-mobile {
  display: none;
}
@media (max-width: 768px) {
  .footer .footer-mobile {
    display: block;
    background: url("../img/footer-mobile.webp") no-repeat center top;
    background-size: 100% auto;
    text-align: center;
    padding-bottom: 3rem;
  }
  .footer .footer-mobile__logo {
    margin-top: 22vw;
  }
  .footer .footer-mobile__link {
    color: #FFF;
    display: table;
    margin: 0.5rem auto 2rem;
    text-transform: uppercase;
    text-align: center;
    font-size: 4vw;
    font-weight: 500;
    text-decoration: underline;
  }
}

/*# sourceMappingURL=style.css.map */
