@media (min-width: 992px){
  /* SCROLLBAR */
  /* ===== Scrollbar para Chrome, Edge e Safari ===== */
  ::-webkit-scrollbar{
    width: 12px; /* largura da barra */
    height: 12px; /* altura da barra horizontal */
  }
  
  ::-webkit-scrollbar-track{
    background: #fff; /* cor de fundo */
  }
  
  ::-webkit-scrollbar-thumb{
    background-color: #fcca64; /* cor da barra */
    border-radius: 6px; /* borda arredondada */
    border: 2px solid #fff; /* "espaço" entre a barra e o fundo */
  }
  
  /* setas */
  ::-webkit-scrollbar-button{
    background-color: #fcca64;
  }
  
  /* ===== Scrollbar para Firefox ===== */
  *{
    scrollbar-width: thin; /* "auto" | "thin" */
    scrollbar-color: #fcca64 #fff; /* thumb cor | track cor */
  }
}

/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

/* RESET */
html{
  scroll-behavior: smooth;
}

body{
  font-family: "Sansation", sans-serif;
  overflow-x: hidden;
  color: #333333;
}

main{
  width: 100%;
  overflow: hidden;
}

img{
  width: 100%;
}

figure{
  margin: 0;
  overflow: hidden;
}

a{
  transition: 0.3s;
}

a:hover{
  text-decoration: none;
}

strong{
  font-weight: bold;
}

h1{
  font-weight: 600;
}

h2,
h3{
  font-weight: 500;
}

h2,
h3{
  color: #009e61;
}

section{
  /* overflow-x: hidden; */
}

/* SECTION FULL SCREEN */
@media (min-width: 1280px){
  .section-full{
    min-height: calc(100vh - 60px);
    min-height: calc(100dvh - 60px);
  }
}

.container-fluid{
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

.anc{
  position: relative;
}

.title-primary{
  font-weight: 300;
  color: #009e61;
}

.title-primary small{
  display: block;
  color: #fcca64;
  font-weight: 500;
}

@media (max-width: 576px){
  body{
    font-size: 14px;
    line-height: 24px;
  }

  h2{
    font-size: 26px;
  }

  .title-primary{
    font-size: 30px;
  }

  .title-primary small{
    font-size: 16px;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  body{
    font-size: 16px;
    line-height: 24px;
  }

  h2{
    font-size: 36px;
  }

  .title-primary{
    font-size: 46px;
  }

  .title-primary small{
    font-size: 22px;
  }
}

@media (min-width: 992px) and (max-width: 1600px){
  body{
    font-size: 18px;
    line-height: 26px;
  }

  h2{
    font-size: 46px;
  }

  .title-primary{
    font-size: 54px;
  }

  .title-primary small{
    font-size: 26px;
  }
}

@media (min-width: 1600px){
  body{
    font-size: 20px;
    line-height: 28px;
  }

  h2{
    font-size: 56px;
  }

  .title-primary{
    font-size: 60px;
  }

  .title-primary small{
    font-size: 30px;
  }
}

@media (min-width: 992px){
  .container-fluid{
    padding: 0 2rem;
  }
}

@media (max-width: 1280px){
  .anc{
    top: -56px;
  }
}

@media (min-width: 1280px){
  .anc{
    top: -60px;
  }
}



/* MOLDURE */
.moldure{
  position: relative;
  overflow: initial;
  height: 100%;
}

.moldure::before{
  content: "";
  display: block;
  position: absolute;
  z-index: 20;
}

.moldure::before{
  top: 1.5rem;
  left: 1.5rem;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.moldure-right::before{
  border-radius: 8.5rem 0 0 0;
}

.moldure-left::before{
  border-radius: 0 8.5rem 0 0;
}

.moldure.moldure-right::after{
  right: 3rem;
}

.moldure.moldure-left::after{
  left: 3rem;
}

.moldure.moldure-right .bg-moldure{
  border-radius: 10rem 0 0 0;
}

.moldure.moldure-left .bg-moldure{
  border-radius: 0 10rem 0 0;
}

.moldure .bg-moldure{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.moldure .bg-moldure::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-size: cover !important;
  animation: kenBurnsSmooth 20s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes kenBurnsSmooth{
  0%{
    transform: scale(1.2) translate(-2%, -2%);
    transform-origin: top left;
  }
  50%{
    transform: scale(1) translate(0, 0);
    transform-origin: center;
  }
  100%{
    transform: scale(1.2) translate(-2%, -2%);
    transform-origin: top left;
  }
}

.moldure-text{
  background: #fcca64;
  overflow: hidden;
}

.moldure-text::before{
  content: "";
  display: block;
  position: absolute;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.moldure-text-right, .moldure-text-right::before{
  border-radius: 3rem 0 3rem 0;
}

.moldure-text-left, .moldure-text-left::before{
  border-radius: 0 3rem 0 3rem;
}

@media (max-width: 992px){
  .moldure{
    min-height: 260px;
  }

  .moldure-text{
    padding: 2rem;
  }

  .moldure-text::before{
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
  }
}

@media (min-width: 992px){
  .moldure{
    min-height: 460px;
  }

  .moldure-text{
    padding: 3rem;
    margin-top: -5rem;
  }

  .moldure-text::before{
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
  }
}

@media (min-width: 1500px){
  .moldure-right{
      width:calc(100% + ((100vw - 1500px) / 2));
      max-width:none;
      margin-right:calc((100vw - 1500px) / -2);
  }

  .moldure-left{
      width:calc(100% + ((100vw - 1500px) / 2));
      max-width:none;
      margin-left:calc((100vw - 1500px) / -2);
  }

  .moldure-text{
    margin-top: -5rem;
  }
}



/* HALF-MOON */
.half-moon{
  position: absolute;
  z-index: 20;
}

.half-moon span{
  display: block;
  width: 100%;
  background: #009e61;
  aspect-ratio: 2 / 1;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

@media (max-width: 576px){
  .half-moon{
    margin-bottom: 1rem;
  }

  .moldure.moldure-right .half-moon{
    bottom: 1rem;
    left: -30px;
  }

  .moldure.moldure-left .half-moon{
    bottom: 1rem;
    right: -30px;
  }

  .half-moon span{
    margin-bottom: 1rem;
    width: 60px;
    height: 30px;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  .moldure.moldure-right .half-moon{
    left: -40px;
    bottom: 2rem;
  }

  .moldure.moldure-left .half-moon{
    right: -40px;
    bottom: 2rem;
  }

  .half-moon span{
    margin-bottom: 1rem;
    width: 80px;
    height: 40px;
  }
}

@media (min-width: 992px){
  .moldure.moldure-right .half-moon{
    left: -60px;
    bottom: 2.25rem;
  }

  .moldure.moldure-left .half-moon{
    right: -60px;
    bottom: 2.25rem;
  }

  .half-moon span{
    margin-bottom: 0.75rem;
    width: 120px;
    height: 60px;
  }
}



/* LINE DIVIDION */
.line{
  position: relative;
  background: #fcca64;
}

.line::before,
.line::after{
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #009e61;
  border-radius: 50%;
}

.line-horizontal{
  width: 100%;
  height: 1px;
}

.line-horizontal::before{
  top: -5px;
  left: 0;
}

.line-horizontal::after{
  top: -5px;
  right: 0;
}

.line-vertical{
  width: 1px;
  height: 100%;
}

.line-vertical::before{
  top: 0;
  left: -5px;
}

.line-vertical::after{
  bottom: 0;
  left: -5px;
}



/* NAVBAR */
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  background: #FFF;
  transition: .3s;
}

.navbar-brand:hover{
  cursor: pointer;
  background: transparent !important;
}

.navbar .nav-item .nav-link{
  position: relative;
  font-size: 17px;
  color: #777;
  transition: 0.3s;
  border-radius: 10px;
  user-select: none;
  cursor: pointer;
}

.navbar .nav-item .nav-link::after{
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(40%);
  width: 20%;
  height: 4px;
  background: #fcca64;
  opacity: 0;
  transform: skewX(45deg);
  transition: 0.6s;
}

.navbar .nav-link:hover::after{
  width: 60%;
  left: calc(20%);
  opacity: 1;
}

.navbar .nav-item .nav-link.nav-download{
  /* background: #fff; */
  border: 1px solid #fcca64;
  color: #009e61;
  border-radius: 12px;
  padding: 0 0 0 1rem;
  overflow: hidden;
}

.navbar .nav-item .nav-link.nav-download::after{
  display: none;
}

.navbar .nav-item .nav-link.nav-download::before{
  content: "";
  display: block;
  width: 52px;
  height: 42px;
  background: url("../img/icone-download.svg") no-repeat center #fcca64;
  background-size: auto 20px;
  margin-left: 1rem;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  transition: .3s;
}

@media (min-width: 992px){
  .navbar .nav-item .nav-link.nav-download:hover::before{
    transform: scale(1.2);
  }
}


@media (min-width: 1230px){
  .navbar .nav-item .nav-link.nav-download:hover{
    padding-left: 1.5rem;
  }
  
  .navbar .nav-item .nav-link.nav-download:hover::before{
    margin-left: 1.5rem;
    transform: scale(1.2);
  }
}

/* .navbar .nav-link.nav-download{
  display: flex;
  align-items: center;
  border: 1px solid #00FFFF;
} */

/* NAVBAR FIXED */
.navbar.navbar-fixed{
  padding: 0.5rem 1rem;
  background: #009e61;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
}

.navbar.navbar-fixed .navbar-brand img{
  filter: invert(100) brightness(200);
}

.navbar.navbar-fixed .nav-item .nav-link{
  color: #FFF;
}


@media (max-width: 576px){
  .navbar{
    padding: 1rem;
  }

  .navbar-brand img{
    height: 16px;
  }
}

@media (min-width: 576px){
  .navbar{
    padding: 1.5rem 1rem;
  }

  .navbar-brand img{
    height: 20px;
  }
}

/* MENU MOBILE */
.navbar .navbar-toggler{
  width: 40px;
  height: 40px;
  background: url(../img/abre-menu.svg) no-repeat center;
  background-size: 70% auto;
}

.menu-mobile{
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  max-width: 400px;
  background: #009e61;
  color: #fff;
  transition: left 0.3s ease-in-out;
  z-index: 9999;
  overflow-y: scroll;
}

.menu-mobile .logo-menu-mobile{
  width: 260px;
  filter: invert(100) brightness(200);
}

.menu-mobile .menu-mobile-close{
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
  background: url(../img/close.svg) no-repeat center;
  background-size: 40% auto;
}

.menu-mobile .header-menu-mobile{
  background: rgba(252, 202, 100, 0.3);
  /* border-bottom: 3px solid rgba(252, 202, 100, 0.4); */
  border-bottom: 3px solid rgba(255, 255, 255, 0.4);

  opacity: 0;
  padding: 1rem 0;
}

.menu-mobile ul{
  position: relative;
  width: 80%;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.menu-mobile ul li{
  padding: 0.5rem 1rem;
  opacity: 0;
  transform: translateX(-30px);
}

.menu-mobile ul li:not(:last-child){
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-mobile ul li:not(:last-child)::before,
.menu-mobile ul li:not(:last-child)::after{
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fcca64;
  position: absolute;
  bottom: -4px;
}

.menu-mobile ul li:not(:last-child)::before{
  left: 0;
}

.menu-mobile ul li:not(:last-child)::after{
  right: 0;
}

.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: #fcca64;
}

.menu-mobile ul li.nav-download{
  margin-top: 2rem;
}

.menu-mobile ul li.nav-download::before,
.menu-mobile ul li.nav-download::after{
  display: none;
}

.menu-mobile ul li.nav-download a{
  background: #fff;
  color: #009e61;
  border-radius: 12px;
  line-height: 54px;
  padding: 0 0 0 1rem;
  overflow: hidden;
}

.menu-mobile ul li.nav-download a::after{
  content: "";
  display: block;
  width: 70px;
  height: 54px;
  background: url("../img/icone-download.svg") no-repeat center #fcca64;
  background-size: auto 28px;
  margin-left: 1rem;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.menu-mobile.active{
  left: 0;
}

.menu-mobile.active .header-menu-mobile{
  padding: 3rem 0;
  opacity: 1;
  transition: 0.45s;
  transition-delay: 0.35s;
}

.menu-mobile.active ul li{
  opacity: 1;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  transform: translateX(0);
}

/* delays em cascata */
.menu-mobile.active ul li:nth-child(1){
  transition-delay: 0.55s;
}

.menu-mobile.active ul li:nth-child(2){
  transition-delay: 0.75s;
}

.menu-mobile.active ul li:nth-child(3){
  transition-delay: 0.95s;
}

.menu-mobile.active ul li:nth-child(4){
  transition-delay: 1.05s;
}

.menu-mobile.active ul li:nth-child(5){
  transition-delay: 1.25s;
}

.menu-mobile.active ul li:nth-child(6){
  transition-delay: 1.45s;
}

.menu-mobile.active ul li:nth-child(7){
  transition-delay: 1.65s;
}

.menu-mobile.active ul li:nth-child(8){
  transition-delay: 1.85s;
}

.menu-mobile.active ul li:nth-child(9){
  transition-delay: 2.05s;
}

.meny-mobile-close{
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.overlay{
  position: fixed;
  z-index: 9990;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}

/* VÍDEO */
.video{
  position: relative;
  overflow: initial;
}

.video::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}

.video .content{
  position: absolute;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
}

.video .video-amaggi{
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.video .video-amaggi video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 576px){
  .video{
    margin-top: 72px;
    height: calc(80vh - 72px);
    height: calc(80dvh - 72px);
    min-height: 300px;
  }
}

@media (min-width: 576px) and (max-width: 1200px){
  .video{
    margin-top: 88px;
    height: calc(80vh - 88px);
    height: calc(80dvh - 88px);
    min-height: 760px;
  }
}

@media (min-width: 1200px){
  .video{
    margin-top: 90px;
    height: calc(90vh - 90px);
    height: calc(90dvh - 90px);
    min-height: 760px;
  }
}

@media (min-width: 1200px){
  .video .content{
    height: 100%;
  }
}

@media (max-width: 1200px){
  .video .content{
    padding-top: 8rem;
  }
}

/* ANIMATED TITLE */
.anima-title{
  display: inline-block;
}

.anima-title span{
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: 300;
  opacity: 0;
  animation: letra 0.01s forwards;

  -webkit-mask-image: -webkit-radial-gradient(white, black);
  
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  
  -webkit-text-stroke: 0.1px transparent;
}

.anima-title span::after{
  content: "|";
  position: absolute;
  right: -16px;
  top: 0;
  opacity: 0;
  will-change: opacity;
  transform: translateZ(0);
  animation: cursorChar 0.2s steps(1, end) forwards;
}

/* letra aparece */
@keyframes letra{
  to{
    opacity: 1;
  }
}

/* cursor aparece e some */
@keyframes cursorChar{

  0%{
    opacity: 1;
    visibility: visible;
  }

  70%{
    opacity: 1;
    visibility: visible;
  }

  100%{
    opacity: 0;
    visibility: hidden;
  }
}

.anima-title span strong{
  color: #fcca64;
  font-weight: bold;
}



/* delays por caractere */
.anima-title span:nth-child(1),
.anima-title span:nth-child(1)::after{
  animation-delay: 0.2s;
}
.anima-title span:nth-child(2),
.anima-title span:nth-child(2)::after{
  animation-delay: 0.4s;
}
.anima-title span:nth-child(3),
.anima-title span:nth-child(3)::after{
  animation-delay: 0.6s;
}
.anima-title span:nth-child(4),
.anima-title span:nth-child(4)::after{
  animation-delay: 0.8s;
}
.anima-title span:nth-child(5),
.anima-title span:nth-child(5)::after{
  animation-delay: 1s;
}

.anima-title span:nth-child(6),
.anima-title span:nth-child(6)::after{
  animation-delay: 1.2s;
}
.anima-title span:nth-child(7),
.anima-title span:nth-child(7)::after{
  animation-delay: 1.4s;
}
.anima-title span:nth-child(8),
.anima-title span:nth-child(8)::after{
  animation-delay: 1.6s;
}
.anima-title span:nth-child(9),
.anima-title span:nth-child(9)::after{
  animation-delay: 1.8s;
}

.anima-title span:nth-child(10),
.anima-title span:nth-child(10)::after{
  animation-delay: 2s;
}
.anima-title span:nth-child(11),
.anima-title span:nth-child(11)::after{
  animation-delay: 2.2s;
}
.anima-title span:nth-child(12),
.anima-title span:nth-child(12)::after{
  animation-delay: 2.4s;
}

.anima-title span:nth-child(13),
.anima-title span:nth-child(13)::after{
  animation-delay: 2.6s;
}
.anima-title span:nth-child(14),
.anima-title span:nth-child(14)::after{
  animation-delay: 2.8s;
}
.anima-title span:nth-child(15),
.anima-title span:nth-child(15)::after{
  animation-delay: 3s;
}
.anima-title span:nth-child(16),
.anima-title span:nth-child(16)::after{
  animation-delay: 3.2s;
}
.anima-title span:nth-child(17),
.anima-title span:nth-child(17)::after{
  animation-delay: 3.4s;
}
.anima-title span:nth-child(18),
.anima-title span:nth-child(18)::after{
  animation-delay: 3.6s;
}

@media (max-width: 360px){
  .anima-title{
    font-size: 20px;
  }
}

@media (min-width: 360px) and (max-width: 576px){
  .anima-title{
    font-size: 30px;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  .anima-title{
    font-size: 60px;
  }
}

@media (min-width: 992px){
  .anima-title{
    font-size: 90px;
  }
}



/* BTN VIDEO */
.btn-video{
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem 0.75rem 0.75rem;
  background: rgba(252, 202, 100, 0.15);
  font-weight: 300;
  color: #fff;
  transition: 0.6s;
  cursor: pointer;
  overflow: hidden;
  animation: showBtnVideo 2s forwards;
  animation-delay: 0.3s;
  animation-fill-mode: backwards;
}

.btn-video::before{
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  background: url("../img/icone-play.svg") no-repeat;
  background-size: 100% auto;
  transition: 1s;
  animation: showIconBtnVideo 2s forwards;
}

@keyframes showBtnVideo{
  0%{
    background: rgba(252, 202, 100, 0);
    color: transparent;
  }

  100%{
    background: rgba(252, 202, 100, 0.15);
    color: #fff;
  }
}

@keyframes showIconBtnVideo{
  0%{
    transform: scale(0);
  }
  25%{
    transform: scale(1.2);
  }
  100%{
    transform: scale(1);
  }
}

@media (max-width: 1200px){
  .btn-video{
    border-radius: 40px;
    font-size: 24px;
    line-height: 28px;
  }

  .btn-video::before{
    width: 50px;
    height: 50px;
    margin-right: 1rem;
  }
}

@media (min-width: 1200px){
  .btn-video{
    border-radius: 47px;
    font-size: 28px;
    line-height: 32px;
  }

  .btn-video::before{
    width: 70px;
    height: 70px;
    margin-right: 1.5rem;
  }
}

@media (min-width: 992px){
  .btn-video:hover{
    background: rgba(252, 202, 100, 0.35);
  }

  .btn-video:hover::before{
    transform: scale(1.1);
  }
}

/* MOSAICO VIDEO */
.mosaico-video{
  position: absolute;
  z-index: 30;
  left: 1rem;
}

.mosaico-video g{
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.6);
  opacity: 0;
  animation:
    showBox 1s forwards,
    moveBox 10s infinite;
}

.mosaico-video g:nth-of-type(1){
  animation-delay: 0.1s, 2.6s;
}
.mosaico-video g:nth-of-type(2){
  animation-delay: 0.2s, 2.7s;
}
.mosaico-video g:nth-of-type(3){
  animation-delay: 0.3s, 2.8s;
}
.mosaico-video g:nth-of-type(4){
  animation-delay: 0.4s, 2.9s;
}
.mosaico-video g:nth-of-type(5){
  animation-delay: 0.5s, 3s;
}
.mosaico-video g:nth-of-type(6){
  animation-delay: 0.6s, 3.1s;
}
.mosaico-video g:nth-of-type(7){
  animation-delay: 0.7s, 3.2s;
}
.mosaico-video g:nth-of-type(8){
  animation-delay: 0.8s, 3.3s;
}
.mosaico-video g:nth-of-type(9){
  animation-delay: 0.9s, 3.4s;
}
.mosaico-video g:nth-of-type(10){
  animation-delay: 1s, 3.5s;
}
.mosaico-video g:nth-of-type(11){
  animation-delay: 1.1s, 3.6s;
}
.mosaico-video g:nth-of-type(12){
  animation-delay: 1.2s, 3.7s;
}
.mosaico-video g:nth-of-type(13){
  animation-delay: 1.3s, 3.8s;
}
.mosaico-video g:nth-of-type(14){
  animation-delay: 1.4s, 3.9s;
}
.mosaico-video g:nth-of-type(15){
  animation-delay: 1.5s, 4s;
}
.mosaico-video g:nth-of-type(16){
  animation-delay: 1.6s, 4.1s;
}
.mosaico-video g:nth-of-type(17){
  animation-delay: 1.7s, 4.2s;
}
.mosaico-video g:nth-of-type(18){
  animation-delay: 1.8s, 4.3s;
}
.mosaico-video g:nth-of-type(19){
  animation-delay: 1.9s, 4.4s;
}
.mosaico-video g:nth-of-type(20){
  animation-delay: 2s, 4.5s;
}
.mosaico-video g:nth-of-type(21){
  animation-delay: 2.1s, 4.6s;
}
.mosaico-video g:nth-of-type(22){
  animation-delay: 2.2s, 4.7s;
}
.mosaico-video g:nth-of-type(23){
  animation-delay: 2.3s, 4.8s;
}
.mosaico-video g:nth-of-type(24){
  animation-delay: 2.4s, 4.9s;
}
.mosaico-video g:nth-of-type(25){
  animation-delay: 2.5s, 5s;
}

@keyframes showBox{
  0%{
    transform: scale(0.6);
    opacity: 0;
  }
  75%{
    transform: scale(1.05);
    opacity: 1;
  }
  100%{
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes moveBox{
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(0.85);
  }
  100%{
    transform: scale(1);
  }
}

.mosaico-video .mosaico-slide{
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.mosaico-video .mosaico-slide.active{
  opacity: 1;
  pointer-events: auto;
}

@media (max-height: 700px) and (max-width: 576px){
  .mosaico-video{
    display: none;
  }
}

@media (max-width: 576px){
  .mosaico-video{
    bottom: -44px;
    width: 280px;
  }
}

@media (min-width: 576px) and (max-width: 1200px){
  .mosaico-video{
    bottom: -60px;
    width: 380px;
  }
}

@media (min-width: 1200px){
  .mosaico-video{
    bottom: -80px;
    width: 500px;
  }
}


/* MODAL VÍDEO */
.modal{
  z-index: 9999;
}

.modal .close{
  position: absolute;
  right: 0;
  top: 0;
  z-index: 90;
  width: 40px;
  height: 40px;
  opacity: 1;
  background: url("../img/close.svg") no-repeat center #fcca64;
  background-size: 40%;
  transition: 0.3s;
}

.modal .close:hover{
  opacity: 1 !important;
  transform: scale(1.2);
}



/* NOSSA ESSENCIA */
.nossa-essencia{
  position: relative;
  z-index: 20;
}

.nossa-essencia .moldure.nossa-trajetoria .bg-moldure::before{
  background: url("../img/nossa-trajetoria.webp") no-repeat center;
}

.nossa-essencia .moldure.beyond-commodities .bg-moldure::before{
  background: url("../img/beyond-commodities.webp") no-repeat center;
}

.row-nossa-essencia::after{
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #eee;
}

@media (max-width: 992px){
  .nossa-essencia .anc{
    top: 30px;
  }

  .row-nossa-essencia{
    padding: 3rem 0;
  }

  .row-beyond-commodities{
    padding-top: 3rem;
  }
}

@media (min-width: 992px){
  .nossa-essencia .anc{
    top: calc(-80px - 60px);
  }
  
  .nossa-essencia .moldure.nossa-trajetoria{
    height: calc(100% + 80px);
    margin-top: -80px;
  }

  .row-nossa-essencia{
    padding: 0 0 5rem 0;
  }

  .row-beyond-commodities{
    padding-top: 5rem;
  }
}


/* DESTAQUES */
.scroll-horizontal{
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.cols-destaque{
  display: flex;
  min-width: min-content;
}

.col-destaque{
  flex: 0 0 260px;
  padding: 10px 0;
}

.col-destaque .icon{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: url("../img/icones-destaque.svg") no-repeat #009e61;
  background-size: 100% auto;
  -webkit-box-shadow: -15px 15px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: -15px 15px 20px 0px rgba(0, 0, 0, 0.2);
}

.col-destaque.destaque-02 .icon{
  background-position: 0 -77px;
}
.col-destaque.destaque-03 .icon{
  background-position: 0 -154px;
}
.col-destaque.destaque-04 .icon{
  background-position: 0 -231px;
}
.col-destaque.destaque-05 .icon{
  background-position: 0 -308px;
}

.line-vertical{
  align-self: stretch;
  flex-shrink: 0;
  height: auto;
}

@media (max-width: 1200px){
  .cols-destaque{
    padding-bottom: 1rem;
  }
}

@media (min-width: 1200px){
  .scroll-horizontal{
    overflow-x: hidden;
  }

  .cols-destaque{
    min-width: 100%;
    justify-content: space-between;
  }

  .col-destaque{
    flex: 1 1 0;
    max-width: 100%;
  }
}



/* NOSSOS NÚMEROS */
.nossos-numeros{
  position: relative;
  overflow: hidden;
}

.nossos-numeros .parallax{
  position: absolute;
  z-index: -5;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  object-fit: cover;
  will-change: transform;
  background: url(../img/bg-nossos-numeros.webp) no-repeat center;
  background-size: cover;
}

.nossos-numeros::before{
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.nossos-numeros .title-primary{
  color: #fff;
}

.nossos-numeros .icon{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #fcca64;
  background: url("../img/icones-numeros.svg") no-repeat #009e61;
  background-size: 100% auto;
  -webkit-box-shadow: -15px 15px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: -15px 15px 20px 0px rgba(0, 0, 0, 0.2);
}

.nossos-numeros .box-numero:nth-of-type(2) .icon{
  background-position: 0 -77px;
}
.nossos-numeros .box-numero:nth-of-type(3) .icon{
  background-position: 0 -154px;
}
.nossos-numeros .box-numero:nth-of-type(4) .icon{
  background-position: 0 -231px;
}
.nossos-numeros .box-numero:nth-of-type(5) .icon{
  background-position: 0 -308px;
}

.nossos-numeros .box-numero h4,
.nossos-numeros .box-numero h4::before,
.nossos-numeros .box-numero h4::after,
.nossos-numeros .box-numero p{
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
}

.nossos-numeros .box-numero h4{
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

.nossos-numeros .box-numero.box-mais h4::before{
  content: "+";
  font-size: 80%;
}

.nossos-numeros .box-numero.box-bilhoes h4::before{
  content: "U$ \00a0";
}

.nossos-numeros .box-numero.box-bilhoes h4::after{
  display: block;
  content: "\00a0 bilhões";
}

.nossos-numeros .box-numero.box-milhao h4::after{
  display: block;
  content: "\00a0 milhão";
}

.nossos-numeros .box-numero.box-milhoes h4::after{
  display: block;
  content: "\00a0 milhões";
}

.nossos-numeros .box-numero.box-porcentagem h4::after{
  content: "\00a0 %";
}

.nossos-numeros .box-numero p.position-absolute{
  top: -10px;
  color: #ddd;
}

.nossos-numeros .box-numero p{
  color: #fcca64;
  font-weight: bold;
}

@media (max-width: 576px){
  .nossos-numeros .box-numero h4{
    font-size: 40px;
  }

  .nossos-numeros .box-numero h4::before,
  .nossos-numeros .box-numero h4::after{
    font-size: 18px;
  }

  .nossos-numeros .box-numero p{
    line-height: 16px;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  .nossos-numeros .box-numero h4{
    font-size: 60px;
  }

  .nossos-numeros .box-numero h4::before,
  .nossos-numeros .box-numero h4::after{
    font-size: 24px;
  }

  .nossos-numeros .box-numero p{
    line-height: 18px;
  }
}

@media (min-width: 992px){
  .nossos-numeros{
    background: url("../img/bg-nossos-numeros.webp") no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }

  .nossos-numeros .parallax{
    display: none;
  }

  .nossos-numeros .box-numero h4{
    font-size: 80px;
  }

  .nossos-numeros .box-numero h4::before,
  .nossos-numeros .box-numero h4::after{
    font-size: 30px;
  }

  .nossos-numeros .box-numero p{
    line-height: 20px;
  }
}



/* RESET CAROUSEL */
@media (min-width: 992px){
  .carousel-inner {
    display: grid !important;
    grid-template-columns: 100%;
    align-items: stretch;
  }
  
  .carousel-item {
    grid-area: 1 / 1 / 2 / 2;
    
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    transform: none !important;
    left: 0 !important;
    
    /* FADE SUAVE */
    opacity: 0;
    transition: opacity 0.8s ease-in-out !important;
    z-index: 0;
    pointer-events: none;
  }
  
  .carousel-item.active,
  .carousel-item.carousel-item-next.carousel-item-left,
  .carousel-item.carousel-item-prev.carousel-item-right {
    opacity: 1 !important;
    z-index: 1;
    pointer-events: auto;
  }
  
  .carousel-item.active.carousel-item-left,
  .carousel-item.active.carousel-item-right {
    opacity: 0 !important;
    z-index: 0;
    transition: opacity 0.8s ease-in-out !important;
  }
}



/* AVANÇOS ESG */
.avancos-esg {
  background: #f5f5f5;
}

.avancos-esg .col-12 > *{
  position: relative;
  z-index: 10;
}

.avancos-esg .col-meio-ambiente{
  background: #e0f0eb;
}

.avancos-esg .col-meio-ambiente .moldure-esg::after{
  background: rgba(0, 158, 97, .5);
}

.avancos-esg .col-social{
  background: #fffdef;
}

.avancos-esg .col-social .moldure-esg::after{
  background: rgba(252, 202, 100, .5);
}

.avancos-esg .col-governanca{
  background: #dbedf8;
}

.avancos-esg .col-governanca .moldure-esg::after{
  background: rgba(0, 99, 152, .5);
}

.avancos-esg .moldure-esg{
  border-radius: 20px 0;
  overflow: hidden;
  position: relative;
}

.avancos-esg .moldure-esg h3{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
}

.avancos-esg .moldure-esg::before, .avancos-esg .moldure-esg::after{
  content: "";
  display: block;
  position: absolute
}

.avancos-esg .moldure-esg::before{
  z-index: 20;
  top: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.avancos-esg .moldure-esg::after{
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.avancos-esg .title-primary{
  color: #006398;
}


@media (max-width: 576px){
  .avancos-esg .moldure-esg, .avancos-esg .moldure-esg::before{
    border-radius: 26px 0;
  }

  .avancos-esg .content-esg img{
    width: 60px;
  }
}

@media (min-width: 576px){
  .avancos-esg .moldure-esg, .avancos-esg .moldure-esg::before{
    border-radius: 36px 0;
  }

  .avancos-esg .content-esg img{
    width: 70px;
    flex-shrink: 0;
  }
}

@media (min-width: 992px){
  .avancos-esg .col-meio-ambiente::after, .avancos-esg .col-governanca::after{
    content: "";
    display: block;
    width: 200%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
  }

  .avancos-esg .col-meio-ambiente::after{
    background: #e0f0eb;
    right: 0;
  }

  .avancos-esg .col-governanca::after{
    background: #dbedf8;
    left: 0;
  }

  .avancos-esg .content-esg p{
    font-size: 14px;
    line-height: 20px;
  }
}



/* METAS E COMPROMISSOS */
.metas-compromissos{
  position: relative;
  background-color: #eee;
  overflow: hidden;
}

.metas-compromissos .container-fluid{
  position: relative;
  z-index: 20;

}

.metas-compromissos .carousel-item::after{
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  top: -25%;
  right: 50%;
  width: 100%;
  height: 150%;
  aspect-ratio: 1.1;
  border-radius: 50%;
}

.metas-compromissos .carousel-item .moldure .bg-moldure{
  border-radius: 50%;
  border-style: solid !important;
  aspect-ratio: 1 / 1;
  width: auto !important;
  transform: scale(1.1);
  left: auto;
  right: 50px;
}

.metas-compromissos .carousel-item .moldure::before{
  display: none;
}

.metas-compromissos .carousel-item.carousel-meio-ambiente .moldure .bg-moldure{
  border-color: #009e61;
}

.metas-compromissos .carousel-item.carousel-social .moldure .bg-moldure{
  border-color: #fcca64;
}

.metas-compromissos .carousel-item.carousel-governanca .moldure .bg-moldure{
  border-color: #006398;
}

.metas-compromissos .title-primary{
  color: #006398;
}

.metas-compromissos .title-primary small{
  color: #999;
}

.metas-compromissos .carousel{
  background: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}

.metas-compromissos .carousel .nosso-compromisso{
  border-left: 5px solid #006398;
}

.metas-compromissos .carousel h3{
  margin: .5rem 0 1.5rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #aaa;
  color: #006398;
}

.metas-compromissos .carousel .carousel-item{
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #aaa;
}

.metas-compromissos .carousel .carousel-item > div{
  gap: 1.5rem;
}

.metas-compromissos .carousel .carousel-indicators{
  position: inherit;
  margin: 0 auto;
  max-width: 500px;
}

.metas-compromissos .carousel .carousel-indicators li{
  text-indent: 0;
  margin: 0;
  padding: 0;
  border: none;
  width: 20%;
  height: auto;
  transform: scale(.8);
  transition: .6s;
  background: none;
}

.metas-compromissos .carousel .carousel-indicators li.active{
  transform: scale(1);
}

.metas-compromissos .carousel .carousel-control-prev,
.metas-compromissos .carousel .carousel-control-next{
  z-index: 20;
  width: 32px;
  opacity: 1;
}

.metas-compromissos .carousel .carousel-control-prev-icon,
.metas-compromissos .carousel .carousel-control-next-icon{
  background-color: #fcca64;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-size: 50%;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.metas-compromissos .carousel .carousel-control-prev{
  left: 5px;
}

.metas-compromissos .carousel .carousel-control-next{
  right: 5px;
}

.metas-compromissos .carousel-item.carousel-meio-ambiente{
  background: #e0f0eb;
}

.metas-compromissos .carousel-item.carousel-meio-ambiente::after{
  background: #009e61;
  background: linear-gradient(110deg, rgba(0, 158, 97, .4) 0%, rgba(0, 158, 97, 0) 100%);
}

.metas-compromissos .carousel-item.carousel-meio-ambiente .bg-moldure::before{
  background: url("../img/metas-compromissos-meio-ambiente.webp") no-repeat center;
}

.metas-compromissos .carousel-item.carousel-social{
  background: #fffdef;
}

.metas-compromissos .carousel-item.carousel-social .bg-moldure::before{
  background: url("../img/metas-compromissos-social.webp") no-repeat center;
}

.metas-compromissos .carousel-item.carousel-social::after{
  background: #fcca64;
  background: linear-gradient(230deg, rgba(252, 202, 100, .4) 0%, rgba(252, 202, 100, 0) 100%);
}

.metas-compromissos .carousel-item.carousel-governanca{
  background: #dbedf8;
}

.metas-compromissos .carousel-item.carousel-governanca .bg-moldure::before{
  background: url("../img/metas-compromissos-governanca.webp") no-repeat center;
}

.metas-compromissos .carousel-item.carousel-governanca::after{
  background: #006398;
  background: linear-gradient(110deg, rgba(0, 99, 152, .4) 0%, rgba(0, 99, 152, 0) 100%);
}

@media (max-width: 576px){
  .metas-compromissos .carousel-item .moldure .bg-moldure{
    border: 26px;
  }

  .metas-compromissos .carousel .carousel-item > div img{
    width: 72px;
  }
}

@media (min-width: 576px){
  .metas-compromissos .carousel-item .moldure .bg-moldure{
    border: 36px;
  }

  .metas-compromissos .carousel .carousel-item > div img{
    width: 80px;
    flex-shrink: 0;
  }
}


@media (min-width: 992px){
  .metas-compromissos .carousel-item .moldure .bg-moldure{
    border: 46px;
  }

  .metas-compromissos .carousel .carousel-indicators li:not(.active):hover{
    opacity: 1;
    transform: scale(.85);
  }
}



/* PRESENÇA */
.presenca{
  background: #00639B;
  background: linear-gradient(90deg, rgba(0, 99, 155, 1) 0%, rgba(0, 70, 140, 1) 100%);
}

.presenca .title-primary{
  color: #FFF;
}

.presenca p{
  color: #62c3eb;
}

.mapa-info{
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s;
}

.mapa-info.active{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.presenca #mapa-brasil{
  display: block;
}

.presenca .mapa-info #mapa-info-content, .presenca .mapa-info-default{
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 1.5rem;
  color: #FFF;
}

.presenca .mapa-info #mapa-info-content h3, .presenca .mapa-info-default h3{
  color: #FFF;
  margin: 0 0 1rem 0;
}

.presenca .mapa-info #mapa-info-content ul{
  padding: 0 0 0 1rem;
  margin: 0;
}

.presenca .mapa-info #mapa-info-content ul li{
  list-style: circle;
}

.presenca #mapa-brasil, .presenca #mapa-svg-area{
  max-width: 100%;
}

.presenca #mapa-brasil #mapa-svg-area > path{
  fill: #40a3d9;
}

.presenca #mapa-brasil #mapa-svg-area .estado-clickavel{
    fill: #d9dcdc;
    transition: .8s ease;
    /* stroke: transparent;
    stroke-dasharray: 180%;
    stroke-dashoffset: -120%;
    stroke-width: 2px; */
}

.presenca #mapa-brasil #mapa-svg-area .estado-clickavel text{
  transition: .3s ease;
  pointer-events: none;
  fill: #00639b;
  stroke: none !important;
}

.presenca #mapa-brasil #mapa-svg-area .estado-clickavel:hover{
  /*opacity: 0.6;*/
  cursor: pointer;
  fill: #009e61;
  /* stroke:#00639b;
  stroke-dashoffset: 0%; */
}

.presenca #mapa-brasil #mapa-svg-area .estado-clickavel:hover text{
  fill: #FFF;
}

.presenca #mapa-brasil #mapa-svg-area .estado-clickavel.active{
  /* cursor: pointer; */
  /* stroke: #00639b; */
  fill: rgb(14, 201, 129);
  stroke-dashoffset: 0%;
}

.presenca #mapa-brasil #mapa-svg-area .estado-clickavel.active text{
  fill: #FFF;
}

.presenca .mapa-mundi li{
  list-style: none;
}

.presenca .mapa-mundi li h4{
  color: #FFF;
}


@media (max-width: 992px){
  body.showEstado{
    overflow: hidden;
  }
  
  .presenca #mapa-brasil, .presenca #mapa-svg-area{
    height: auto;
  }

  .mapa-info{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
  }

  .mapa-info.active .mapa-cont{
    position: relative;
  }

  .mapa-info.active .mapa-cont #close-mapa-info{
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: url(../img/close-estado.svg) no-repeat center;
    background-size: 100%;
  }
}

@media (min-width: 992px){
  .mapa-info ul li{
    width: 50%;
  }
}

@media (min-width: 992px) and (max-width: 1200px){
  .presenca #mapa-brasil, .presenca #mapa-svg-area{
    height: 490px;
  }
}



/* DOWNLOAD */
.download{
  position: relative;
  background: url(../img/bg-downloads.webp) no-repeat center;
  background-size: cover;
}

.download::after{
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  /* border: 1px solid rgba(0, 158, 97, 0.5); */
  border: 1px solid #009e61;
  opacity: 0.4;
}

.download .half-moon{
  right: 2rem;
  top: -40px;
}

.download .container-fluid{
  position: relative;
  z-index: 20;
}

.download h2,
.download p{
  color: #fff;
}

.download .btn-download{
  background: #fff;
  color: #444;
  border-radius: 12px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
}

.download .btn-download::after{
  content: "";
  display: block;
  width: 90px;
  height: 100%;
  background: url("../img/icone-download.svg") no-repeat center #fcca64;
  background-size: auto 28px;
  margin-left: 1rem;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  border-radius: 0 12px 12px 0;
  transition: 1s;
}

.download .btn-download > span{
  padding: 1rem;
}
.download .btn-download > span strong{
  color: #009e61;
}

.download .btn-download > span small{
  color: #999;
}

.download .mais-downloads h4{
  color: #fcca64;
}

.download .mais-downloads > .d-flex{
  gap: 1rem;
}

.download .mais-downloads .btn-download::after{
  width: 70px;
}

@media (max-width: 576px){
  .download{
    background-position: center right;
  }

  .download .btn-download{
    justify-content: space-between;
    width: 100%;
  }

  .download .btn-download > span{
    font-size: 20px;
    line-height: 22px;
  }

  .download .btn-download > span small{
    font-size: 14px;
    line-height: 16px;
  }

  .download .mais-downloads .btn-download{
    width: auto;
  }

  .download .mais-downloads .btn-download > span{
    font-size: 16px;
    line-height: 18px;
  }

  .download .mais-downloads .btn-download > span small{
    font-size: 13px;
    line-height: 15px;
  }
}

@media (min-width: 576px) and (max-width: 992px){
  .download .btn-download > span{
    font-size: 23px;
    line-height: 25px;
  }

  .download .btn-download > span small{
    font-size: 17px;
    line-height: 19px;
  }

  .download .mais-downloads .btn-download > span{
    font-size: 19px;
    line-height: 21px;
  }

  .download .mais-downloads .btn-download > span small{
    font-size: 15px;
    line-height: 17px;
  }
}

@media (min-width: 992px){
  .download{
    background-attachment: fixed;
  }

  .download .btn-download > span{
    font-size: 26px;
    line-height: 28px;
    transition: 1s;
  }
  
  .download .btn-download::after{
    transition: 1s;
  }

  .download .btn-download > span small{
    font-size: 20px;
    line-height: 22px;
  }

  .download .mais-downloads .btn-download > span{
    font-size: 18px;
    line-height: 20px;
  }

  .download .mais-downloads .btn-download > span small{
    font-size: 15px;
    line-height: 17px;
  }

  .download .btn-download:hover{
    background: #fff;

    /* transform: scale(1.1) translateY(-5px) !important;
    transition-delay: 0s !important; */
  }

  .download .btn-download:hover span{
    padding: 1rem 1.5rem;
    transition: .6s;
  }
  
  .download .btn-download:hover::after{
    width: 110px;
    transition: .6s;
    transform: scale(1.2);
    border-radius: 12px;
  }
}



/* FOOTER */
footer{
  background: #eee;
}

footer .logo-footer{
  width: 100%;
  max-width: 250px;
}

footer .social{
  gap: 1.25rem;
}

footer .social a{
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: url(../img/icones-social.svg) no-repeat #009e61;
  background-size: 40px auto;
  -webkit-box-shadow: -7px 7px 15px 0px rgba(0, 0, 0, 0.2);
  box-shadow: -7px 7px 15px 0px rgba(0, 0, 0, 0.2);
}

footer .social a:nth-of-type(1){
  background-position: -1px 0;
}

footer .social a:nth-of-type(2){
  background-position: -1px -39px;
}

footer .social a:nth-of-type(3){
  background-position: -1px -79px;
}

footer .social a:nth-of-type(4){
  background-position: -1px -118px;
}

footer .endereco .icon{
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  border: 1px solid #fff;
  border-radius: 50%;
  background: url(../img/icones-endereco.svg) no-repeat #009e61;
  background-size: 40px auto;
  -webkit-box-shadow: -7px 7px 15px 0px rgba(0, 0, 0, 0.2);
  box-shadow: -7px 7px 15px 0px rgba(0, 0, 0, 0.2);
}

footer .endereco:nth-of-type(2) .icon{
  background-position-y: -40px;
}

footer .endereco a{
  color: #444;
}

footer .endereco h5{
  color: #009e61;
  font-weight: bold;
}

@media (min-width: 992px){
  footer .social a:hover{
    transform: scale(1.1);
  }
}

/* footer .parceiros{
  gap: 1.25rem;
}

footer .parceiros div{
  width: 104px;
  height: 54px;
  background: url(../img/parceiros.svg) no-repeat #fff;
  background-size: 104px auto;
  border-radius: 22px;
  -webkit-box-shadow: -7px 7px 15px 0px rgba(0, 0, 0, 0.2);
  box-shadow: -7px 7px 15px 0px rgba(0, 0, 0, 0.2);
}

footer .parceiros div:nth-of-type(2){
  background-position-y: -54px;
}

footer .parceiros div:nth-of-type(3){
  background: url(../img/associado-abme.png) no-repeat center;
  background-size: 48px;
  width: 54px;
  border-radius: 50%;
}

footer .parceiros div:nth-of-type(4){
  background-position-y: -108px;
}

footer .parceiros div:nth-of-type(5){
  background-position-y: -162px;
} */