body {
  font-family: "Inter", sans-serif;
  margin: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #0d214f;
}
.navbar--title {
  text-align: end;
}
.navbar--title h1 {
  font-size: 22px;
  color: #004AAD;
  margin: 0;
}
.navbar--links {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 13px 0;
}
.navbar--links .links--navigation {
  gap: 30px;
  display: flex;
  align-items: center;
}
.navbar--links svg.button-mobile {
  display: none;
}
.navbar--links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}
.navbar--links a:hover {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.2s;
}
@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.navbar .link-custom {
  background-color: #C0C0C0;
  color: #0d214f;
  padding: 12px 18px;
  border-radius: 5px;
  margin-left: 20px;
}

.one-section {
  background-color: #0d214f;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  height: 87vh;
}
.one-section::after {
  content: "";
  background-image: url(/assets/background-wave.png);
  background-repeat: no-repeat;
  width: 100%;
  height: inherit;
  position: absolute;
  background-position-y: bottom;
  z-index: -1;
  top: -27px;
}
.one-section--container {
  display: flex;
  width: 1380px;
  align-items: center;
}
.one-section--info {
  margin-right: 50px;
}
.one-section--info .info--text h1 {
  font-weight: bold;
  font-size: 58px;
  color: #C0C0C0;
  margin-top: 0;
}
.one-section--info .info--text p {
  font-size: 20px;
  color: #fff;
  width: 700px;
  font-family: "Poppins", sans-serif;
}
.one-section--info .info--button {
  margin-top: 35px;
}
.one-section--info .info--button .button-primary {
  border: none;
  background-color: #C0C0C0;
  color: #0d214f;
  border-radius: 5px;
  font-size: 18px;
  padding: 15px 27px;
  font-weight: 500;
}
.one-section--info .info--button .button-primary:hover {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
  cursor: pointer;
}

.second-section {
  justify-items: center;
  background-color: #C0C0C0;
  background-image: url(/assets/background-sections.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position-y: center;
  height: 82vh;
  align-content: center;
}
.second-section--title h1 {
  margin: 0;
  padding: 0 0 30px 0;
  font-size: 54px;
  color: #0d214f;
}
.second-section--info {
  display: flex;
  justify-content: center;
}
.second-section--info .info--image {
  width: 50%;
  text-align: center;
  align-content: center;
}
.second-section--info .info--image img {
  margin-left: 150px;
  max-width: 560px;
  max-height: 382px;
  border-radius: 33px;
}
.second-section--info .text-socials {
  width: 50%;
}
.second-section--info .text-socials .text p {
  font-size: 18px;
  color: #0d214f;
  padding: 0 31% 0 0;
  margin-bottom: 20px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
}
.second-section--info .text-socials .text .button-second-section {
  border: none;
  cursor: pointer;
  background-color: #0d214f;
  color: #fff;
  padding: 14px 64px;
  border-radius: 5px;
  font-size: 16px;
}
.second-section--info .text-socials .socials {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}
.second-section--info .text-socials .socials a {
  text-decoration: none;
}
.second-section--info .text-socials .socials a:hover {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}
.second-section--info .text-socials .second-section-logo img {
  border-radius: 50%;
  width: 120px;
  margin: 20px 0;
}

.third-section {
  background-color: #0d214f;
  padding-bottom: 60px;
  height: 84vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.third-section--title {
  text-align: center;
}
.third-section--title h1 {
  color: #C0C0C0;
  font-size: 54px;
  margin: 0;
  padding: 35px 0;
}
.third-section--title p {
  margin: 0;
  font-size: 18px;
  color: #fff;
  padding: 0 17%;
  font-family: "Poppins", sans-serif;
}
.third-section--cards {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  margin-top: 40px;
  width: 100%;
}
.third-section--cards .third-section--top-column,
.third-section--cards .third-section--bottom-column {
  display: flex;
  justify-content: space-evenly;
  margin-top: 55px;
}
.third-section--cards .card .cards-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.third-section--cards .card .cards-title img {
  max-width: 98px;
  max-height: 98px;
}
.third-section--cards .card .cards-title h2 {
  font-size: 16px;
  color: #C0C0C0;
}

.section-products {
  background-color: #C0C0C0;
  padding-bottom: 55px;
}
.section-products--text {
  text-align: center;
}
.section-products--text h1 {
  color: #0d214f;
  font-size: 54px;
  margin: 0;
  padding: 35px 0;
}
.section-products--text p {
  margin: 0;
  font-size: 18px;
  color: #0d214f;
  padding: 0 17%;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 1025px) {
  .section-products--cards.mobile {
    display: none;
  }
}
.section-products--cards {
  display: flex;
  margin-top: 50px;
  width: 1380px;
  justify-self: center;
}
.section-products--cards .slick-arrow {
  background-color: transparent;
  width: 26px;
  height: 26px;
  font-size: 0;
  align-self: center;
  border: none;
}
.section-products--cards .slick-arrow::after {
  content: "";
  background-image: url(/assets/icon-arrow.png);
  display: block;
  width: 24px;
  height: 29px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
}
.section-products--cards .slick-prev::after {
  left: -30px;
}
.section-products--cards .slick-next::after {
  transform: rotate(180deg);
  right: -30px;
}
.section-products--cards .slick-track {
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-products--cards .card.slick-center {
  background-color: #0d214f;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-products--cards .card.slick-center h2 {
  color: #C0C0C0;
}
.section-products--cards .card.slick-center p {
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.section-products--cards .card.slick-center button {
  background-color: #C0C0C0;
}
.section-products--cards .card.slick-center button a {
  color: #0d214f;
  font-weight: 700;
}
.section-products--cards .card {
  border: 1px solid #0d214f;
  border-radius: 15px;
  padding: 22px 30px;
  height: 300px;
}
.section-products--cards .card h2 {
  color: #0d214f;
  font-size: 20px;
  margin: 20px 0px;
}
.section-products--cards .card p {
  color: #0d214f;
  line-height: 24px;
  font-size: 16px;
}
.section-products--cards .card button {
  background-color: #0d214f;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
}
.section-products--cards .card button a {
  color: #fff;
  text-decoration: none;
}

.section-parceiros {
  background-color: #0d214f;
  text-align: center;
  height: 45vh;
  display: flex;
  flex-direction: column;
  align-items: anchor-center;
  justify-content: center;
}
.section-parceiros--text h1 {
  color: #C0C0C0;
  font-size: 54px;
  margin: 0;
  padding: 0 0 70px 0;
}
.section-parceiros--images {
  display: flex;
  width: 1380px;
  justify-self: center;
  flex-direction: column;
}
.section-parceiros--images .slick-arrow {
  background-color: transparent;
  width: 26px;
  height: 26px;
  font-size: 0;
  align-self: center;
  border: none;
}
.section-parceiros--images .slick-arrow::after {
  content: "";
  background-image: url(/assets/icon-arrow.png);
  display: block;
  width: 24px;
  height: 29px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
  filter: brightness(100);
  top: 53px;
}
.section-parceiros--images .slick-prev::after {
  left: -30px;
}
.section-parceiros--images .slick-next::after {
  transform: rotate(180deg);
  right: -30px;
}
.section-parceiros--images .slick-track {
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-parceiros--images .slick-dots {
  display: flex;
  align-self: center;
  gap: 10px;
}
.section-parceiros--images .slick-dots li::marker {
  content: "";
}
.section-parceiros--images .slick-dots li button {
  font-size: 0;
  padding: 5px;
  border: none;
  border-radius: 50px;
  display: flex;
}
.section-parceiros--images .slick-dots li.slick-active button {
  background-color: #C0C0C0;
}
.section-parceiros--images .card {
  height: 135px;
  align-content: center;
}
.section-parceiros--images .card img {
  width: 173px;
  height: -webkit-fill-available;
  -o-object-fit: contain;
     object-fit: contain;
  place-self: center;
  filter: grayscale(100%) brightness(0.1) invert(100%);
}

.section-review {
  margin: 30px 0;
}
.section-review .container-review {
  display: flex;
  justify-content: space-evenly;
}
.section-review .container-review .review {
  width: 400px !important;
  border: 1px solid #dedede;
  padding: 15px;
  border-radius: 30px;
  min-height: 204px !important;
}
.section-review .container-review .review .review-name {
  display: flex;
  align-items: center;
}
.section-review .container-review .review .review-name img {
  width: 56px;
}
.section-review .container-review .review .review-name p {
  margin-left: 15px;
  font-size: 16px;
  font-weight: 600;
}
.section-review .container-review .review .review-stars {
  margin-top: 10px;
}
.section-review .container-review .review .review-stars img {
  width: 130px;
}
.section-review .container-review .review .review-stars p {
  margin-top: 5px;
  font-size: 14px;
}
.section-review .container-button {
  justify-self: center;
}
.section-review .container-button a {
  text-decoration: none;
}
.section-review .container-button a:hover {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}
.section-review .container-button a p {
  background-color: #004AAD;
  color: white;
  padding: 10px 20px;
  border-radius: 15px;
  margin-top: 20px;
}

.section-form {
  background-color: #C0C0C0;
  display: flex;
  justify-content: center;
  height: 66vh;
  background-image: url(/assets/background-sections.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position-y: center;
}
.section-form--container {
  width: 1380px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.section-form--container .image-form {
  max-width: 532px;
  max-height: 382px;
  border-radius: 33px;
  margin-top: 40px;
}
.section-form--container .form-container .form-text h1 {
  font-size: 54px;
  color: #0d214f;
}
.section-form--container .form-container .form-contact input {
  padding: 15px 10px;
  border: 1px solid #dedede;
  border-radius: 40px;
  width: 230px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
}
.section-form--container .form-container .form-contact .input-custom {
  width: 96%;
}
.section-form--container .form-container .form-contact .message-form {
  width: 96%;
  height: 100px;
  border: 1px solid #dedede;
  border-radius: 23px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  padding: 10px;
}
.section-form--container .form-container .form-contact .button-form {
  background-color: #0d214f;
  color: #fff;
  border: none;
  border-radius: 5px;
  margin-top: 15px;
  text-transform: uppercase;
  cursor: pointer;
}
.section-form--container .form-container .form-contact .button-form:hover {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}
.section-form--container .form-container .form-contact .input-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-form--container .form-container .form-contact .input-socials .socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-form--container .form-container .form-contact .input-socials .socials a:hover {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}

.footer-section {
  background-color: #0d214f;
}
.footer-section .first-footer {
  display: flex;
  justify-content: space-between;
  width: 1380px;
  justify-self: center;
  padding: 10px 35px 0;
}
.footer-section .first-footer .footer-logo p {
  font-size: 14px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.footer-section .first-footer .footer-institucional {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.footer-section .first-footer .footer-institucional span {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
.footer-section .first-footer .footer-institucional a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  margin-bottom: 1px;
  font-family: "Poppins", sans-serif;
}
.footer-section .first-footer .footer-socials {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.footer-section .first-footer .footer-socials span {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}
.footer-section .first-footer .footer-socials .socials-icon {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.footer-section .second-footer {
  text-align: center;
}
.footer-section .second-footer p {
  padding: 10px 35px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 767px) {
  .navbar {
    flex-direction: row-reverse;
  }
  .navbar--title {
    width: 100%;
    text-align: center;
  }
  .navbar--title h1 {
    font-size: 18px !important;
    margin: 10px 10px;
  }
  .navbar--links {
    background-image: none;
    justify-content: end;
    margin-left: 15px;
  }
  .navbar--links .button-mobile {
    display: block !important;
    width: 24px;
    fill: #fff;
  }
  .navbar--links .links--navigation {
    display: none;
  }
  .navbar--links .links--navigation.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    background: white;
    top: 88px;
    z-index: 999;
    width: 95% !important;
    left: 0;
    padding: 10px;
  }
  .navbar--links .links--navigation.active a {
    color: #252B42 !important;
    margin-bottom: 6px;
  }
  .navbar--links .links--button {
    display: none;
  }
  .one-section {
    height: 62vh;
  }
  .one-section--image {
    display: none;
  }
  .one-section::after {
    top: 0;
  }
  .one-section--info {
    margin-left: 10px;
    margin-right: 10px;
    top: 10px;
    text-align: center;
  }
  .one-section--info h1 {
    font-size: 30px !important;
  }
  .one-section--info p {
    font-size: 16px !important;
    width: 100% !important;
    color: #0b343d;
  }
  .one-section--info .info--button {
    margin-top: 20px;
  }
  .one-section--info .info--button .button-primary, .one-section--info .info--button .button-secundary {
    font-size: 14px !important;
    padding: 8px 23px;
  }
  .second-section {
    background-image: none;
    height: 96vh;
  }
  .second-section .second-section--title h1 {
    padding: 20px 0 10px 0;
    font-size: 30px !important;
    text-align: center;
  }
  .second-section .second-section--info .info--image {
    display: none;
  }
  .second-section .second-section--info .info--image img {
    width: inherit;
    margin-left: 0;
  }
  .second-section .second-section--info .text-socials {
    width: 100%;
  }
  .second-section .second-section--info .text-socials .text p {
    color: #252B42 !important;
    padding: 0px 10px;
    font-size: 16px;
  }
  .second-section .second-section--info .text-socials .text .info--button {
    justify-self: center;
  }
  .second-section .second-section--info .text-socials .socials {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .third-section {
    padding-bottom: 0;
  }
  .third-section .third-section--title h1 {
    font-size: 30px !important;
    padding: 10px 0;
    margin-bottom: 20px;
  }
  .third-section .third-section--title p {
    font-size: 16px !important;
    padding: 0 10px;
  }
  .third-section .third-section--cards .card img {
    max-width: 68px;
  }
  .third-section .third-section--cards .card .cards-title h2 {
    font-size: 10px;
  }
  .section-products--text h1 {
    font-size: 30px;
  }
  .section-products--text p {
    font-size: 16px;
    padding: 0 10px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .section-products--cards.desktop {
    display: none;
  }
}
@media (max-width: 767px) {
  .section-products--cards {
    width: 330px;
  }
  .section-products--cards .slick-next::after {
    right: -24px;
  }
}
@media (max-width: 767px) and (max-width: 360px) {
  .section-products--cards .slick-next::after {
    right: -2px;
  }
}
@media (max-width: 767px) {
  .section-products--cards .slick-prev::after {
    left: -20px;
  }
}
@media (max-width: 767px) and (max-width: 360px) {
  .section-products--cards .slick-prev::after {
    left: 0;
  }
}
@media (max-width: 767px) {
  .section-products--cards .card {
    height: 570px !important;
  }
}
@media (max-width: 767px) and (max-width: 360px) {
  .section-products--cards .card {
    height: 560px !important;
  }
}
@media (max-width: 767px) {
  .section-parceiros--text h1 {
    font-size: 30px;
  }
  .section-parceiros--images {
    width: 330px;
  }
  .section-parceiros--images .slick-next::after {
    right: -24px;
  }
}
@media (max-width: 767px) and (max-width: 360px) {
  .section-parceiros--images .slick-next::after {
    right: -2px;
  }
}
@media (max-width: 767px) {
  .section-parceiros--images .slick-prev::after {
    left: -20px;
  }
}
@media (max-width: 767px) and (max-width: 360px) {
  .section-parceiros--images .slick-prev::after {
    left: 0;
  }
}
@media (max-width: 767px) {
  .section-parceiros--images .card img {
    width: 130px;
  }
  .section-form {
    height: 57vh;
  }
  .section-form--container {
    width: 330px;
  }
  .section-form--container img {
    display: none;
  }
  .section-form .form-container {
    width: 100%;
  }
  .section-form .form-container .form-text h1 {
    font-size: 30px !important;
    text-align: center;
  }
  .section-form .form-contact input {
    width: 100% !important;
    max-width: 300px;
  }
  .section-form .form-contact .message-form {
    width: 100% !important;
    max-width: 300px;
  }
  .section-form .form-contact .input-socials .button-form {
    margin-right: 20px;
  }
  .section-form .form-contact .input-socials .socials img {
    display: flex;
  }
  .footer-section .first-footer {
    padding: 0 10px;
    width: 330px;
    flex-direction: column;
  }
  .footer-section .first-footer .footer-logo {
    display: flex;
    align-items: center;
  }
  .footer-section .first-footer .footer-institucional {
    margin-top: 15px;
  }
  .footer-section .first-footer .footer-socials {
    margin-top: 15px;
  }
  .footer-section .first-footer .footer-socials .socials-icon {
    justify-content: flex-start;
    gap: 20px;
  }
  .footer-section .first-footer .footer-info img {
    width: 160px;
  }
  .footer-section .second-footer {
    margin-top: 10px;
  }
  .footer-section .second-footer p {
    padding: 10px;
  }
}
@media (max-width: 360px) {
  .navbar--links .links--navigation.active {
    top: 62px !important;
  }
  .section-form .form-contact .input-custom {
    width: 320px !important;
  }
  .section-form .form-contact input {
    width: 143px !important;
  }
  .section-form .form-contact .message-form {
    width: 319px !important;
  }
  .third-section--cards .card .cards-info ul {
    width: 267px !important;
  }
  .second-section--info .text-socials .second-section-logo img {
    width: 120px;
    max-width: 120px;
  }
}
.fade-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1300px) and (max-width: 1500px) {
  .one-section--container {
    width: 1247px;
  }
  .one-section--info .info--text h1 {
    font-size: 44px;
  }
  .one-section--info .info--text p {
    font-size: 18px;
  }
  .one-section--image img {
    width: 490px;
  }
  .second-section {
    height: 120vh;
  }
  .second-section--info .info--image img {
    margin-left: 40px;
  }
  .second-section--title h1 {
    font-size: 40px;
  }
  .second-section--info .text-socials .text p {
    font-size: 16px;
  }
  .third-section {
    height: 120vh;
  }
  .third-section--title h1 {
    font-size: 40px;
  }
  .third-section--title p {
    font-size: 16px;
  }
  .section-products--text h1 {
    font-size: 40px;
  }
  .section-products--text p {
    font-size: 16px;
  }
  .section-products--cards .slick-prev::after {
    left: 22px;
  }
  .section-products--cards {
    width: 1290px;
  }
  .section-products--cards .card p {
    line-height: 22px;
  }
  .section-products--cards .slick-next::after {
    right: 18px;
  }
  .section-parceiros {
    height: 65vh;
  }
  .section-parceiros--text h1 {
    font-size: 40px;
  }
  .section-parceiros--images {
    width: 1290px;
  }
  .section-parceiros--images .card img {
    width: 150px;
  }
  .section-parceiros--images .slick-next::after {
    right: 8px;
  }
  .section-parceiros--images .slick-prev::after {
    left: 8px;
  }
  .section-form {
    height: 90vh;
  }
  .footer-section .first-footer {
    width: 1270px;
  }
}/*# sourceMappingURL=styles.css.map */