/* SCROLLBAR */
/* ===== Scrollbar para Chrome, Edge e Safari ===== */
::-webkit-scrollbar {
  width: 12px;              /* largura da barra */
  height: 12px;             /* altura da barra horizontal */
}

::-webkit-scrollbar-track {
  background: #01008D;      /* cor de fundo */
}

::-webkit-scrollbar-thumb {
  background-color: #00FFFF; /* cor da barra */
  border-radius: 6px;        /* borda arredondada */
  border: 2px solid #01008D; /* "espaço" entre a barra e o fundo */
}

/* setas */
::-webkit-scrollbar-button {
  background-color: #00FFFF;
}

/* ===== Scrollbar para Firefox ===== */
* {
  scrollbar-width: thin;                   /* "auto" | "thin" */
  scrollbar-color: #00FFFF #01008D;        /* thumb cor | track cor */
}




/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* RESET */
html{
  scroll-behavior: smooth;
}

body{
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  color: #333333;
}

img{
  width: 100%;
}

figure{
  margin: 0;
  overflow: hidden;
}

a{
  transition: .3s;
}

a:hover{
  text-decoration: none;
}

h1{
  font-weight: 600;
}

h2, h3{
  font-weight: 500;
}

h2, h3{
  color: #01008D;
}

section{
  overflow: hidden;
}

.container-fluid{
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.anc{
  position: relative;
}

.tracks-left{
  position: relative;
  bottom: 0;
}

.tracks-left .cinza, .tracks-left .azul{
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: 100% !important;
}

.tracks-left .cinza{
  width: 390px;
  height: 167px;
  background: url(../img/faixa-cinza-esquerda.svg) no-repeat left bottom;
}

.tracks-left .azul{
  z-index: 20;
  width: 150px;
  height: 62px;
  background: url(../img/faixa-azul-esquerda.svg) no-repeat left bottom;
}

.tracks-right{
  position: relative;
  bottom: 0;
  min-height: 134px;
  max-width: 490px;
}

.tracks-right img{
  position: relative;
  z-index: 20;
}

.tracks-right .superior{
  position: absolute;
  z-index: 10;
  left: 0;
  height: 275px;
  background: url(../img/faixa-azul-superior.svg) no-repeat right top;
}

.tracks-right .cinza, .tracks-right .azul{
  position: absolute;
  right: 0;
  bottom: 0;
  background-size: 100% !important;
}

.tracks-right .cinza{
  z-index: 30;
  width: 50%;
  height: 200px;
  background: url(../img/faixa-cinza-direita.svg) no-repeat right bottom;
}

.tracks-right .azul{
  z-index: 40;
  width: 15%;
  height: 100px;
  background: url(../img/faixa-azul-direita.svg) no-repeat right bottom;
}

.corner-white::before, .corner-white::after,
.corner-gray::before, .corner-gray::after{
  content: "";
  display: block;
  position: absolute;
  background-size: 100% !important;
}

.corner-white::before, .corner-white::after{
  background: url(../img/corner-white.svg) no-repeat center;
}

.corner-gray::before, .corner-gray::after{
  background: url(../img/corner-gray.svg) no-repeat center;
}

.corner-white::before,
.corner-gray::before{
  left: -1px;
  top: -1px;
  transform: rotate(180deg);
}

.corner-white::after,
.corner-gray::after{
  right: -1px;
  bottom: -1px;
}

@media (max-width: 576px){
  body{
    font-size: 14px;
    line-height: 24px;
  }

  h2{
    font-size: 26px;
  }

  .corner-white::before, .corner-white::after,
  .corner-gray::before, .corner-gray::after{
    width: 60px;
    height: 25px;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  body{
    font-size: 16px;
    line-height: 26px;
  }

  h2{
    font-size: 36px;
  }

  .corner-white::before, .corner-white::after,
  .corner-gray::before, .corner-gray::after{
    width: 80px;
    height: 33px;
  }
}

@media (min-width: 992px) and (max-width: 1600px){
  body{
    font-size: 18px;
    line-height: 28px;
  }

  h2{
    font-size: 46px;
  }
}

@media (min-width: 1600px){
  body{
    font-size: 20px;
    line-height: 30px;
  }

  h2{
    font-size: 56px
  }
}

@media (min-width: 992px){
  .container-fluid{
    padding: 0 2rem;
  }

  .corner-white::before, .corner-white::after,
  .corner-gray::before, .corner-gray::after{
    width: 106px;
    height: 44px;
  }
}


/* NAVBAR */
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  transition: .3s;
  padding: 1.5rem 1rem;
}

.navbar-brand:hover{
  background: transparent !important;
}

.navbar-brand svg{
  height: 40px;
  fill: #FFF;
}

.navbar .nav-link{
  font-size: 17px;
  color: #FFF;
  transition: .3s;
  border-radius: 10px;
  cursor: pointer;
}

.navbar .nav-link:hover{
  background: rgba(255, 255, 255, 0.2);
}


.navbar .nav-link.nav-download{
  display: flex;
  align-items: center;
  border: 1px solid #00FFFF;
}

.navbar .nav-link.nav-download::before{
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 1rem;
  background: url(../img/icon-download-01.svg) no-repeat center;
  background-size: 100% auto;
}


/* NAVBAR FIXED */
.navbar.navbar-fixed{
  padding: .5rem 1rem;
  background: #01008D;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
}

/* .navbar.navbar-fixed svg{
  fill: #00FFFF;
} */

/* MENU MOBILE */
.navbar .navbar-toggler{
  width: 40px;
  height: 40px;
  background: url(../img/open-menu.svg) no-repeat center;
  background-size: 70% auto;
}

.menu-mobile{
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #01008D;
  color: #fff;
  transition: left 0.3s ease-in-out;
  z-index: 9999;
  overflow-y: scroll;
}

.menu-mobile .logo-menu-mobile{
  width: 150px;
}

.menu-mobile .menu-mobile-close{
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
  background: url(../img/close-menu.svg) no-repeat center;
  background-size: 40% auto;
}

.menu-mobile.active{
  left: 0;
}

.menu-mobile ul{
  position: relative;
  width: 80%;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
}

.menu-mobile ul::before, .menu-mobile ul::after{
  content: "";
  display: block;
  width: 60px;
  height: 25px;
  position: absolute;
  background: url(../img/corner-menu.svg) no-repeat center;
  background-size: 100%;
}

.menu-mobile ul::before{
  left: 0;
  top: 0;
  transform: rotate(180deg);
}

.menu-mobile ul::after{
  right: 0;
  bottom: 0;
}

.menu-mobile ul li{
  padding: .5rem 1rem;
}

.menu-mobile ul li:not(:last-child){
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-mobile ul li a{
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.menu-mobile ul li a:hover{
  color: #0d6efd;
}

.meny-mobile-close{
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}


/* BANNER */
.banner{
  position: relative;
}

.banner .scroll-mobile {
  position: absolute;
  z-index: 10;
  bottom: 5vh;
  left: calc(50% - 20px);
  width: 40px;
  height: 45px;
}

.banner .scroll-mobile .scroll-hand {
  position: absolute;
  top: 0;
  fill: #FFF;
  animation: scrollHand 1s infinite alternate ease-in-out;
}

.banner .scroll-mobile .scroll-arrow {
  position: absolute;
  top: 0;
  fill: #00FFFF;
  animation: scrollArrow 1s infinite alternate ease-in-out;
}

@keyframes scrollHand {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@keyframes scrollArrow {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}


.banner .bg-banner{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: zoomBg 10s infinite alternate;
  background: url(../img/ccee-bg-header-02.jpg) no-repeat center;
  background-size: cover;
}

@keyframes zoomBg {
  0%   { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.banner .bg-banner::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 70%;
  background: url(../img/ccee-bg-header-onda.svg) no-repeat;
  background-size: auto 100%;
  mix-blend-mode: multiply;
  pointer-events: none;
}

@media (max-width: 576px){
  .banner .bg-banner::after{
    background-position: -30% bottom;
    animation: ondaMobile 8s infinite alternate;
  }
}

@media (min-width: 576px){
  .banner .bg-banner::after{
    background-position: 120% bottom;
    animation: onda 8s infinite alternate;
  }
}

@keyframes ondaMobile {
  0%   { background-position: right bottom; }
  100% { background-position: -30% bottom; }
}

@keyframes onda {
  0%   { background-position: right bottom; }
  100% { background-position: 120% bottom; }
}


.animated-title{
  position: relative;
  z-index: 30;
  color: #FFF;
  overflow: hidden;
}

.animated-title > span{
  display: block;
}

.animated-title > span > span {
  opacity: 0;
  transform: translateY(30px);
  display: inline-block;
  animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-title .txt-01 span:nth-child(1)  { animation-delay: 1.1s; }
.animated-title .txt-01 span:nth-child(2)  { animation-delay: 1.2s; }
.animated-title .txt-01 span:nth-child(3)  { animation-delay: 1.3s; }
.animated-title .txt-01 span:nth-child(4)  { animation-delay: 1.4s; }
.animated-title .txt-01 span:nth-child(5)  { animation-delay: 1.5s; }
.animated-title .txt-01 span:nth-child(6)  { animation-delay: 1.6s; }
.animated-title .txt-01 span:nth-child(7)  { animation-delay: 1.7s; }
.animated-title .txt-01 span:nth-child(8)  { animation-delay: 1.8s; }
.animated-title .txt-01 span:nth-child(9)  { animation-delay: 1.9s; }
.animated-title .txt-01 span:nth-child(10) { animation-delay: 2.0s; }
.animated-title .txt-01 span:nth-child(11) { animation-delay: 2.1s; }
.animated-title .txt-01 span:nth-child(12) { animation-delay: 2.2s; }

.animated-title .txt-02 span:nth-child(1)  { animation-delay: 1.6s; }
.animated-title .txt-02 span:nth-child(2)  { animation-delay: 1.7s; }
.animated-title .txt-02 span:nth-child(3)  { animation-delay: 1.8s; }
.animated-title .txt-02 span:nth-child(4)  { animation-delay: 1.9s; }
.animated-title .txt-02 span:nth-child(5)  { animation-delay: 2.0s; }
.animated-title .txt-02 span:nth-child(6)  { animation-delay: 2.1s; }
.animated-title .txt-02 span:nth-child(7)  { animation-delay: 2.2s; }
.animated-title .txt-02 span:nth-child(8)  { animation-delay: 2.3s; }
.animated-title .txt-02 span:nth-child(9)  { animation-delay: 2.4s; }
.animated-title .txt-02 span:nth-child(10) { animation-delay: 2.5s; }
.animated-title .txt-02 span:nth-child(11) { animation-delay: 2.6s; }
.animated-title .txt-02 span:nth-child(12) { animation-delay: 2.7s; }
.animated-title .txt-02 span:nth-child(13) { animation-delay: 2.8s; }
.animated-title .txt-02 span:nth-child(14) { animation-delay: 2.9s; }
.animated-title .txt-02 span:nth-child(15) { animation-delay: 3.0s; }
.animated-title .txt-02 span:nth-child(16) { animation-delay: 3.1s; }

.animated-title .txt-03 span:nth-child(1)  { animation-delay: 2.0s; }
.animated-title .txt-03 span:nth-child(2)  { animation-delay: 2.1s; }
.animated-title .txt-03 span:nth-child(3)  { animation-delay: 2.2s; }
.animated-title .txt-03 span:nth-child(4)  { animation-delay: 2.3s; }

@media (max-width: 360px){
  .animated-title{
    font-size: 20px;
  }
}

@media (min-width: 360px) and (max-width: 576px){
  .animated-title{
    font-size: 30px;
  }
}

@media (max-width: 576px){
  .banner{
    height: 100vh;
    height: 100dvh;
    min-height: 300px;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  .banner{
    height: 80vh;
    height: 80dvh;
    min-height: 450px;
  }
  
  .animated-title{
    font-size: 50px;
  }
}

@media (min-width: 992px){
  .banner{
    height: 90vh;
    height: 90dvh;
    min-height: 550px;
  }
  
  .animated-title{
    font-size: 70px;
  }
}


/* PALAVRA CEO */
.palavra-ceo{
  position: relative;
  background: url(../img/palavra-ceo-bg.svg) center right #01008D;
  background-size: cover;
  overflow: initial;
}

.palavra-ceo figure img{
  position: relative;
  left: 0;
  bottom: 0;
  z-index: 20;
  animation: fotoCEO .3s alternate;
}

@keyframes fotoCEO {
  0%  { bottom: -70px; opacity: 0; }
  100%  { bottom: 0; opacity: 1; }
}

.palavra-ceo h2{
  color: #00FFFF;
}

.palavra-ceo p{
  color: #FFF;
}

@media (max-width: 576px){
  .palavra-ceo .anc{
    top: -3rem;
  }

  .palavra-ceo figure{
    width: 80%;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  .palavra-ceo .anc{
    top: -4rem;
  }

  .palavra-ceo figure{
    width: 400px;
  }
}

@media (min-width: 992px){
  .palavra-ceo .anc{
    top: -16rem;
  }

  .palavra-ceo figure{
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    width: 540px;
  }
}


/* COMUNICADOS */
.comunicados figure img{
  position: relative;
  z-index: 50;
}

.comunicados figure img.logo-comunicados{
  max-width: 300px;
}

.comunicados .tracks-right .azul{
  width: 20%;
  max-width: 70px;
}

.comunicados .tracks-right .cinza{
  width: 65%;
  max-width: 300px;
}

.comunicados .boxes-comunicados figure{
  z-index: 20;
}

.comunicados .boxes-comunicados figure::after{
  content: "";
  position: absolute;
  z-index: 90;
  width: 0; 
  height: 0; 
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 22px solid #FFF;
}

.comunicados .boxes-comunicados .box-comunicado h3{
  font-weight: 400;
}

.comunicados .boxes-comunicados .box-comunicado .btn-mais{
  font-weight: 600;
  color: #01008D;
  border: 1px solid #ececec;
  border-radius: 10px;
  transition: .3s;
}

.comunicados .boxes-comunicados .box-comunicado .btn-mais::before{
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin-right: .5rem;
  background: url(../img/icon-saiba-mais.svg) no-repeat bottom;
  background-size: 100% auto;
}


@media (max-width: 576px){
  .comunicados .boxes-comunicados .box-comunicado > div{
    border: 1px solid #d9d9d9;
    padding-top: calc(90px + 1.5rem);
    margin-top: -90px;
  }

  .comunicados .boxes-comunicados figure{
    z-index: 90;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-left: 10px solid #FFF;
    border-right: 10px solid #FFF;
  }
  
  .comunicados .boxes-comunicados figure::after{
    left: calc(50% - 22px);
    bottom: 10px;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  .comunicados .boxes-comunicados figure{
    width: 260px;
    height: 260px;
    z-index: 90;
  }

  .comunicados .boxes-comunicados .box-comunicado.bc-01 > div,
  .comunicados .boxes-comunicados .box-comunicado.bc-03 > div{
    border-left: none;
  }
  
  .comunicados .boxes-comunicados .box-comunicado.bc-02 > div{
    border-right: none;
  }

  .comunicados .boxes-comunicados .box-comunicado.bc-01 figure::after,
  .comunicados .boxes-comunicados .box-comunicado.bc-03 figure::after{
    top: calc(50% - 11px);
    right: -12px;
    transform: rotate(-90deg);
  }
  
  .comunicados .boxes-comunicados .box-comunicado.bc-02 figure::after{
    top: calc(50% - 11px);
    left: -12px;
    transform: rotate(90deg);
  }

  .comunicados .boxes-comunicados .box-comunicado > div{
    border: 1px solid #d9d9d9;
    width: calc(100% - 260px);
    height: 260px;
  }

  .comunicados .boxes-comunicados .box-comunicado p{
    /* font-size: 0.95em;
    line-height: 1.2; */
  }
}

@media (min-width: 992px){
  .comunicados .boxes-comunicados{
    border-left: 1px solid #d9d9d9;
    border-top: 1px solid #d9d9d9;
  }

  .comunicados .boxes-comunicados .box-comunicado{
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
  }

  .comunicados .boxes-comunicados .box-comunicado.bc-01 > div{
    border-left: none;
  }

  .comunicados .boxes-comunicados .box-comunicado.bc-01 figure::after{
    top: calc(50% - 11px);
    right: -12px;
    transform: rotate(-90deg);
  }

  .comunicados .boxes-comunicados .box-comunicado.bc-02 figure::after{
    top: calc(50% - 11px);
    left: -12px;
    transform: rotate(90deg);
  }

  .comunicados .boxes-comunicados .box-comunicado.bc-03 figure::after{
    left: calc(50% - 22px);
    bottom: -2px;
  }

  .comunicados .boxes-comunicados:nth-of-type(1) .box-comunicado figure{
    width: 50%;
    flex: 0 0 50%;
  }

  .comunicados .boxes-comunicados:nth-of-type(2) .box-comunicado .d-flex.flex-column{
    height: 50%;
  }

  .comunicados .boxes-comunicados .box-comunicado p{
    /* font-size: 0.85em;
    line-height: 1.2; */
  }

  .comunicados .boxes-comunicados .box-comunicado .btn-mais:hover{
    background: #ececec;
  }
}

@media (min-width: 1200px) and (max-width: 1600px){
  .comunicados .boxes-comunicados .box-comunicado p{
    font-size: 0.9em;
    line-height: 1.4;
  }
}



/* INSTITUIÇÃO */
.instituicao .tracks-right .superior{
  width: 60%;
  top: 4%;
}

.instituicao .carousel{
  border: 1px solid #d9d9d9;
  min-height: 100%;
}

.instituicao .carousel h3{
  font-weight: 400;
}

.instituicao .carousel-control-prev, .instituicao .carousel-control-next{
  border-radius: 50%;
  font-size: 0;
  background: url(../img/arrow.svg) no-repeat center #FFF;
  opacity: 1;
}

.instituicao .carousel .carousel-control-prev-icon, .instituicao .carousel .carousel-control-next-icon{
  display: none;
}

.instituicao .carousel-indicators{
  width: 150px;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  padding: 0;
  margin: 0;
  background: #FFF;
}

.instituicao .carousel-indicators li{
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 50%;
  border: 4px solid #FFF;
  background: #00FFFF;
}

.instituicao .carousel-indicators li.active{
  background: #01008D;
}

@media (max-width: 576px){
  .instituicao .anc{
    top: -6rem;
  }

  .instituicao .carousel-control-prev, .instituicao .carousel-control-next{
    top: calc(50% - 35px);
    width: 40px;
    height: 40px;
    background-size: 30px auto;
  }

  .instituicao .carousel-control-prev{
    left: -20px;
  }

  .instituicao .carousel-control-next{
    right: -20px;
    transform: rotate(180deg);
  }
}

@media (min-width: 576px){
  .instituicao .anc{
    top: -6rem;
  }

  .instituicao .carousel-control-prev, .instituicao .carousel-control-next{
    top: calc(50% - 35px);
    width: 80px;
    height: 80px;
    background-size: 40px auto;
  }

  .instituicao .carousel-control-prev{
    left: -40px;
  }

  .instituicao .carousel-control-next{
    right: -40px;
    transform: rotate(180deg);
  }
}



/* NOSSOS NÚMEROS */
.numeros{
  background: #f1f5f1;
  border-top: 1px solid #00FFFF;
  border-bottom: 1px solid #00FFFF;
}

.numeros .box-numero img{
  height: 60px;
}

.numeros .box-numero h4, .numeros .box-numero p{
  color: #01008D;
}


@media (max-width: 576px){
  .numeros .anc{
    top: -6rem;
  }

  .numeros .box-numero h4{
    font-size: 26px;
  }
  
  .numeros .box-numero p{
    line-height: 16px;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  .numeros .anc{
    top: -5rem;
  }

  .numeros .box-numero h4{
    font-size: 36px;
  }
  
  .numeros .box-numero p{
    line-height: 18px;
  }
}

@media (min-width: 992px){
  .numeros .anc{
    top: -7rem;
  }

  .numeros .box-numero h4{
    font-size: 50px;
  }

  .numeros .box-numero p{
    line-height: 20px;
  }
}



/* FINANÇAS */
.financas .tracks-right .superior{
  width: 65%;
  top: 2%;
}

.financas .container-fluid .row{
  border: 1px solid #d9d9d9;
}

.financas h3{
  font-weight: 400;
}

.financas table{
  color: #01008D;
  /* max-width: 670px; */
}

.financas table tr{
  border-bottom: 2px solid #00FFFF;
}

.financas table tbody tr:last-child{
  border-bottom: none;
}

@media (max-width: 576px){
  .financas .anc{
    top: -6rem;
  }

  .financas table{
    line-height: 16px;
  }
  
  .financas table tr th{
    padding: .5rem 0;
  }

  .financas table tr td{
    padding: 1rem .5rem;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  .financas .anc{
    top: -4rem;
  }

  .financas table{
    line-height: 18px;
  }
  
  .financas table tr td{
    padding: 1rem;
  }
}

@media (min-width: 992px){
  .financas .anc{
    top: -7rem;
  }

  .financas table{
    line-height: 20px;
  }
  
  .financas table tr td{
    padding: 1rem 2rem;
  }
}


/* .financas ul{
  color: #01008D;
  max-width: 670px;
  padding: 0;
}

.financas ul li{
  display: flex;
  padding: .75rem 2rem;
  border-bottom: 2px solid #00FFFF;
}

.financas ul li:last-child{
  border-bottom: none;
}

.financas ul li strong, .financas ul li span{
  width: 50%;
} */



/* MERCADO */
.mercado{
  background: #eaeaea;
}

.mercado .tracks-right .superior{
  width: 80%;
  top: 2%;
}

.mercado h3{
  font-weight: 400;
}

.mercado .content-mercado{
  background: #FFF;
  border: 1px solid #d9d9d9;
}

.mercado .content-mercado p:last-child{
  margin-bottom: 0;
}

.mercado .table-responsive{
  overflow-y: hidden;
  white-space: nowrap;
}

.mercado .table-responsive .table thead{
  background: #01008D;
  color: #FFF;
}

.mercado .table-responsive .table thead th{
  border: none;
}

.mercado .table-responsive .table thead tr th:not(:first-child){
  text-align: center;
}

.mercado .table-responsive .table tbody tr td{
  background: #FFF;
  border-bottom: 1px solid #ececec;
  color: #01008D;
}

.mercado .table-responsive .table tbody tr:last-child td{
  background: #00FFFF;
}

@media (max-width: 576px){
  .mercado .anc{
    top: -5.5rem;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  .mercado .anc{
    top: -6rem;
  }
}

@media (min-width: 992px){
  .mercado .anc{
    top: -4rem;
  }
}


/* ACCORDION CCEE */
.accordion-ccee{
  position: relative;
  background: #FFF;
}

.accordion-ccee .card-ccee .card-header-ccee{
  position: relative;
  overflow: hidden;
  background-size: cover !important;
}

.accordion-ccee .card-ccee .card-header-ccee::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.accordion-ccee .card-ccee .card-header-ccee strong, .accordion-ccee .card-ccee .card-header-ccee h3{
  position: relative;
  z-index: 10;
  color: #FFF;
}

.accordion-ccee .card-ccee .card-body-ccee img{
  width: 650px;
}

@media (max-width: 576px){
  .accordion-ccee .card-ccee .card-header-ccee{
    min-height: 90px;
  }

  .accordion-ccee .card-ccee .card-header-ccee strong{
    font-size: 30px;
  }

  .accordion-ccee .card-ccee .card-header-ccee h3{
    font-size: 22px;
    line-height: 24px;
  }
}

@media (min-width: 576px) and (max-width: 1200px){
  .accordion-ccee .card-ccee .card-header-ccee{
    min-height: 120px;
  }

  .accordion-ccee .card-ccee .card-header-ccee strong{
    font-size: 40px;
  }

  .accordion-ccee .card-ccee .card-header-ccee h3{
    font-size: 30px;
  }
}

@media (max-width: 1200px){
  .accordion-ccee .card-ccee .card-body-ccee, .accordion-ccee .card-ccee .card-body-content-ccee{
    width: 100% !important;
  }

  .accordion-ccee .card-ccee .card-body-ccee{
    overflow: hidden;
    transition: .6s;
  }

  .accordion-ccee .card-ccee:nth-of-type(1) .card-header-ccee{
    background: url(../img/ccee-accordion-mobile-01.jpg) no-repeat center;
  }

  .accordion-ccee .card-ccee:nth-of-type(2) .card-header-ccee{
    background: url(../img/ccee-accordion-mobile-02.jpg) no-repeat center;
  }

  .accordion-ccee .card-ccee:nth-of-type(3) .card-header-ccee{
    background: url(../img/ccee-accordion-mobile-03.jpg) no-repeat center;
  }

  .accordion-ccee .card-ccee:nth-of-type(4) .card-header-ccee{
    background: url(../img/ccee-accordion-mobile-04.jpg) no-repeat center;
  }
  
  .accordion-ccee .card-ccee .card-body-ccee:not(.active){
    height: 0 !important;
  }

  .accordion-ccee .card-ccee .card-header-ccee h3{
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
}

@media (min-width: 1200px){
  .accordion-ccee{
    display: flex;
    height: 700px;
  }

  .accordion-ccee .card-ccee{
    flex: 1 1 auto;
  }

  .accordion-ccee .card-ccee .card-header-ccee{
    width: 160px;
    flex-shrink: 0;
    cursor: pointer;
  }

  .accordion-ccee .card-ccee:nth-of-type(1) .card-header-ccee{
    background: url(../img/ccee-accordion-01.jpg) no-repeat center;
  }

  .accordion-ccee .card-ccee:nth-of-type(2) .card-header-ccee{
    background: url(../img/ccee-accordion-02.jpg) no-repeat center;
  }

  .accordion-ccee .card-ccee:nth-of-type(3) .card-header-ccee{
    background: url(../img/ccee-accordion-03.jpg) no-repeat center;
  }

  .accordion-ccee .card-ccee:nth-of-type(4) .card-header-ccee{
    background: url(../img/ccee-accordion-04.jpg) no-repeat center;
  }

  .accordion-ccee .card-ccee .card-header-ccee strong{
    font-size: 40px;
  }

  .accordion-ccee .card-ccee .card-header-ccee h3{
    font-size: 30px;
    line-height: 30px;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
  }

  .accordion-ccee .card-ccee .card-body-ccee{
    position: sticky;
    flex: 0 0 0;
    overflow: hidden;
    height: 700px;
    transition: .6s;
  }
  
  .accordion-ccee .card-ccee .card-body-ccee:not(.active){
    width: 0 !important;
  }
  
  .accordion-ccee .card-ccee .card-body-ccee > div {
    position: sticky;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    opacity: 0;
    transition: .15s;
  }
  
  .accordion-ccee .card-ccee .card-body-ccee.active{
    flex: 1 1 auto;
  }
  
  .accordion-ccee .card-ccee .card-body-ccee.active > div{
    opacity: 1;
    transition-delay: .3s;
    transition: .6s;
  }
}



/* OPERAÇÕES */
.operacoes .tracks-right .superior{
  width: 75%;
  top: 0%;
}

.operacoes .content-operacoes{
  border: 1px solid #d9d9d9;
}

.operacoes .content-operacoes .operacao:not(:last-child){
  border-bottom: 1px solid #d9d9d9;
}

.operacoes .content-operacoes .operacao img{
  width: 80px;
}

/* .operacoes .operacao .helice-01 path{
  fill: #00FFFF;
}

.operacoes .operacao .helice-02 path{
  fill: #01008D;
} */

@media (max-width: 576px){
  .operacoes .anc{
    top: -5rem;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  .operacoes .anc{
    top: -5rem;
  }
}

@media (min-width: 992px){
  .operacoes .anc{
    top: -4rem;
  }
}



/* HELICE */
.helice{
  width: 80px;
  flex: 0 0 80px;
  height: auto;
}

.helice-01{
  animation: helice 12s linear infinite;
  transform-origin: 50% 50%;
}

.helice-02{
  animation: helice 8s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes helice{
  from{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
}


/* DOWNLOAD */
.download{
  position: relative;
  background: url(../img/bg-download-pdf.jpg) no-repeat center;
  background-size: cover;
}

.download::after{
  content: '';
  display: block;
  width: 90%;
  height: 100%;
  max-width: 600px;
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 0;
  background: url(../img/bg-lines-download.png) no-repeat left bottom;
  background-size: 100% auto;
  animation: linesDownload 6s ease-in-out infinite alternate;
}

@keyframes linesDownload {
  0%    { background-position: -70px bottom; }
  100%  { background-position: left bottom; }
}

.download .container-fluid{
  position: relative;
  z-index: 20;
}

.download h2, .download p{
  color: #FFF;
}

.download .btn-download{
  max-width: 340px;
  background: #ececec;
  border-radius: 16px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
  padding-right: .75rem;
  overflow: hidden;
}

.download .btn-download .icon{
  padding: 1rem 1.5rem;
  margin-right: 1.5rem;
  background: #FFF;
  border-right: 2px solid #ececec;
}

.download .btn-download .icon svg{
  width: 40px;
  fill: #00FFFF;
  transition: 1s;
  transition-delay: .3s;
}

.download .btn-download > span strong{
  color: #01008D;
}

.download .btn-download > span span{
  color: #a8a8a8;
}

.download .mais-downloads{
  border-top: 2px solid rgba(0, 255, 255, 0.2);
}

.download .mais-downloads p{
  color: #00FFFF;
}

.download .mais-downloads > .d-flex{
  gap: 1rem;
}

.download .mais-downloads .btn-download .icon{
  padding: .5rem .75rem;
  margin-right: .75rem;
}

.download .mais-downloads .btn-download .icon svg{
  width: 22px;
}


@media (max-width: 576px){
  .download .anc{
    top: -6.5rem;
  }

  .download .btn-download > span strong{
    font-size: 20px;
    line-height: 22px;
  }

  .download .btn-download > span span{
    font-size: 14px;
    line-height: 16px;
  }

  .download .mais-downloads .btn-download .icon svg{
    height: calc(22px + 1.5rem);
  }

  .download .mais-downloads p{
    font-size: 12px;
    line-height: 16px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  }

  .download .mais-downloads .btn-download > span strong{
    font-size: 16px;
    line-height: 18px;
  }
  
  .download .mais-downloads .btn-download > span span{
    font-size: 13px;
    line-height: 15px;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  .download .anc{
    top: -3rem;
  }

  .download .btn-download > span strong{
    font-size: 23px;
    line-height: 25px;
  }

  .download .btn-download > span span{
    font-size: 17px;
    line-height: 19px;
  }

  .download .mais-downloads .btn-download .icon svg{
    height: calc(22px + 2rem);
  }

  .download .mais-downloads .btn-download > span strong{
    font-size: 19px;
    line-height: 21px;
  }
  
  .download .mais-downloads .btn-download > span span{
    font-size: 15px;
    line-height: 17px;
  }
}

@media (min-width: 992px){
  .download{
    background-attachment: fixed;
  }

  .download .anc{
    top: -6.5rem;
  }

  .download .btn-download > span strong{
    font-size: 26px;
    line-height: 28px;
  }

  .download .btn-download > span span{
    font-size: 20px;
    line-height: 22px;
  }

  .download .mais-downloads .btn-download .icon svg{
    height: calc(22px + 2.25rem);
  }

  .download .mais-downloads .btn-download > span strong{
    font-size: 18px;
    line-height: 20px;
  }
  
  .download .mais-downloads .btn-download > span span{
    font-size: 15px;
    line-height: 17px;
  }

  .download .btn-download:hover{
    background: #FFF;
    transform: scale(1.05) !important;
    transition: 1s !important;
  }

  .download .btn-download:hover .icon svg{
    transform: scale(1.3);
    transition: .3s;
  }
}



/* FOOTER */
footer{
  position: relative;
  background: #01008D;
}

footer .circle-helice{
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  background: #01008D;
  border-radius: 50%;
}

footer .circle-helice img{
  transform: scale(.6);
}

/* footer .circle-helice .helice{
  transform: scale(0.75);
}

footer .circle-helice .helice .helice-01 path{
  fill: #00FFFF;
}

footer .circle-helice .helice .helice-02 path{
  fill: #FFF;
} */

footer .logo-footer{
  width: 40%;
  max-width: 250px;
}

footer .col-social h4{
  color: #FFF;
}

footer .col-social .social{
  gap: 8px;
}

footer .col-social .social a{
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid #FFF;
  border-radius: 50%;
  background: url(../img/icon-social.svg) no-repeat;
  background-size: auto 30px;
}

footer .col-social .social a:nth-of-type(2) { background-position-x: -30px; }
footer .col-social .social a:nth-of-type(3) { background-position-x: -60px; }
footer .col-social .social a:nth-of-type(4) { background-position-x: -90px; }
footer .col-social .social a:nth-of-type(5) { background-position-x: -120px; }
footer .col-social .social a:nth-of-type(6) { background-position-x: -150px; }
footer .col-social .social a:nth-of-type(7) { background-position-x: -180px; }

footer .endereco a{
  color: #FFF;
}

footer .endereco a::before{
  content: "";
  width: 40px;
  height: 30px;
  flex-shrink: 0;
  background: url(../img/icones-rodape.svg) no-repeat left;
}

footer .endereco a:nth-of-type(1):before { background-position-y: 0; margin-top: 5px; }
footer .endereco a:nth-of-type(2):before { background-position-y: -35px; }
footer .endereco a:nth-of-type(3):before { background-position-y: -62px; }

@media (min-width: 992px){
  footer .col-social .social a:hover{
    border-color: #00FFFF;
    background-color: rgba(0, 255, 255, 0.2);
    transform: scale(1.1);
  }
}