@charset "UTF-8";
/* CTG Sans */
@font-face {
  font-family: "CTG Sans";
  src: url("../fonts/CTGSANSB.OTF") format("opentype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CTG Sans";
  src: url("../fonts/CTGSANBI.OTF") format("opentype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "CTG Sans";
  src: url("../fonts/CTGSANB.OTF") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CTG Sans";
  src: url("../fonts/CTGSANBI.OTF") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "CTG Sans";
  src: url("../fonts/CTGSANSR(1).OTF") format("opentype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "CTG Sans";
  src: url("../fonts/CTGSANSL.OTF") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CTG Sans";
  src: url("../fonts/CTGSANLI.OTF") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "CTG Sans";
  src: url("../fonts/") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CTG Sans";
  src: url("../fonts/") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "CTG Sans";
  src: url("../fonts/CTGSANSR.OTF") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CTG Sans";
  src: url("../fonts/CTGSANSL.OTF") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CTG Sans";
  src: url("../fonts/CTGSANSLI.OTF") format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
button {
  all: unset;
  cursor: pointer;
}

.btn--download {
  font-family: "CTG Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  background-color: #fff;
  color: #124680;
  border-radius: 63px;
  padding: 7px 25px;
  transition: all 0.3s ease;
}
.btn--download:hover, .btn--download.active {
  background-color: #3EB4E4;
  color: #fff;
}
.btn--download-blue {
  font-family: "CTG Sans", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #124680;
  border-radius: 63px;
  padding: 7px 25px;
  background-color: #124680;
  color: #fff;
  transition: all 0.3s ease;
}
.btn--download-blue:hover, .btn--download-blue.active {
  background-color: #3EB4E4;
}
.btn--doc-blue {
  font-family: "CTG Sans", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #124680;
  border-radius: 63px;
  padding: 7px 25px;
  background-color: #124680;
  color: #fff;
  transition: all 0.3s ease;
}
.btn--doc-blue:hover, .btn--doc-blue.active {
  background-color: #3EB4E4;
}

.bg--blue {
  background-color: #3EB4E4;
}
.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: 6px 0;
}
.menu__btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 15px;
}

.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(10px, 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(10px, -5px);
}

.menu__box {
  display: block;
  position: fixed;
  background-color: #124680;
  right: -100%;
  width: 50%;
  height: 100vh;
  transition-duration: 0.8s;
  margin: 0;
  opacity: 0;
  top: 70px;
  border-bottom-left-radius: 400px;
  z-index: 99;
}

.menu__items {
  font-family: "CTG Sans", sans-serif;
  color: #fff;
  list-style: none;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
  line-height: 35px;
}
.menu__items span {
  color: #fff;
}
.menu__items span:hover {
  cursor: pointer;
  color: #3EB4E4;
  transition: all 0.3s ease;
}
.menu__items a {
  text-decoration: none;
}
.menu__items a:hover {
  cursor: pointer;
  color: #3EB4E4;
}
.menu__items li {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}
.menu__items li:hover svg path {
  fill: #31C7ED;
}
.menu__items button {
  font-size: 25px;
}
.menu__items button:hover {
  background-color: #3EB4E4;
  transition: all 0.3s ease;
}

@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: 61px;
  }
  .menu__box svg {
    height: 24px;
  }
  .menu__box span {
    font-size: 16px;
  }
  .menu__btn {
    width: 30px;
    height: 30px;
    padding: 4px 0;
  }
  .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: #fff;
  z-index: 99;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background-image: url("../images/header_bg.png");
  background-size: cover;
  background-position: center;
}

.btn-header {
  font-family: "CTG Sans";
  font-weight: 100;
  color: #fff;
  font-size: 16px;
}
.btn-header.active {
  font-weight: bold;
}
.btn-header:hover {
  font-weight: bold;
}

.divisor-header {
  width: 2px;
  background-color: #fff;
  height: 100%;
}

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

#quemsomos {
  background-image: url("../images/quemsomos_bg.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  padding: 100px 0;
}
#quemsomos h2 {
  font-family: "CTG Sans", sans-serif;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 30px;
  background: linear-gradient(to right, #3EB4E4, #124680);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

#destaques {
  background-image: url("../images/destaques_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 100px 0;
}
#destaques h2 {
  font-family: "CTG Sans", sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: #fff;
}
#destaques img {
  width: 73px;
}
#destaques h3 {
  font-family: "CTG Sans", sans-serif;
  font-size: 45px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
#destaques p {
  font-family: "CTG Sans", sans-serif;
  font-size: 20px;
  font-weight: 100;
  color: #fff;
  margin: 0;
}
#destaques .divider {
  height: 2px;
  align-self: center;
  width: 70%;
  background-color: #3EB4E4;
  margin: 70px 0;
}
#destaques .card {
  background-color: #fff;
  border-radius: 35px;
  padding: 63px;
}
#destaques .card p {
  font-family: "CTG Sans", sans-serif;
  font-size: 16px;
  font-weight: 100;
  line-height: 26px;
  color: #000;
}
#destaques h4 {
  font-family: "CTG Sans", sans-serif;
  font-size: 35px;
  font-weight: bold;
  color: #fff;
}
#destaques h5 {
  font-family: "CTG Sans", sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: #124680;
}
#destaques .destaque2 .destaque_2 {
  font-size: 30px;
}
#destaques .destaque2 b {
  font-weight: bold;
}

#mapaoperacoes {
  padding: 100px 0;
}
#mapaoperacoes h2 {
  margin-bottom: -40px;
  font-family: "CTG Sans", sans-serif;
  font-size: 50px;
  font-weight: 100;
  background: linear-gradient(to right, #3EB4E4, #124680);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
#mapaoperacoes h2 b {
  font-weight: bold;
}
#mapaoperacoes img {
  padding: 0;
}
#mapaoperacoes .mapaoperacoes_btn {
  font-family: "CTG Sans", sans-serif;
  font-size: 25px;
  font-weight: bold;
  background-color: #124680;
  color: #fff;
  border-top-right-radius: 35px;
  border-top-left-radius: 35px;
  width: -webkit-fill-available;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 63px;
  gap: 20px;
}
#mapaoperacoes .mapaoperacoes_btn .seta {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}
#mapaoperacoes .mapaoperacoes_btn.active .seta {
  transform: rotate(0);
}
#mapaoperacoes .tabela {
  margin-top: 10px;
}

.container-gradiente {
  position: relative;
  border-radius: 35px;
  background: white;
  padding: 2px;
}
.container-gradiente::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  z-index: -1;
  border-radius: 35px;
  background: linear-gradient(45deg, #3EB4E4, #124680);
}
.container-gradiente div {
  padding: 42px;
}
.container-gradiente div h2 {
  font-family: "CTG Sans", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #124680;
}

#inovacao {
  padding: 100px 0;
}
#inovacao h2 {
  font-family: "CTG Sans", sans-serif;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(to right, #3EB4E4, #124680);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
#inovacao h3 {
  font-family: "CTG Sans", sans-serif;
  font-size: 35px;
  font-weight: bold;
  color: #124680;
}
#inovacao .blue-border {
  background-image: url("../images/inovacaobg.png ");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  padding: 100px 0;
  margin-top: 50px;
}
#inovacao .blue-border h4 {
  font-family: "CTG Sans", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #124680;
}
#inovacao .blue-border p {
  max-width: 469px;
}
#inovacao .border-container-1 {
  margin-bottom: 110px;
}
#inovacao .investimentos {
  padding: 70px 0;
}
#inovacao .investimentos_cards {
  background-image: url("../images/investimentos_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
  color: #fff;
}
#inovacao .investimentos_cards h4 {
  font-family: "CTG Sans", sans-serif;
  font-size: 45px;
  font-weight: bold;
  color: #fff;
}
#inovacao .investimentos_cards p {
  max-width: 357px;
  color: #fff;
}
#inovacao .investimentos_cards img {
  width: 73px;
}

#sustentabilidade h2 {
  font-family: "CTG Sans", sans-serif;
  font-size: 50px;
  font-weight: 100;
  margin-bottom: 20px;
  background: linear-gradient(to right, #3EB4E4, #124680);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
#sustentabilidade h2 b {
  font-weight: bold;
}
#sustentabilidade .bg--1 {
  background-image: url("../images/sustentabilidade_bg1.png");
  background-size: 42% 100%;
  background-position: bottom left;
  background-repeat: no-repeat;
}
#sustentabilidade .bg--2 {
  background-image: url("../images/sustentabilidade_bg2.png");
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  padding: 300px 0 0 0;
  margin-top: -200px;
}
#sustentabilidade .blue--card {
  background-color: #3EB4E4;
  padding: 66px;
  border-radius: 35px;
}
#sustentabilidade .blue--card h4 {
  font-family: "CTG Sans", sans-serif;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}
#sustentabilidade p {
  margin: 0;
}
#sustentabilidade h3 {
  font-family: "CTG Sans", sans-serif;
  font-size: 35px;
  font-weight: bold;
  color: #124680;
}
#sustentabilidade h4 {
  font-family: "CTG Sans", sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: #3EB4E4;
  margin: 0;
}
#sustentabilidade .mb {
  margin-bottom: 30px;
}
#sustentabilidade .ambientaldestaque {
  padding: 70px 0;
}
#sustentabilidade .border--blue-left {
  background-image: url("../images/SVG/border-left.svg");
  background-position: left center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 70px 0;
  margin-bottom: 40px;
}
#sustentabilidade .border--blue-left h3 {
  font-family: "CTG Sans", sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: #3EB4E4;
  margin: 0;
}
#sustentabilidade .border--blue-right {
  background-image: url("../images/SVG/border-right.svg");
  background-position: left center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 51.5px 0;
  margin-bottom: 40px;
}
#sustentabilidade .border--blue-right h3 {
  font-family: "CTG Sans", sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: #3EB4E4;
  margin: 0;
}
#sustentabilidade .last {
  padding: 83px 0;
}

#operacaoeficiente {
  background-image: url("../images/operacaobg.png");
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0;
}
#operacaoeficiente h2 {
  font-family: "CTG Sans", sans-serif;
  font-size: 50px;
  font-weight: 100;
  margin-bottom: 20px;
  color: #fff;
}
#operacaoeficiente h2 b {
  font-weight: bold;
}
#operacaoeficiente h3 {
  font-family: "CTG Sans", sans-serif;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}
#operacaoeficiente p {
  color: #fff;
}
#operacaoeficiente .card {
  background-color: #124680;
  padding: 63px;
  border-radius: 35px;
  width: -webkit-fill-available;
}
#operacaoeficiente .card h4 {
  font-family: "CTG Sans", sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: #fff;
}
#operacaoeficiente .card p {
  margin: 0;
}

#download {
  background-image: url("../images/downloadbg.png");
  background-position: bottom -53px left;
  background-repeat: no-repeat;
  background-size: contain;
}
#download h2 {
  font-family: "CTG Sans", sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: #124680;
}

.capa_title tspan {
  font-family: "CTG Sans", sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}

header .capa {
  margin-top: 65px;
}

#mapa_img {
  width: -webkit-fill-available;
}

.detalhes {
  display: none;
}

.visivel {
  display: inline;
}

.botao-ponto {
  cursor: pointer;
  transition: transform 0.2s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.botao-ponto:hover {
  transform: scale(1.3);
}

.botao-ponto.ativo {
  transform: scale(1.2);
}

@media screen and (min-width: 1800px) {
  #sustentabilidade .border--blue-right {
    padding: 70px 0;
  }
}
@media screen and (max-width: 1370px) {
  #inovacao .blue-border {
    padding: 57px 0;
  }
  #inovacao .border-container-1 {
    margin-bottom: 60px;
  }
  #sustentabilidade .border--blue-left {
    background-size: auto 200px;
    background-position: right center;
  }
  #sustentabilidade .border--blue-right {
    background-size: auto 200px;
  }
}
@media screen and (max-width: 1162px) {
  #inovacao .blue-border {
    background-size: 0;
  }
}
@media screen and (max-width: 768px) {
  #navbar {
    background-position: center right;
  }
  #quemsomos {
    padding: 50px 0 479px 0;
  }
  .destaque2 img {
    width: 73px;
    height: 69px;
  }
  #mapaoperacoes h2 {
    margin-bottom: 0;
  }
  #mapaoperacoes .mapaoperacoes_btn {
    font-size: 20px;
  }
  .container-gradiente {
    text-align: center;
    margin: 0 20px;
  }
  #inovacao .blue-border {
    background-image: none;
    margin-top: 0;
    padding: 30px 0;
  }
  .border-container-1 {
    margin-bottom: 0 !important;
  }
  #sustentabilidade h2 {
    font-size: 35px;
  }
  #sustentabilidade .border--blue-left {
    background-image: none;
    padding: 0;
  }
  #sustentabilidade .border--blue-right {
    background-image: none;
    padding: 0;
  }
  #operacaoeficiente h2 {
    font-size: 35px;
  }
  #download {
    text-align: center;
  }
  #sustentabilidade .bg--1 {
    background-image: none;
  }
  #sustentabilidade .bg--2 {
    background-image: none;
  }
  header .capa {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1366px) {
  #operacaoeficiente .card {
    background-color: #124680;
    padding: 40px;
    border-radius: 35px;
    width: -webkit-fill-available;
  }
  #operacaoeficiente .card h4 {
    font-family: "CTG Sans", sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
  }
  #operacaoeficiente .card p {
    margin: 0;
  }
}
.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 */