@import url("https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("../fonts/icones/css/icones.css");
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: "Prompt", serif;
  font-weight: 500;
  line-height: 1.2;
}

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

ol {
  margin: 0;
  margin-left: 0;
  padding: 0;
}
ol li {
  list-style-position: inside;
}

ul:not(:last-child), ol:not(:last-child) {
  margin-bottom: 16px;
}
ul li + li, ol li + li {
  margin-top: 16px;
}

p {
  font-size: inherit;
  line-height: 1.3;
  margin-bottom: 0;
}

.row {
  max-width: 120rem;
}

.font-xs {
  font-size: 24px;
}
@media (max-width: 678px) {
  .font-xs {
    font-size: 14.64px;
  }
}

.font-sm {
  font-size: 32px;
}
@media (max-width: 678px) {
  .font-sm {
    font-size: 19.52px;
  }
}

.font-lg {
  font-size: 40px;
}
@media (max-width: 678px) {
  .font-lg {
    font-size: 24.4px;
  }
}

.font-base {
  font-family: "Prompt", sans-serif;
}

.font-display {
  font-family: "Prompt", serif;
}

body {
  background-color: #fff;
  color: #636466;
  padding-bottom: 32px;
}

h2 {
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 16px;
}
@media (max-width: 678px) {
  h2 {
    font-size: 2.4rem;
  }
}

p:not(:last-child) {
  margin-bottom: 1.6rem;
}

header {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  padding: 16px 24px;
  background: #084A87;
  z-index: 999;
  font-family: "Prompt", serif;
  color: #fff;
}
@media (max-width: 678px) {
  header {
    padding: 16px;
    top: 0;
    width: 100%;
    border-radius: 0;
  }
}
header .custom-logo-link {
  position: relative;
  z-index: 500;
}
header .custom-logo {
  width: 104px;
  transition: all 300ms ease-in;
}
header.scrolling {
  background-color: #C6986E;
  color: #1C1C1C;
  padding: 20px 120px;
}
header.scrolling .custom-logo {
  width: 80px;
}
header.scrolling .menu-content a:hover {
  color: #1C1C1C;
}
header .menu-toggle {
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  padding: 8px;
  z-index: 999;
  position: relative;
  transition: 300ms;
}
header .menu-toggle span {
  width: 100%;
  background-color: #fff;
  height: 2px;
  position: relative;
  display: block;
  transition: 300ms;
}
header .menu-toggle span::before, header .menu-toggle span::after {
  content: "";
  width: 100%;
  background-color: #fff;
  height: 2px;
  display: block;
  position: absolute;
  transition: 300ms;
}
header .menu-toggle span::before {
  bottom: 100%;
  margin-bottom: 8px;
}
header .menu-toggle span::after {
  top: 100%;
  margin-top: 8px;
}
header .menu-toggle.menu-open {
  border-color: #F0F0F0;
}
header .menu-toggle.menu-open span,
header .menu-toggle.menu-open span::before,
header .menu-toggle.menu-open span::after {
  background-color: #F0F0F0;
}
header .menu-toggle.menu-open span {
  background: transparent;
}
header .menu-toggle.menu-open span::before {
  transform: rotate(-45deg);
  bottom: 0;
  margin: 0;
}
header .menu-toggle.menu-open span::after {
  transform: rotate(45deg);
  top: 0;
  margin: 0;
}
header .menu-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
header .menu-content ul li {
  margin: 0;
}
header .menu-content ul li a {
  color: #1C1C1C;
  font-size: 1.2rem;
  font-weight: 500;
  color: inherit;
}
header .menu-content ul li a:hover, header .menu-content ul li a:target {
  text-decoration: underline;
  color: #C6986E;
}
@media (max-width: 678px) {
  header .menu-content ul li a {
    font-size: 16px;
  }
}
header .menu-content .btn {
  margin-top: 24px;
}
@media (max-width: 678px) {
  header .menu-content {
    position: fixed;
    top: 0;
    left: 100%;
    padding: 24px;
    padding-top: 80px;
    width: 100%;
    height: 100dvh;
    background-color: #084A87;
    transition: 500ms;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  header .menu-content ul {
    display: block;
  }
  header .menu-content ul li a {
    color: #fff;
  }
  header .menu-content.open {
    left: 0;
  }
  header .menu-content .contact-info {
    font-size: 14px;
  }
  header .menu-content .contact-info .contact a {
    color: #fff;
    text-decoration: underline;
  }
  header .menu-content .contact-info .social {
    margin-top: 16px;
  }
  header .menu-content .contact-info .social ul {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
  }
  header .menu-content .contact-info .social ul li {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .menu-content .contact-info .social ul li img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 678px) {
  .row {
    gap: 24px 0;
  }
}

section {
  padding: 80px calc((100% - 1200px) / 2);
  font-size: 2rem;
}
@media (max-width: 1200px) {
  section {
    padding: 50px 16px;
  }
}
@media (max-width: 678px) {
  section {
    font-size: 1.8rem;
    padding: 80px 16px;
  }
}
section.dark {
  background-color: #1C1C1C;
  color: #F0F0F0;
}

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background-position: right top;
  background-size: cover;
  position: relative;
  padding-top: 180px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding-top: 140px;
  }
  .hero::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.hero .content {
  max-width: 592px;
  width: 60%;
  position: relative;
}
@media (max-width: 1200px) {
  .hero .content {
    max-width: 480px;
  }
}
@media (max-width: 1024px) {
  .hero .content {
    width: 100%;
  }
}
.hero img {
  position: absolute;
  width: 35%;
  max-height: calc(100vh - 200px);
  object-fit: contain;
  left: 50%;
  bottom: 0;
}
@media (max-width: 1024px) {
  .hero img {
    display: block;
    position: static;
    width: 100%;
  }
}
.hero h1 {
  max-width: 402px;
  font-size: 3.2rem;
  font-weight: 500;
  font-family: "Prompt", sans-serif;
  margin-bottom: 24px;
}
@media (max-width: 678px) {
  .hero h1 {
    font-size: 2.4rem;
  }
}
.hero .btn {
  margin-top: 16px;
}

.chamada {
  height: 700px;
  font-size: 3.2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 678px) {
  .chamada {
    font-size: 1.8rem;
    height: auto;
    margin-top: 0;
    padding-top: 0;
  }
}
.chamada .container {
  max-width: 656px;
}

.uniblue {
  padding-top: 80px;
}
@media (min-width: 678px) and (max-width: 1600px) {
  .uniblue {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 678px) {
  .uniblue {
    padding-top: 0;
  }
}
.uniblue .item {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .uniblue .item {
    flex-direction: column;
    gap: 32px;
    justify-content: center;
  }
}
.uniblue .item .text {
  max-width: 592px;
  padding: 0 48px;
}
@media (max-width: 1024px) {
  .uniblue .item .text {
    max-width: 100%;
    flex: 1;
  }
}
@media (max-width: 678px) {
  .uniblue .item .text {
    padding: 0 16px;
  }
}
@media (max-width: 1024px) {
  .uniblue .item .image {
    width: 100%;
    order: 0;
  }
  .uniblue .item .image img {
    width: 100%;
    object-fit: cover;
  }
}
.uniblue .item:not(:first-child) {
  margin-top: 120px;
}
@media (min-width: 678px) and (max-width: 1024px) {
  .uniblue .item:not(:first-child) {
    margin-top: 32px;
  }
}

.vantagens {
  background: #159945;
  color: #fff;
}
@media (max-width: 678px) {
  .vantagens {
    padding-top: 80px;
  }
}
.vantagens h2 {
  text-align: center;
  margin-bottom: 24px;
}
.vantagens h2 strong {
  font-weight: 600;
}
.vantagens .item {
  background-color: #fff;
  color: #636466;
  padding: 24px 40px;
  border-radius: 16px;
  font-size: 1.8rem;
  height: 100%;
}
.vantagens .item h3 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: #159945;
  font-weight: 700;
}
.vantagens .swiper .swiper-pagination-bullet {
  background-color: #fff;
}
.vantagens .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #084A87;
}

.evolucao {
  padding-top: 120px;
  background-color: #084A87;
  color: #fff;
}
@media (max-width: 1600px) {
  .evolucao {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 678px) {
  .evolucao {
    padding-top: 80px;
  }
}
.evolucao .container {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  .evolucao .container {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .evolucao .container .mapa {
    order: 1;
  }
}
.evolucao .itens {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 600px;
  gap: 24px;
}
@media (max-width: 678px) {
  .evolucao .itens {
    flex-direction: row;
    height: auto;
    padding: 0 16px;
  }
}
@media (max-width: 678px) {
  .evolucao .itens h2 br {
    display: none;
  }
}
.evolucao .card-item {
  background-color: #fff;
  color: #636466;
  border-radius: 16px;
  font-size: 16px;
  padding: 24px 32px;
  text-align: center;
  width: 220px;
}
@media (max-width: 678px) {
  .evolucao .card-item {
    width: 100%;
  }
  .evolucao .card-item br {
    display: none;
  }
}
.evolucao .card-item p:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 678px) {
  .evolucao .card-item:nth-child(6) {
    margin-top: 120px;
  }
}
.evolucao .card-item strong {
  color: #084A87;
}

.clientes {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.clientes h2 {
  text-align: center;
  margin-bottom: 40px;
}
.clientes .item {
  background-color: #F5F5F5;
  border-radius: 16px;
  font-size: 14px;
  padding: 24px;
  height: 100%;
}
.clientes .item .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.clientes .item .info {
  margin-top: 32px;
}
.clientes .item .info h5 {
  font-weight: bold;
}
.clientes .item .info p:last-child {
  color: #159945;
  font-weight: bold;
}

.swiper {
  padding-bottom: 80px;
}
.swiper .swiper-slide {
  height: auto;
}
.swiper .swiper-pagination-bullet {
  width: 56px;
  height: 4px;
  background-color: #F5F5F5;
  border-radius: 8px;
  opacity: 1;
}
.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #159945;
}

footer {
  width: calc(100% - 32px);
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #084A87;
  color: #fff;
  font-size: 12px;
}
@media (max-width: 678px) {
  footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
}
footer .contact-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 436px;
  width: 100%;
}
@media (max-width: 678px) {
  footer .contact-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
}
footer .contact-info a {
  color: #fff;
  text-decoration: underline;
}
footer .contact-info a:hover {
  color: #fff;
}
footer .social {
  display: flex;
  gap: 10px;
  justify-content: center;
}
footer .social ul {
  display: flex;
  gap: 4px;
}
footer .social ul li + li {
  margin-top: 0;
}
footer .social a {
  text-decoration: none;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #064179;
  border-radius: 2px;
}

.featherlight .featherlight-content {
  border-radius: 16px;
  background-color: #C6986E;
  color: #1C1C1C;
  padding: 40px;
  max-width: 430px;
}
.featherlight .featherlight-content .featherlight-inner {
  display: flex;
  flex-direction: column;
}
.featherlight .featherlight-content h4 {
  font-size: 3.2rem;
  margin-bottom: 32px;
  text-transform: uppercase;
  text-align: center;
}
.featherlight .featherlight-content .btn {
  color: #C6986E;
}
.featherlight .featherlight-content .btn:first-of-type {
  margin-bottom: 8px;
}

.accordion {
  background-color: transparent;
}
.accordion .accordion-item,
.accordion .accordion-title,
.accordion .accordion-content {
  background-color: transparent;
  border: 0;
}
.accordion .accordion-title {
  font-size: 40px;
  color: #F0F0F0;
  text-transform: uppercase;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 678px) {
  .accordion .accordion-title {
    font-size: 20px;
  }
}
.accordion .accordion-title::before {
  right: 0;
  content: "\e810";
  font-size: 20px;
  font-family: "icones";
  transition: 300ms;
}
.accordion .accordion-item {
  border-bottom: 1px solid #F0F0F0;
}
.accordion .accordion-item.is-active .accordion-title::before {
  transform: rotate(180deg);
}
.accordion .accordion-item .accordion-content {
  color: #F0F0F0;
  padding: 0;
  padding-bottom: 58px;
}
.accordion .accordion-item .accordion-content ul {
  margin-left: 0;
  columns: 2;
}

.btn {
  display: inline-block;
  padding: 16px 24px;
  background-color: #159945;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 8px;
}
.btn:hover {
  text-decoration: none;
  color: #fff;
}
.btn.btn__secondary {
  background-color: #084A87;
}
.btn.btn__outline {
  border-radius: 8px;
  background-color: transparent;
  color: #1C1C1C;
  border: 1px solid #1C1C1C;
  padding: 22px 34px;
}

.clients-carousel .slick-track {
  margin: 0 -16px;
}
.clients-carousel .slick-list {
  overflow: visible;
}
.clients-carousel .slick-list .slick-slide {
  background-color: #E9E9E9;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
  border-radius: 16px;
  overflow: hidden;
}
.clients-carousel .slick-list .slick-slide img {
  object-fit: contain;
}

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