@import "https://fonts.cdnfonts.com/css/akrobat";
@media only screen and (min-width: 801px) {
  .mobile-only {
    display: none !important;
  }
}

@media only screen and (max-width: 800px) {
  .desktop-only {
    display: none !important;
  }
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.search .banner,
.search .content,
.blog .banner,
.blog .content {
  display: none;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

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

body {
  box-sizing: border-box;
  position: relative;
  font-family: "Akrobat", sans-serif;
}

main {
  position: relative;
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

.wrapper {
  margin: 0 auto;
  width: 90%;
  max-width: 117.8rem;
}

h2 {
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 5rem;
  line-height: 1;
  text-transform: uppercase;
  color: #1f6883;
}

@media only screen and (max-width: 900px) {
  h2 {
    font-size: 4.5rem;
  }
}

p {
  font-family: "Akrobat Light", sans-serif;
  font-size: 1.9rem;
  line-height: 3.3rem;
  color: #414042;
}

@media only screen and (max-width: 900px) {
  p {
    font-size: 1.5rem;
    line-height: 2.1rem;
  }
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f6883;
}

.footer__logo {
  max-width: 36.1rem;
  width: 90%;
  height: 2.8rem;
  margin: 5.1rem 0 6.4rem;
}

.footer__logo img {
  -o-object-fit: contain;
  object-fit: contain;
}

.header {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.header__top {
  font-size: 0;
  margin: 1.9rem 7rem;
  max-width: 100%;
}

.header__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7.4rem;
  background-color: #336980;
  color: #fff;
}

.header__menu {
  display: flex;
  gap: 3.5rem;
  text-transform: uppercase;
  font-size: 1.7rem;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

@media only screen and (max-width: 900px) {
  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    background-color: #336980;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.header__menu--active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  position: relative;
}

.header__social a,
.header__social button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2rem;
}

.header__social a img,
.header__social button img {
  height: 2.2rem;
}

.header__whatsapp::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3rem;
  height: 3rem;
  width: 3rem;
}

.header__whatsapp:hover > .header__options {
  opacity: 1;
  visibility: visible;
}

.header__whatsapp a {
  transition: 0.3s ease-in-out;
}

.header__whatsapp a:hover {
  color: #336980;
}

.header__options {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: -9rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background-color: #fff;
  border-radius: 3rem;
  width: 20rem;
  font-size: 1.7rem;
  font-family: "Akrobat", sans-serif;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  z-index: 9;
  line-height: 2rem;
}

.header__mobile {
  display: none;
  position: relative;
  width: 3rem;
  height: 3rem;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

@media only screen and (max-width: 900px) {
  .header__mobile {
    display: block;
  }
}

.header__mobile span {
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: 0.3s ease-in-out;
}

.header__mobile span:nth-of-type(1) {
  top: 0;
}

.header__mobile span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__mobile span:nth-of-type(3) {
  bottom: 0;
}

.header__mobile--active {
  position: fixed;
  top: 2rem;
  right: 2rem;
}

.header__mobile--active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.header__mobile--active span:nth-of-type(2) {
  opacity: 0;
  visibility: hidden;
}

.header__mobile--active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.slick-arrow {
  position: absolute;
  top: 50%;
  width: 4.4rem;
  height: 4.4rem;
  font-size: 0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-color: #231f20;
  z-index: 1;
}

.slick-arrow::after {
  font-size: 2.5rem;
  color: #fff;
}

.slick-prev {
  left: 6.52%;
}

.slick-prev::after {
  content: "<";
}

.slick-next {
  right: 6.52%;
}

.slick-next::after {
  content: ">";
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  list-style: none;
}

.slick-dots button {
  width: 1.2rem;
  height: 1.2rem;
  font-size: 0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: block;
}

.slick-active button {
  background-color: #336980;
}

.banner {
  height: 50.4rem;
  position: relative;
}

.banner:hover .slick-arrow {
  opacity: 1;
}

.banner figure {
  display: flex !important;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 50.4rem;
  overflow: hidden;
}

.banner figure video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 50.4vh;
}

@media only screen and (max-width: 900px) {
  .banner figure video {
    top: 0;
    transform: translate(-50%, 0);
  }
}

.banner article {
  max-width: 40rem;
  position: absolute;
  opacity: 0;
  transition: 0.8s ease-in;
}

.banner article p {
  font-family: "Akrobat Bold", sans-serif;
  font-size: 3.5rem;
  line-height: 4.1rem;
  color: #fff;
}

.banner article p:not(:has(> strong)) {
  padding: 0.8rem 2.3rem;
}

.banner article strong {
  background-color: #1b5ba8;
  padding: 0.8rem 2.3rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.banner article strong:not(:last-of-type) {
  margin-bottom: 0.4rem;
}

.banner .slick-current article {
  opacity: 1;
}

.banner .slick-arrow {
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.banner .slick-dots {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
}

.banner .slick-dots:has(> li:only-child) {
  display: none;
}

.banner__tag {
  position: absolute;
  top: 0;
  left: auto;
  z-index: 1;
  width: 19rem;
  height: 19.8rem;
  border-radius: 0 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 900px) {
  .banner__tag {
    width: 10rem;
    height: 10.8rem;
  }
}

.banner__tag img {
  max-width: 10.2rem;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 900px) {
  .banner__tag img {
    max-width: 4rem;
  }
}

.banner__tag h1 {
  font-size: 2.5rem;
  font-family: "Akrobat ExtraBold", sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin-top: 2rem;
}

@media only screen and (max-width: 900px) {
  .banner__tag h1 {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

.faleconosco {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 8.5rem 0;
}

@media only screen and (max-width: 900px) {
  .faleconosco {
    padding: 8.5rem 0 !important;
    justify-content: center;
  }
}

.faleconosco .wpcf7 {
  max-width: 52.9rem;
  width: 90%;
}

.faleconosco .wpcf7 p:first-of-type {
  margin-bottom: 2.9rem;
}

.faleconosco .wpcf7 p:not(:first-of-type) {
  margin-bottom: 1.2rem;
}

.faleconosco .wpcf7 p label {
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 1.7rem;
  color: #414042;
}

.faleconosco .wpcf7 p label span {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.faleconosco input:not(input[type="submit"]),
.faleconosco textarea:not(input[type="submit"]) {
  width: 100%;
  height: 4.1rem;
  border: 0.05rem solid #414042;
  outline: none;
  padding: 1rem;
  font-family: "Akrobat Light", sans-serif;
  font-size: 1.5rem;
  color: #414042;
}

.faleconosco input[type="submit"],
.faleconosco textarea[type="submit"] {
  width: 8.5rem;
  height: 3.6rem;
  border: none;
  background-color: #225088;
  font-size: 1.8rem;
  font-family: "Akrobat ExtraBold", sans-serif;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  margin-bottom: 5.6rem;
}

.faleconosco textarea {
  min-height: 11.9rem;
  resize: none;
}

.faleconosco__contato {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  max-width: 53.7rem;
  width: 90%;
  background-color: #225088;
  padding: 3.9rem 0 3.9rem 6.6rem;
  font-size: 1.9rem;
  font-family: "Akrobat Bold", sans-serif;
  line-height: 2.4rem;
  color: #fff;
}

@media only screen and (max-width: 900px) {
  .faleconosco__contato {
    font-size: 1.5rem;
    line-height: 2.1rem;
    padding: 3rem;
    margin-left: 0;
  }
}

.faleconosco__contato span {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  margin-bottom: 0.8rem;
  margin-left: 0.5rem;
}

@media only screen and (max-width: 900px) {
  .faleconosco__contato span {
    flex-direction: column;
    margin-left: 0;
    gap: 1rem !important;
  }
}

.faleconosco__contato span:first-of-type {
  gap: 2.5rem;
  margin-left: 0;
}

.faleconosco__redes {
  display: flex;
  flex-wrap: wrap;
  margin-left: 6.2rem;
}

@media only screen and (max-width: 900px) {
  .faleconosco__redes {
    justify-content: center;
    text-align: center;
    margin: 2rem 0 0 0;
  }
}

.faleconosco__redes p {
  width: 100%;
  margin-bottom: 3.2rem;
  color: #fff;
}

@media only screen and (max-width: 900px) {
  .faleconosco__redes p {
    margin-bottom: 1.5rem;
  }
}

.faleconosco__redes > a,
.faleconosco__redes button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  position: relative;
  max-width: 2.3rem;
  width: 100%;
}

.faleconosco__redes > a:not(:last-of-type),
.faleconosco__redes button:not(:last-of-type) {
  margin-right: 2.5rem;
}

.faleconosco__redes > a img,
.faleconosco__redes button img {
  display: block;
  max-height: 2.3rem;
}

.faleconosco__redes button {
  margin-left: 2.5rem;
}

.faleconosco__whatsapp::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3rem;
  height: 3rem;
  width: 10rem;
}

.faleconosco__whatsapp:hover > .faleconosco__options {
  opacity: 1;
  visibility: visible;
}

.faleconosco__whatsapp a {
  transition: 0.3s ease-in-out;
}

.faleconosco__whatsapp a:hover {
  color: #336980;
}

.faleconosco__options {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: -9rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background-color: #fff;
  border-radius: 3rem;
  width: 20rem;
  font-size: 1.7rem;
  font-family: "Akrobat", sans-serif;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  z-index: 9;
  line-height: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faleconosco__options a {
  width: 100%;
}

.trabalhe-conosco--section {
  background-color: #225088;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 900px) {
  .trabalhe-conosco--section {
    padding-bottom: 10rem !important;
    justify-content: center;
  }
}

.trabalhe-conosco--section h2 {
  font-family: "Akrobat ExtraBold", sans-serif;
  color: #fff;
  line-height: 1;
}

.trabalhe-conosco--section h2 ~ p {
  font-family: "Akrobat Bold", sans-serif;
  color: #fff;
  margin: 3rem 0 4.4rem;
}

.trabalhe-conosco--section .wpcf7 {
  max-width: 53rem;
  min-width: 53rem;
  width: 100%;
  margin-top: 7rem;
}

@media only screen and (max-width: 900px) {
  .trabalhe-conosco--section .wpcf7 {
    min-width: initial;
  }
}

.trabalhe-conosco--section .wpcf7 label {
  display: flex;
  flex-direction: column;
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 1.7rem;
  color: #f1f3f6;
  margin-bottom: 1.6rem;
}

.trabalhe-conosco--section .wpcf7 label input:not(input[type="file"]),
.trabalhe-conosco--section .wpcf7 label select:not(input[type="file"]) {
  margin-top: 1rem;
  border: 0.1rem solid #fff;
  background-color: rgba(0, 0, 0, 0);
  outline: none;
  color: #fff;
  padding: 0 1.5rem;
  height: 4.1rem;
  width: 100%;
}

.trabalhe-conosco--section .wpcf7 label select {
  color: #fff;
}

.trabalhe-conosco--section .wpcf7 label select option {
  background-color: #225088;
}

.trabalhe-conosco--section .wpcf7 .wpcf7-submit {
  width: 19.7rem;
  height: 4.3rem;
  background-color: #fff;
  border: none;
  margin-top: 5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 1.8rem;
  color: #225088;
  text-transform: uppercase;
}

.trabalhe-conosco__vagas {
  max-width: 39.8rem;
  width: 100%;
}

.trabalhe-conosco__box {
  border-radius: 2.2rem;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 3.2rem 4.1rem;
  margin-top: 2.5rem;
}

.trabalhe-conosco__box a {
  margin-bottom: 2.8rem;
}

.trabalhe-conosco__box h3 {
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 1.9rem;
  color: #fff;
  margin-bottom: 1rem;
}

.trabalhe-conosco__box p {
  color: #fff;
}

.trabalhe-conosco__box .slick-dots {
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
}

.trabalhe-conosco--footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #225088;
  padding: 7.1rem 0;
}

.trabalhe-conosco--footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 2.1rem;
  text-transform: uppercase;
  color: #225088;
  background-color: #fff;
  width: 23.9rem;
  height: 5.2rem;
}

.content__banner {
  max-width: 86.8rem;
  width: 90%;
  margin: -5.3rem auto 0;
}

.content__banner figure {
  width: 100%;
  height: 29.9rem;
  overflow: hidden;
  border-radius: 1rem;
}

@media only screen and (max-width: 900px) {
  .content__banner figure {
    height: 20rem;
  }
}

@media only screen and (max-width: 500px) {
  .content__banner figure {
    height: 15rem;
  }
}

.content__banner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.content__banner .slick-list {
  border-radius: 1rem;
  border: 0.8rem solid #fff;
  overflow: hidden;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.25);
}

.content__banner .slick-dots {
  margin-top: 2.6rem;
}

.content__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  max-width: 86.8rem;
  width: 90%;
  margin: 5rem auto 8rem;
}

@media only screen and (max-width: 840px) {
  .content__content {
    justify-content: center;
    row-gap: 3rem;
  }
}

.content__content figure {
  max-width: 24.4rem;
  width: 100%;
}

.content__content figure img {
  width: 100%;
  height: auto;
}

.content__content article {
  max-width: 51.3rem;
  width: 100%;
  font-size: 1.9rem;
  line-height: 2.5rem;
  color: #6d6c6e;
  text-align: left;
}

@media only screen and (max-width: 900px) {
  .content__content article {
    font-size: 1.5rem;
    line-height: 2.1rem;
  }
}

.content__content article:only-child {
  max-width: 100%;
}

.content__content article strong {
  font-family: "Akrobat Bold", sans-serif;
}

.content__content article img {
  margin: 5rem auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.content__bordao {
  display: block;
  width: 100%;
  padding: 2rem;
  font-size: 3.9rem;
  font-family: "Akrobat ExtraBold", sans-serif;
  letter-spacing: 0.1rem;
  color: #fff;
  text-align: center;
}

.regioes-atendidas {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ececec;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.regioes-atendidas article {
  max-width: 42.2rem;
  width: 100%;
}

.regioes-atendidas article h3 {
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 3.5rem;
  margin: 5.2rem 0 2.9rem;
  color: #1f6883;
  display: flex;
  align-items: center;
}

.regioes-atendidas article h3::before {
  content: "";
  background-image: url("../img/mapa.png");
  background-size: contain;
  width: 5.1rem;
  height: 4.9rem;
  margin-right: 1.7rem;
}

.regioes-atendidas article p {
  font-family: inherit;
  line-height: 2.9rem;
  margin-left: 6.8rem;
  padding: 1rem 0;
  border-bottom: 0.1rem solid #414042;
}

.regioes-atendidas article p strong {
  font-family: "Akrobat ExtraBold", sans-serif;
}

@media only screen and (max-width: 900px) {
  .regioes-atendidas article > p {
    margin: 0 auto 2.5rem;
  }
}

.regioes-atendidas__accordion {
  margin: 2.5rem 0 0 6.8rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media only screen and (max-width: 900px) {
  .regioes-atendidas__accordion {
    margin: 0 auto;
  }
}

.regioes-atendidas__accordion input[type="search"] {
  height: 4rem;
  outline: none;
  padding: 0 2rem;
  width: 30.7rem;
  border: 0.05rem solid #414042;
}

.regioes-atendidas__accordion > span {
  color: red;
  font-size: 1.5rem;
  font-family: "Akrobat ExtraBold", sans-serif;
}

.regioes-atendidas__tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 30.7rem;
}

@media only screen and (max-width: 900px) {
  .regioes-atendidas__tab {
    width: 25rem;
  }
}

.regioes-atendidas__tab span {
  border: 0.05rem solid #414042;
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  text-transform: uppercase;
  padding: 1.6rem;
  color: #414042;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 3.6rem;
}

.regioes-atendidas__tab span:first-of-type {
  width: 4rem;
  justify-content: center;
}

@media only screen and (max-width: 900px) {
  .regioes-atendidas__tab span:first-of-type {
    width: 3rem;
  }
}

.regioes-atendidas__tab span:last-of-type {
  width: 26.5rem;
}

@media only screen and (max-width: 900px) {
  .regioes-atendidas__tab span:last-of-type {
    width: 20rem;
  }
}

.regioes-atendidas__state {
  font-size: 2.2rem;
  text-align: center;
  font-family: "Akrobat ExtraBold", sans-serif;
  padding-top: 1rem;
}

.regioes-atendidas__content {
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  text-transform: capitalize;
  padding-right: 2rem;
  position: relative;
}

.regioes-atendidas__content--active {
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  visibility: visible;
  max-height: 20rem;
  overflow-y: auto;
  margin: 2rem 0;
}

.regioes-atendidas__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media only screen and (max-width: 940px) {
  .regioes-atendidas__container {
    justify-content: center;
    row-gap: 5rem;
    margin-top: 5rem;
  }
}

.regioes-atendidas__mapa {
  max-width: 42.7rem;
  width: 100%;
  height: 42.7rem;
  position: relative;
}

.regioes-atendidas__mapa svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.regioes-atendidas__mapa svg path {
  transition: 0.3s ease-in-out;
}

.regioes-atendidas__mapa span {
  position: absolute;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  color: #fff;
  opacity: 0.5;
  font-size: 5rem;
}

.info {
  cursor: pointer;
}

.info-hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

.info-active {
  opacity: 1 !important;
  visibility: visible !important;
}

.cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 86.7rem;
  width: 90%;
  margin: 0 auto;
  transform: translateY(-1.2rem);
}

@media only screen and (max-width: 900px) {
  .cards {
    justify-content: center;
    gap: 3rem;
  }
}

.cards__box {
  width: 26.4rem;
  height: 26.3rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cards__box--logistica {
  background-color: #336980;
}

.cards__box--comercial {
  background-color: #225088;
}

.cards__box--broker {
  background-color: #a3a3a3;
}

.cards__box span {
  margin: 1.2rem auto 2.5rem;
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 2.5rem;
  color: #fff;
  text-transform: uppercase;
}

.cards__box a {
  max-width: 14.6rem;
  width: 100%;
  height: 3.5rem;
  border-radius: 1.6rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 1.9rem;
  color: #414042;
  text-transform: uppercase;
}

.quemsomos {
  position: relative;
  background-color: #ebebec;
  margin-top: 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.quemsomos h2 {
  color: #fff;
}

.quemsomos__text {
  max-width: 45rem;
  width: 100%;
  background-image: url("data:image/png;base64,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");
  background-color: #214f87;
  font-family: "Akrobat Light", sans-serif;
  font-size: 1.7rem;
  color: #fff;
  padding: 8rem 2rem 21.7rem 3rem;
  white-space: pre-line;
  transform: translateY(-1.7rem);
}

@media only screen and (max-width: 1280px) {
  .quemsomos__text {
    max-width: 100%;
    padding: 5rem 3rem;
  }
}

.quemsomos__text p {
  color: #fff;
}

.quemsomos__video {
  margin-top: 12.2rem;
  max-width: 64.6rem;
  width: 100%;
  max-height: 39.7rem;
  aspect-ratio: 16/9;
  position: relative;
}

@media only screen and (max-width: 1220px) {
  .quemsomos__video {
    margin: 5rem auto;
  }
}

.quemsomos__video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transition: 0.3s ease-in-out;
  opacity: 1;
  visibility: visible;
}

.quemsomos__video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: 9.9rem;
  height: 9.9rem;
  background-image: url("../img/play-btn.png");
  transition: 0.3s ease-in-out;
  opacity: 1;
  visibility: visible;
}

.quemsomos__video--active::before,
.quemsomos__video--active::after {
  opacity: 0;
  visibility: hidden;
}

.quemsomos__video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.quemsomos__bar {
  position: absolute;
  left: 0;
  bottom: 6.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  min-height: 15rem;
  background-color: #fff;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 1220px) {
  .quemsomos__bar {
    position: relative;
    left: initial;
    bottom: initial;
  }
}

.quemsomos__box {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: default;
  padding: 3rem;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}

.quemsomos__box:hover {
  background-color: #336980;
}

.quemsomos__box:hover article {
  color: #fff;
}

.quemsomos__box:hover article p {
  color: #fff;
}

.quemsomos__box:hover figure img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(93deg) brightness(103%) contrast(103%);
}

.quemsomos__box article {
  font-size: 1.5rem;
  font-family: "Akrobat Bold", sans-serif;
  text-align: right;
  line-height: 1;
  transition: 0.3s ease-in-out;
}

.quemsomos__box article p {
  line-height: 1;
  transition: 0.3s ease-in-out;
}

.quemsomos__box article p:first-of-type {
  margin-bottom: 0.5rem;
}

.quemsomos__box article p:last-of-type strong {
  font-size: 3rem;
}

.quemsomos__box article p strong {
  font-size: 4.2rem;
  font-family: "Akrobat ExtraBold", sans-serif;
  line-height: 3rem;
  display: block;
}

.quemsomos__box figure img {
  transition: 0.3s ease-in-out;
}

.fornecedores h2 {
  margin-top: 4.5rem;
}

.fornecedores__container {
  margin: 4.8rem 0 5.4rem;
}

.fornecedores__container .slick-track {
  display: flex;
  align-items: center;
}

.fornecedores__container .slick-dots {
  margin: 6.4rem 0 0;
}

.fornecedores__container figure {
  filter: grayscale(1);
  transition: 0.3s ease-in-out;
  height: 10rem;
  margin: 0 3rem;
}

.fornecedores__container figure:hover {
  filter: grayscale(0);
}

.fornecedores__container figure:hover span {
  opacity: 1;
  visibility: visible;
}

.fornecedores__container figure img {
  margin: 0 auto;
  height: 100%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.fornecedores__container figure span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 79, 135, 0.5);
  -webkit-backdrop-filter: blur(0.2rem);
  backdrop-filter: blur(0.2rem);
  border-radius: 3rem;
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  transition: 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.blog-latest {
  background-color: #336980;
  padding: 5.5rem 0;
}

.blog-latest h2 {
  margin: 0 0 4.5rem;
  color: #fff;
}

.blog-latest__container {
  max-width: 130.5rem;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 1440px) {
  .blog-latest__container {
    -moz-column-gap: 3rem;
    column-gap: 3rem;
    overflow-x: auto;
    padding-bottom: 3rem;
  }
}

.blog-latest__item {
  max-width: 43rem;
  min-width: 43rem;
  width: 100%;
  color: #ebebec;
}

.blog-latest__item figure {
  width: 100%;
  height: 45.4rem;
}

.blog-latest__item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-latest__item h3 {
  margin: 3.5rem 0 3rem;
  font-size: 2.5rem;
  font-family: "Akrobat ExtraBold", sans-serif;
}

.blog-latest__item p {
  color: #fff;
}

.blog-latest > a {
  margin: 8.5rem auto 0;
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 1.8rem;
  text-align: center;
  text-transform: uppercase;
  color: #225088;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15.3rem;
  height: 4.3rem;
}

.blog__header {
  display: flex;
  justify-content: space-between;
  margin: 6.4rem auto 2.2rem;
}

.blog__header h1 {
  font-size: 5rem;
  font-family: "Akrobat ExtraBold", sans-serif;
  text-transform: uppercase;
  color: #37363f;
}

.blog__header form {
  display: flex;
  border: 0.2rem solid #37363f;
  border-radius: 2.6rem;
  overflow: hidden;
  position: relative;
  max-width: 33.2rem;
  width: 100%;
  height: 5.4rem;
}

.blog__header form input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 2.1rem;
  text-transform: uppercase;
  color: #707076;
  padding: 1rem 2rem;
  width: 100%;
  height: 5.4rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.blog__header form input[type="image"] {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.blog__highlight {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  height: 100%;
  max-height: 70.2rem;
}

.blog__highlight .blog__item {
  max-width: calc(50% - 0.5rem);
  max-height: 35rem;
  height: 34.85rem;
}

.blog__highlight .blog__item:nth-of-type(1) {
  max-height: 70.2rem;
  height: 70.2rem;
}

.blog__highlight .blog__item article {
  width: 100%;
  height: 100%;
  padding: 4.2rem;
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.blog__highlight .blog__item article::after {
  content: "";
  background-color: #000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog__highlight .blog__item article h2 {
  color: #fff;
  position: relative;
  z-index: 1;
}

.blog__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem 4.7rem;
  margin: 5rem auto;
}

.blog__list .blog__item {
  max-width: 32.8rem;
  width: 100%;
}

.blog article figure {
  margin-bottom: 1.9rem;
  width: 100%;
  height: 19.4rem;
}

.blog article figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog article h2 {
  font-size: 2.9rem;
  font-family: "Akrobat ExtraBold", sans-serif;
  line-height: 3.3rem;
  color: #37363f;
}

.blog article p {
  line-height: 2.5rem;
  font-family: "Akrobat Bold", sans-serif;
  color: #37363f;
  margin-top: 2.5rem;
}

.blog-single h1 {
  font-size: 3rem;
  margin: 5rem 0 4rem;
}

.blog-single article {
  font-size: 1.9rem;
  line-height: 2.5rem;
  margin-bottom: 10rem;
}

.blog-single article > * {
  font-size: 1.9rem;
  line-height: 2.5rem;
}

.blog-single article > img {
  width: 100%;
  height: auto;
}

.blog-single article ol {
  padding-left: 1.5rem;
}

.blog-single article ul {
  padding-left: 5rem;
}

.area-atuacao {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
  background-color: #ececec;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  row-gap: 6rem;
}

.area-atuacao article figure {
  max-width: 6.2rem;
}

.area-atuacao article h2 {
  margin: 1.6rem 0 2.9rem;
}

.area-atuacao article p {
  font-family: "Akrobat ExtraBold", sans-serif;
  color: #414042;
}

.area-atuacao > figure {
  max-width: 55.8rem;
  width: 100%;
}

.area-atuacao > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.infraestrutura {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

@media only screen and (max-width: 500px) {
  .infraestrutura {
    flex-direction: column;
    row-gap: 3rem;
  }
}

.infraestrutura article h2 {
  color: #fff;
}

.infraestrutura article h2 strong {
  color: #4bc0eb;
}

.infraestrutura article p {
  color: #fff;
}

.infraestrutura__slider {
  max-width: 56.5rem;
  width: 100% !important;
  height: 53.3rem;
}

@media only screen and (max-width: 900px) {
  .infraestrutura__slider {
    max-width: 25rem;
    height: 25rem;
  }
}

.infraestrutura__slider figure {
  max-width: 56.5rem;
  width: 100% !important;
  height: 53.5rem;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .infraestrutura__slider figure {
    max-width: 25rem;
    height: 25rem;
  }
}

.infraestrutura__slider figure::after {
  content: "";
  background-image: url("../img/mask.png");
  width: 100%;
  height: 100%;
  position: absolute;
  top: -5rem;
  left: -2rem;
}

@media only screen and (max-width: 900px) {
  .infraestrutura__slider figure::after {
    display: none;
  }
}

.infraestrutura__slider figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-mask-image: url("../img/mask1.png");
  mask-image: url("../img/mask1.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media only screen and (max-width: 900px) {
  .infraestrutura__slider figure img {
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: 50%;
    width: 100%;
    height: 100%;
  }
}

.infraestrutura__slider--nav {
  width: 100%;
  margin-top: 3.5rem;
  margin: 3.5rem auto 0;
}

@media only screen and (max-width: 900px) {
  .infraestrutura__slider--nav {
    width: 47rem;
  }
}

.infraestrutura__slider--nav .slick-track {
  display: flex;
  align-items: center;
}

.infraestrutura__slider--nav .slick-arrow {
  transform: translateY(-50%);
}

.infraestrutura__slider--nav .slick-next {
  right: -6.52%;
}

.infraestrutura__slider--nav .slick-prev {
  left: -6.52%;
}

.infraestrutura__slider--nav figure {
  max-width: 20.2rem;
  width: 100% !important;
  height: 14.1rem;
  transition: 0.3s ease-in-out;
  margin-right: 1rem;
}

@media only screen and (max-width: 900px) {
  .infraestrutura__slider--nav figure {
    max-width: 15rem;
    height: 10rem;
  }
}

.infraestrutura__slider--nav figure.slick-current {
  max-width: 23.5rem;
  height: 15.7rem;
}

@media only screen and (max-width: 900px) {
  .infraestrutura__slider--nav figure.slick-current {
    max-width: 18rem;
    height: 11rem;
  }
}

.infraestrutura__slider--nav figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.evolucao {
  padding: 4.5rem 0;
}

.evolucao h2 {
  color: #414042;
}

.evolucao figure {
  max-width: 100%;
  width: 100%;
  margin-top: 2rem;
}

.evolucao figure img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.resultados {
  background-color: #003d53;
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.resultados h2 {
  color: #fff;
  margin-bottom: 3.3rem;
}

.resultados p {
  color: #fff;
  line-height: 2.5rem;
}

.resultados figure {
  max-width: 85.7rem;
  width: 100%;
  margin: 4.5rem auto 0;
}

.resultados figure img {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  -o-object-fit: contain;
  object-fit: contain;
}

.resultados figure iframe {
  width: 100%;
}

.resultados-mao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 2rem !important;
  background-color: #eaeaea;
}

@media only screen and (max-width: 900px) {
  .resultados-mao {
    justify-content: center;
  }
}

.resultados-mao p {
  max-width: 42.2rem;
  width: 100%;
  margin-top: 2.4rem;
}

.resultados-mao figure {
  display: flex;
}

.merchandising {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
  background-color: #075c7b;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 1100px) {
  .merchandising {
    justify-content: center;
    row-gap: 3rem;
  }
}

.merchandising article {
  max-width: 41.9rem;
  width: 100%;
}

.merchandising article h2 {
  color: #fff;
  margin-bottom: 3rem;
  word-break: break-all;
}

.merchandising article p {
  color: #fff;
}

.merchandising__images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 56.3rem;
  width: 100%;
  gap: 1rem;
}

.merchandising__images figure {
  max-width: 17.5rem;
  width: 100%;
  height: 16.3rem;
}

.merchandising__images figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.merchandising a {
  width: 20.8rem;
  height: 4.6rem;
  border-radius: 2.3rem;
  background-color: #003d53;
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 2.5rem;
  line-height: 2.5rem;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.2rem auto 0;
}

@media only screen and (max-width: 900px) {
  .merchandising a {
    font-size: 2rem;
    line-height: 2rem;
  }
}

.logistica__section {
  display: flex;
  flex-direction: column;
}

.logistica__section:nth-of-type(even) .logistica__header figure,
.logistica__section:nth-of-type(even) .logistica__header h2 {
  order: 1;
}

.logistica__section:nth-of-type(even) .logistica__header h2 {
  margin-right: 0;
}

.logistica__section:nth-of-type(even) .logistica__header hr {
  margin-right: 2.2rem;
}

.logistica__section:nth-of-type(even) .logistica__content figure {
  order: 1;
}

.logistica__header {
  display: flex;
  align-items: center;
  margin-top: 2.7rem;
}

.logistica__header h2 {
  color: #fff;
  margin: 0 2.3rem 0;
  line-height: 3.6rem;
}

.logistica__header hr {
  width: 100%;
  border: none;
  height: 0.2rem;
  background-color: #fff;
  margin-top: auto;
}

.logistica__content {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin: 4.4rem 0 2.7rem;
}

@media only screen and (max-width: 900px) {
  .logistica__content {
    flex-direction: column;
    row-gap: 5rem;
  }
}

.logistica__content figure {
  width: 56.8rem;
  height: 52.8rem;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .logistica__content figure {
    width: 30rem;
    height: 30rem;
  }
}

.logistica__content figure::after {
  content: "";
  background-image: url("../img/mask.png");
  width: 100%;
  height: 100%;
  position: absolute;
  top: -5rem;
  left: -2rem;
}

@media only screen and (max-width: 900px) {
  .logistica__content figure::after {
    display: none;
  }
}

.logistica__content figure img {
  width: 44.7rem;
  height: 42.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-mask-image: url("../img/mask1.png");
  mask-image: url("../img/mask1.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media only screen and (max-width: 900px) {
  .logistica__content figure img {
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: 50%;
    width: 100%;
    height: 100%;
  }
}

.logistica__content article {
  font-size: 1.9rem;
  line-height: 2.9rem;
  color: #fff;
  max-width: 32rem;
  width: 100%;
}

.logistica__content article h3 {
  font-family: "Akrobat Light", sans-serif;
  font-size: 4.1rem;
  line-height: 4.2rem;
  margin-bottom: 3.4rem;
}

@media only screen and (max-width: 900px) {
  .logistica__content article h3 {
    font-size: 3.1rem;
    line-height: 3.2rem;
  }
}

.logistica__content article h3 strong {
  font-family: "Akrobat ExtraBold", sans-serif;
}

.logistica__content article p {
  color: #fff;
}

.logistica__content article ul {
  padding-left: 2.5rem;
}

.logistica__content article img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 2rem auto;
}

.equipe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #075c7b;
  padding-top: 6.5rem !important;
  padding-bottom: 6.5rem !important;
}

@media only screen and (max-width: 900px) {
  .equipe {
    justify-content: center;
  }
}

.equipe article {
  max-width: 35.5rem;
  width: 100%;
  color: #fff;
  font-size: 1.9rem;
  line-height: 2.9rem;
  text-align: justify;
}

.equipe article h3 {
  font-size: 5rem;
  line-height: 5.4rem;
  margin-bottom: 3.3rem;
}

.equipe article p {
  color: #fff;
}

.equipe figure {
  width: 56.5rem;
  height: 53.5rem;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .equipe figure {
    width: 30rem;
    height: 30rem;
    margin-top: 5rem;
  }
}

.equipe figure::after {
  content: "";
  background-image: url("../img/mask.png");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -5rem;
  left: -2rem;
}

@media only screen and (max-width: 900px) {
  .equipe figure::after {
    display: none;
  }
}

.equipe figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-mask-image: url("../img/mask1.png");
  mask-image: url("../img/mask1.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.clientes {
  background-color: #ececec;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 8.5rem !important;
}

.clientes article {
  width: 100%;
  font-family: "Akrobat Bold", sans-serif;
  font-size: 1.9rem;
  color: #414042;
  margin: 8.5rem 0 3.8rem;
}

.clientes article h3 {
  font-family: "Akrobat ExtraBold", sans-serif;
  font-size: 5rem;
  color: #1f6883;
  margin-bottom: 3.2rem;
}

@media only screen and (max-width: 900px) {
  .clientes article h3 {
    font-size: 4.5rem;
  }
}

.clientes__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 15rem;
  width: 100%;
}

.clientes__item figure {
  margin: 0 auto;
}

.clientes__item span {
  font-family: "Akrobat Bold", sans-serif;
  font-size: 2.1rem;
  line-height: 2.5rem;
  color: #414042;
  text-align: center;
  margin: auto;
}

@media only screen and (max-width: 900px) {
  .clientes__item span {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}

.areas {
  padding: 4rem 0;
  background-color: #336980;
}

.areas__section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 5.575rem 0;
}

@media only screen and (max-width: 1180px) {
  .areas__section {
    justify-content: center;
    row-gap: 5rem;
  }
}

@media only screen and (max-width: 900px) {
  .areas__section {
    margin: 5rem 0;
  }
}

.areas__section figure {
  width: 56.7rem;
  height: 51.7rem;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .areas__section figure {
    width: 30rem;
    height: 30rem;
  }
}

.areas__section figure::after {
  content: "";
  background-image: url("../img/mask.png");
  width: 100%;
  height: 100%;
  position: absolute;
  top: -5rem;
  left: -2rem;
}

@media only screen and (max-width: 900px) {
  .areas__section figure::after {
    display: none;
  }
}

.areas__section figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-mask-image: url("../img/mask1.png");
  mask-image: url("../img/mask1.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media only screen and (max-width: 900px) {
  .areas__section figure img {
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: 50%;
    width: 100%;
    height: 100%;
  }
}

.areas__section article {
  max-width: 47.8rem;
  width: 100%;
  color: #fff;
  font-size: 1.9rem;
  line-height: 2.9rem;
  text-align: justify;
}

@media only screen and (max-width: 900px) {
  .areas__section article {
    font-size: 1.5rem;
    line-height: 2.1rem;
  }
}

.areas__section article h3 {
  font-size: 5rem;
  line-height: 5.4rem;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 3.5rem;
}

@media only screen and (max-width: 900px) {
  .areas__section article h3 {
    font-size: 4.5rem;
    line-height: 5rem;
  }
}

.areas__section article p {
  color: #fff;
}

.story {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 5rem 0;
}

@media only screen and (max-width: 900px) {
  .story {
    padding: 0 0 5rem;
  }
}

.story figure.slick-slide img {
  height: 80vh;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: auto;
  margin: 0 auto;
}

@media only screen and (max-width: 900px) {
  .story figure.slick-slide img {
    height: 100vh;
  }
}

.story .slick-dots {
  transform: translate(-50%, -3rem);
  z-index: 9999;
  position: absolute;
  left: 50%;
}

.trabalhe-conosco__box a {
  margin-top: 2.8rem !important;
}

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