#section-marquees{
    overflow-x: hidden;
    overflow-y: clip;
    position: relative;
    background: linear-gradient(to bottom, #FFFFFF 50%, #F9FEFB 50%);
}

#section-marquees #marquee-1{
    background-color: #0A487C;
    color: #FFFFFF;
    z-index: 1;
    transform: rotate(4.96deg);
    top: 1.8rem;
}

@media (min-width: 576px){
    #section-marquees #marquee-1{
        transform: rotate(3.84deg);    
    }
}

@media (min-width: 768px){
    #section-marquees #marquee-1{
        transform: rotate(2.8deg);
    }
}

@media (min-width: 992px){
    #section-marquees #marquee-1{
        transform: rotate(2.4deg);
    }
}

@media (min-width: 1200px){
    #section-marquees #marquee-1{
        transform: rotate(2deg);
    }
}

@media (min-width: 1440px){
    #section-marquees #marquee-1{
        transform: rotate(1.8deg);
    }
}

#section-marquees #marquee-2{
    background-color: #33CC66;
    color: #040404;
    z-index: 2;
    transform: rotate(-4.96deg);
    top: -1.44rem;
}

@media (min-width: 576px){
    #section-marquees #marquee-2{
        transform: rotate(-3.84deg);
    }
}

@media (min-width: 768px){
    #section-marquees #marquee-2{
        transform: rotate(-2.8deg);    
    }
}

@media (min-width: 992px){
    #section-marquees #marquee-2{
        transform: rotate(-2.4deg);
    }
}

@media (min-width: 1200px){
    #section-marquees #marquee-2{
        transform: rotate(-2deg);    
    }
}

@media (min-width: 1440px){
    #section-marquees #marquee-2{
        transform: rotate(-1.8deg);
    }
}

#section-marquees .marquee{
    color: #040404;
    font-weight: 700;
    font-size: 1.12rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    position: relative;
}


@media (min-width: 1200px){
   
}



.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: block;
  position: relative;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 160s linear infinite;
}

.marquee-duplicate {
  padding-left: 2rem; /* distância mínima entre os ciclos */
}

.reverse .marquee-content {
  animation: marquee-reverse 160s linear infinite;
}

/* Animações */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-reverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
