* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Benguiat";
  src: url(../assets/fonts/Benguiat\ Bold.ttf) format("truetype");
}

html,
body {
  overflow-x: hidden;
}

body {
  background-color: #0c0102;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Poppins";

}

h2 {
  font-size: 40px;
  font-weight: 500;
}

button {
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  background-color: transparent;
  color: white;
  font-size: 16px;
  display: flex;
  gap: 12px;
  border: none;
  outline: none;
  padding: 16px 0px;
  border-bottom: 1px solid white;
}

#preloader {
  width: 100%;
  height: 100vh;
  background-color: #0c0102;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;

  svg {
    width: 40vw;
    height: auto;

    path {
      fill: rgb(168, 19, 19, 0.364);
      stroke: rgb(168, 19, 19);
      stroke-dasharray: 1200;
      stroke-dashoffset: 1200;
    }
  }
}


ul {
  list-style-type: none;
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4vw;
  position: absolute;
  z-index: 9;

  #audioControl {
    border-bottom: none;
  }
}

section {
  width: 100%;
  display: flex;
  padding: 7vw;
}


.bgMonstro {
  background-image: url("../assets/img/bg-monstro.webp");
  background-position: center;
  background-size: cover;
  z-index: 2;
  position: relative;
  background-color: #0c0102;
}

.hero {
  background-position: 50% 0%;
  background-size: cover;
  height: 100vh;
  align-items: center;
  justify-content: space-between;
  padding: 0 7vw 7vw 7vw;
  position: relative;

  picture {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
    }
  }

  .bMonstro {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    object-fit: cover;
  }

  .esquerda,
  .direita {
    width: 30%;
    z-index: 3;
  }

  .esquerda {
    h3 {
      font-size: 24px;
      font-weight: 400;
      letter-spacing: 4px;
    }

    h1 {
      font-size: 3.7vw;
      font-family: 'Benguiat';
    }
  }

  .direita {
    display: flex;
    flex-direction: column;
    align-items: end;

    p {
      font-size: 2vw;
      margin-bottom: 32px;
      text-align: end;
    }


  }
}

.hero:before {
  content: "";
  background: linear-gradient(180deg, rgba(12, 1, 2, 0.00) 0%, #0c0102 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
}

.secaoCidade {
  flex-direction: column;
  position: relative;

  .titulo {
    display: flex;
    justify-content: space-between;
    align-items: center;


  }

  .cards {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;

    .card {
      background-image: url("../assets/img/card1.webp");
      width: 32%;
      aspect-ratio: 16/9;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: end;
      justify-content: space-between;
      padding: 20px;
    }

    .card:nth-child(2) {
      background-image: url("../assets/img/card2.webp");
    }

    .card:nth-child(3) {
      background-image: url("../assets/img/card3.webp");
    }
  }
}

.secaoDepoimentos {
  flex-direction: column;


  .logotipos {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }

  .depoimentos {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;

    .depoimento {
      width: 31%;
    }
  }
}

.secaoObrigado {
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: #0c0102;
  z-index: 2;

  h2 {
    margin-bottom: 40px;
  }

  ul {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}

footer {
  background-image: url(../assets/img/bg-footer.webp);
  background-position: center;
  background-size: cover;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  .conteudoFooter {
    display: flex;
    width: 100%;
    padding: 7vw;
  }

  .logoFooter {
    h3 {
      font-size: 24px;
      font-weight: 500;
      letter-spacing: 4px;
    }

    h2 {
      font-size: 3.7vw;
      font-family: "Benguiat";
    }
  }

  .secoesFooter {
    display: flex;
    flex: 1;
    justify-content: end;
    gap: 6%;
    align-items: end;

    h3 {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 12px;
    }

    .social {

      ul {
        display: flex;
        gap: 16px;
      }
    }
  }

  .logotiposFooter {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 4vw;
  }

  .textoInfinito {
    width: max-content;
    display: flex;

    h3 {
      color: rgb(191, 191, 191);
      font-size: 12vw;
      font-family: "Benguiat";
      mix-blend-mode: color-dodge;
      padding-left: 8vw;
      animation: textoInfinito 8s linear infinite;
    }
  }
}

@keyframes textoInfinito {
  100% {
    transform: translateX(-100%);
  }
}


@media(max-width: 1500px) {
  .secaoCidade {
    padding: 4vw;
  }
}

@media(max-width: 1400px) {
  .secaoCidade .cards .card {
    flex-direction: column;
    align-items: end;
    justify-content: end;

  }
}
@media (max-width: 768px) {

  .secaoObrigado {
    overflow: hidden;
  }

  .secaoObrigado ul {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 0 20px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .secaoObrigado ul::-webkit-scrollbar {
    display: none;
  }

  .secaoObrigado ul li {
    flex: 0 0 auto;
    scroll-snap-align: center;
    font-size: 1.2rem;
    padding: 10px 20px;
  }

}
@media(max-width: 650px) {
  section {
    padding: 4vw;
  }

  h2 {
    font-size: 6vw;
  }

  header {
    h2 {
      font-size: 20px;
    }
  }

  .hero {
    flex-direction: column;
    padding: 28% 4vw 0;

    .esquerda,
    .direita {
      width: 100%;
    }

    .esquerda {

      h3,
      h1 {
        text-align: center;
      }

      h1 {
        font-size: 12vw;
      }
    }

    .direita {
      align-items: start;

      p {
        font-size: 5.5vw;
        text-align: start;
        margin-bottom: 14px;
      }
    }
  }

  .secaoCidade {
    margin-top: 80px;

    button {
      display: none;
    }

    .cards {
      margin-top: 20px;
      flex-direction: column;
      gap: 20px;

      .card {
        width: 100%;
      }
    }

  }

  .secaoDepoimentos {
    .depoimentos {
      flex-direction: column;
      gap: 48px;

      .depoimento {
        width: 100%;
      }
    }
  }

  .logotipos img {
    max-width: 25vw;
  }

  .secaoObrigado {
    margin: 40px 0 60px;

    h2 {
      text-align: center;
    }

    ul {

     
      gap: 32px;
      display: flex;
    }
    li{
    width: max-content;
    text-align: center;
    }
  }

  footer {
    padding-top: 40px;

    .conteudoFooter {
      padding: 4vw;
      flex-direction: column;

      .logoFooter {
        width: 100%;

        h2,
        h3 {
          text-align: center;
        }

        h2 {
          font-size: 12vw;
        }
      }

      .secoesFooter {
        flex-wrap: wrap;
        justify-content: center;
        align-items: start;

        .social {
          width: 100%;
          display: flex;
          justify-content: center;
          flex-direction: column;
          align-items: center;
          margin: 40px 0 32px;
        }

        .institucional {
          width: 40%;
        }

        .parceiro {
          width: 50%;

          img {
            width: 100%;
          }
        }
      }
    }

    .logotiposFooter {
      margin-top: 40px;
    }

    .textoInfinito h3 {
      font-size: 20vw;
    }
  }
}

