@charset "UTF-8";
/* DINPro */
@font-face {
  font-family: "DINPro";
  src: url("../fonts/dinpro_bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/dinpro_bolditalic.otf") format("opentype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/dinpro_black.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/dinpro_blackitalic.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/dinpro_italic.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/dinpro_light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/dinpro_lightitalic.ttf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/dinpro_medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/dinpro_mediumitalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/dinpro.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/dinpro_light.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/dinpro_lightitalic.ttf") format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
.txt {
  font-family: "DINPro", sans-serif;
}

button {
  all: unset;
  cursor: pointer;
}

.btn--blue {
  display: flex;
  align-items: center;
  background-color: #4197d4;
  border-radius: 41.5px;
  padding: 20px 14px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "DINPro", sans-serif;
  position: relative;
  justify-content: center;
}
.btn--blue:hover {
  background-color: #20538E;
  transition: 0.3s;
}
.btn--blue:hover svg circle {
  fill: #0F1128;
}
.btn--blue svg {
  position: absolute;
  left: 14px;
}
.btn--header {
  border-radius: 5px;
  color: #000;
  background-color: #9AC4E9;
  font-size: 16px;
  font-weight: normal;
  font-family: "DINPro", sans-serif;
  padding: 7px 7px;
}
.btn--header.active {
  background-color: #4197d4;
  color: #fff;
  font-weight: 700;
}
.btn--header.download {
  background-color: #4197d4;
  color: #fff;
}
.btn--header:hover {
  background-color: #4197d4;
  color: #fff;
}

.bg--blue {
  background-color: #4197d4;
}
.bg--light-blue {
  background-color: #31C7ED;
}

/*HAMBURGER MENU*/
.hamburger-menu {
  position: relative;
  z-index: 5;
}

.menu__btn {
  position: relative;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 6px;
  border-radius: 5px;
  background-color: #4197d4;
}
.menu__btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transition: all 0.3s ease;
}

.menu__btn:hover span {
  opacity: 0.9;
}

#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ .menu__box {
  right: 0px !important;
  opacity: 1 !important;
  height: 100vh;
}

#menu__toggle:checked + .menu__btn > span {
  background-color: #fff;
}

/* Quando clicado (checked), animar os spans individualmente */
#menu__toggle:checked + .menu__btn span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#menu__toggle:checked + .menu__btn span:nth-child(2) {
  opacity: 0;
}

#menu__toggle:checked + .menu__btn span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu__box {
  display: block;
  position: fixed;
  background-image: url("../images/menubg.png");
  background-repeat: no-repeat;
  background-size: cover;
  right: -100%;
  width: 50%;
  height: 100vh;
  transition-duration: 0.8s;
  margin: 0;
  opacity: 0;
  top: 95px;
  z-index: 99;
}

.menu__items {
  font-family: "DINPro", sans-serif;
  list-style: none;
  text-decoration: none;
  font-weight: 100;
  font-size: 20px;
  line-height: 1.5;
}
.menu__items span {
  color: #fff;
}
.menu__items a {
  text-decoration: none;
}
.menu__items a:hover {
  cursor: pointer;
  color: #D6AF32;
  font-weight: 500;
}
.menu__items a:hover span {
  color: #D6AF32;
}
.menu__items li {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}

@media screen and (max-width: 1366px) {
  .menu__box span {
    font-size: 16px;
  }
  .menu__box svg {
    height: 35px;
  }
}
@media screen and (max-width: 768px) {
  .menu__box {
    width: 100%;
    right: -100%;
    top: 128px;
  }
  .menu__box svg {
    height: 24px;
  }
  .menu__box span {
    font-size: 16px;
  }
  .menu__btn {
    width: 36px;
    height: 36px;
    padding: 10px 8px;
  }
  .menu__btn span {
    height: 2px;
    width: 100%;
  }
}
html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 85px;
}

#navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 16px 0;
  background-color: #20538E;
  z-index: 99;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

#headerTitle {
  margin-bottom: 0;
  font-family: "DINPro", sans-serif;
  font-size: 16px;
  line-height: 1.25;
  color: #fff;
  font-weight: 100;
}
#headerTitle b {
  font-weight: 700;
}

p {
  font-family: "DINPro", sans-serif;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

#solucoeslogisticas h2 {
  font-family: "DINPro", sans-serif;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;
  color: #20538E;
  margin-bottom: 0;
}
#solucoeslogisticas .container {
  padding: 200px 0;
}
#solucoeslogisticas .bg--image {
  background-image: url("../images/solucoesbg.png");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}

#ceomessage {
  background-color: #9AC4E9;
  background-image: url("../images/ceomessagebg.png");
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  border-top-left-radius: 71px;
  padding: 66px 0 20px 0;
}
#ceomessage h2 {
  font-family: "DINPro", sans-serif;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;
  color: #20538E;
  margin-bottom: 0;
}
#ceomessage p b {
  font-weight: 700;
  margin-bottom: 20px;
}

.separator {
  height: 35px;
  background-color: #4197d4;
}

#destaques {
  background-image: url("../images/destaquesbg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #20538E;
}
#destaques h2 {
  font-family: "DINPro", sans-serif;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}
#destaques h3 {
  font-family: "DINPro", sans-serif;
  font-size: 35px;
  line-height: 1.5;
  font-weight: 700;
  color: #9AC4E9;
  margin-bottom: 0;
}
#destaques p {
  color: #fff;
  margin-bottom: 0;
  line-height: 150%;
  font-size: 20px;
  max-width: 490px;
}
#destaques p b {
  font-size: 30px;
  font-weight: 700;
}
#destaques .ondinhascima {
  background-image: url("../images/ondinhascima.png");
  height: 36px;
  margin-bottom: 66px;
}
#destaques .ondinhasbaixo {
  background-image: url("../images/ondinhasbaixo.png");
  height: 36px;
  margin-top: 66px;
}

#compromissosustentavel {
  background-image: url("../images/compromissosustentavel.png");
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}
#compromissosustentavel h2 {
  font-family: "DINPro", sans-serif;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;
  color: #20538E;
  margin-bottom: 20px;
}
#compromissosustentavel .bg--image {
  padding: 200px 0;
}
#compromissosustentavel .separator {
  height: 1px;
  background-color: #20538E;
}

.compromissos_continuacao h3 {
  font-family: "DINPro", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #20538E;
  margin-bottom: 0;
}
.compromissos_continuacao .separator {
  height: 1px;
  background-color: #20538E;
}

#estrategiaclimatica {
  margin: 100px 0;
}
#estrategiaclimatica h2 {
  font-family: "DINPro", sans-serif;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;
  color: #20538E;
  margin-bottom: 0;
  max-width: 633px;
}

#atuacaosocial {
  background-image: url("../images/atuacaosocialbg.png");
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  padding: 100px 0;
}
#atuacaosocial h2 {
  font-family: "DINPro", sans-serif;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;
  color: #20538E;
  margin-bottom: 0;
  max-width: 633px;
}

#saibamais {
  padding: 100px 0 20px 0;
}
#saibamais h2 {
  font-family: "DINPro", sans-serif;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;
  color: #20538E;
  margin-bottom: 0;
}
#saibamais h3 {
  font-family: "DINPro", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #20538E;
}

#fiquepordentro {
  background-image: url("../images/fiquepordentrobg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 250px 0;
}
#fiquepordentro h2 {
  font-family: "DINPro", sans-serif;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
#fiquepordentro h3 {
  font-family: "DINPro", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}
#fiquepordentro p {
  color: #fff;
}
#fiquepordentro p b {
  font-weight: 700;
}

#download h2 {
  font-family: "DINPro", sans-serif;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  color: #20538E;
  margin-bottom: 0;
}
#download a {
  width: -webkit-fill-available;
  font-family: "DINPro", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.compromissos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem; /* espaçamento entre colunas e linhas */
}

.compromissos-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* para manter a estrutura equilibrada */
}

@media screen and (max-width: 1400px) {
  .p-fixa {
    min-height: 72px;
  }
}
@media (max-width: 768px) {
  .compromissos-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1404px) {
  #solucoeslogisticas .bg--image {
    background-size: 50%;
  }
  #atuacaosocial {
    background-size: auto;
  }
  #ceomessage {
    padding: 66px 0 1px 0;
  }
}
@media screen and (max-width: 768px) {
  .capa {
    margin-top: 127px;
  }
  #solucoeslogisticas .container {
    padding: 0 12px 500px 12px;
  }
  #solucoeslogisticas h2 {
    font-size: 38px;
  }
  #solucoeslogisticas .bg--image {
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
  }
  #solucoeslogisticas a {
    font-size: 14px;
  }
  #solucoeslogisticas svg {
    width: 20px;
  }
  #ceomessage {
    background-position: right bottom;
    padding: 20px 0 290px 0;
  }
  #ceomessage h2 {
    font-size: 38px;
  }
  #ceomessage a {
    font-size: 14px;
  }
  #ceomessage svg {
    width: 20px;
  }
  #destaques {
    padding: 50px 12px;
  }
  #destaques h2 {
    font-size: 38px;
  }
  #destaques h3 {
    font-size: 25px;
  }
  #destaques p b {
    font-size: 25px;
  }
  #compromissosustentavel {
    background-position: bottom;
  }
  #compromissosustentavel h2 {
    font-size: 38px;
  }
  #compromissosustentavel .bg--image {
    padding: 20px 12px 400px 12px;
  }
  .compromissos_continuacao a {
    font-size: 14px;
    margin-top: 20px;
  }
  .compromissos_continuacao a span {
    text-align: center;
    max-width: 200px;
  }
  .compromissos_continuacao svg {
    width: 20px;
  }
  #estrategiaclimatica {
    margin: 50px 0;
  }
  #estrategiaclimatica h2 {
    font-size: 38px;
  }
  #estrategiaclimatica a {
    font-size: 14px;
  }
  #estrategiaclimatica svg {
    width: 20px;
  }
  #atuacaosocial {
    background-position: bottom left;
    padding: 50px 0 550px 0;
  }
  #atuacaosocial h2 {
    font-size: 38px;
  }
  #atuacaosocial a {
    font-size: 14px;
    margin-top: 20px;
  }
  #atuacaosocial a span {
    text-align: center;
    max-width: 240px;
  }
  #atuacaosocial svg {
    width: 20px;
  }
  #saibamais h2 {
    font-size: 38px;
  }
  #fiquepordentro {
    background-position: left;
    padding: 100px 0;
  }
  #fiquepordentro h2 {
    font-size: 38px;
  }
  #download h2 {
    font-size: 32px;
  }
}
.swiper {
  z-index: 1;
  height: -moz-fit-content;
  height: fit-content;
}

.swiper-slide {
  background-color: #fff;
  height: 537px;
}
.swiper-slide div {
  padding: 20px 63px 46px 63px;
}
.swiper-slide p {
  font-weight: 100;
  font-size: 18px;
}

.swiper-wrapper {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  font-size: 30px;
  width: 30px;
  height: 30px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
}

.swiper-button-next {
  background-image: url("../images/SVG/right-arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #31C7ED;
  border-radius: 50%;
  padding: 27px;
  right: -60px;
  opacity: 0.8;
}
.swiper-button-next:hover {
  opacity: 1;
}

.swiper-button-prev {
  background-image: url("../images/SVG/left-arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #31C7ED;
  border-radius: 50%;
  padding: 27px;
  left: -60px;
  opacity: 0.8;
}
.swiper-button-prev:hover {
  opacity: 1;
}

.swiper-pagination-bullet {
  width: 80px !important; /* Largura desejada */
  height: 8px !important; /* Altura (mantenha proporcional) */
  border-radius: 7px !important; /* Metade da altura */
  background: #fff !important;
  transition: all 0.3s ease !important;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #31C7ED !important;
}

/* Espaçamento entre bullets */
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px !important;
}

@media screen and (max-width: 768px) {
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px !important;
  }
}/*# sourceMappingURL=style.css.map */