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

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

html, body{
    overflow-x: hidden !important;
}

body {
    background-color: #0C0102;
    color: rgba(255, 255, 255, 0.9);
    font-family: poppins, sans-serif;
    overflow-x: hidden;
}

button {
    font-family: "poppins", sans-serif;
    cursor: pointer;
}

header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 2vw;
    position: absolute;
    z-index: 2;
}

section{
    width: 100%;
    display: flex;
    padding: 7vw;
  
}
button{
        background-color: transparent;
        color: white;
        font-size: 16px;
        display: flex;
        gap: 12px;
        border: none;
        outline: none;
        padding: 16px 0px;
        border-bottom: 1px solid white;
    }

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

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

    svg{
        width: 40vw;
        height: auto;
        
        path{
            fill: rgb(168, 19, 19, 0.364);
            stroke: rgb(168, 19, 19);
            stroke-dasharray: 1100;
            stroke-dashoffset: 640;
        }

    }
}

.bgmonstro{
    background-image: url("imagens/bg-sec2.webp");
    background-size: cover;
    background-position: center;
    z-index: 2;
    position: relative;
    background-color: #0C0102;

}

ul{
    list-style: none;
}
.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;
    }
  }

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

  .esquerda {
    h3 {
      font-size: 24px;
      font-weight: 500;
      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%;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}


.cidade{
    flex-direction: column;
    z-index: 2;
    position: relative;

.conteudo-cidade{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    
.cards{
    margin-top: 52px;
    display: flex;
    justify-content: space-between;

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

    }

.card:nth-child(2){
    background-image: url("imagens/card2.webp");
}
.card:nth-child(3){
    background-image: url("imagens/card3.webp");
}
}
}

.logo{
flex-direction: column;

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

   .depoimentos{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    
    .depoimento{
        
        width: 30%;
        
    }
   }

}

.obrigado{
    flex-direction: column;
    align-items: center;

    h2{
        margin-bottom: 40px;
    }

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

}

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

.conteudo-footer {
    display: flex;
    width: 100%;
    padding: 7vw;
}

.logo-footer{
    width: 20%;
     h3{
        font-size: 24px;
        font-weight: 500;
        letter-spacing: 4px;
    }
    h2{
        font-size: 3.7vw;
        font-family: "bengiat", sans-serif;
   }
}

.redes-sociais{
    display: flex;
    flex: 1;
    justify-content: end;
    align-items: end;

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

    .social{
        margin-right: 60px;
        ul{
            display: flex;
            gap: 12px;
        }
    }
    .parceiro{
        margin-right: 60px;
    }

    
}
.logotipo-footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
    
.logofooter{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 4vw;

}
.infinito{
    width: max-content;
    display: flex;
    

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

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

}
/* MEDIA QUERIES */

@media (max-width: 1500px) {

  .cidade {
    padding: 4vw;
  }
}

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

@media (max-width: 600px) {
  section {
    padding: 4vw;
  }
  h2 {
    font-size: 6vw;
  }

  header h2 {
    font-size: 28px;
  }

.hero {
    flex-direction: column;
    padding: 26% 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: 16px;
      }
    }
  }

  .cidade {
    margin-top: 80px;
    button {
      display: none;
    }

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

      .card {
        width: 100%;
      }
    }
  }

  .logo {
    .logotipo {
      img:nth-child(1),
      img:nth-child(3) {
        width: 20%;
      }
      img:nth-child(2) {
        width: 40%;
      }
    }

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

      .depoimento {
        width: 100%;
      }
    }
  }
  .obrigado {
    margin: 40px 0px 60px;
    
    h2 {
      text-align: center;
    }
    ul {
      width: max-content;
      gap: 32px;
            
   }
    }
    
  footer {
    padding-top: 40px;
    .conteudo-footer {
      padding: 4vw;
      flex-direction: column;

      .logo-footer {
        width: 100%;

        h2,
        h3 {
          text-align: center;
        }
        h2 {
          font-size: 10vw;
        }
      }

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

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

        .institucional {
          width: 40%;
        }

        .parceiro {
          width: 50%;

          img {
            width: 100%;
          }
        }
      }
    }

    .logotipo-footer {
      margin-top: 40px;
    }

    .infinito h3 {
      font-size: 20vw;
    }
  }
}
/* =====================
   PRELOADER
===================== */

#preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh; /* mobile-safe */
  background-color: #0C0102;
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader svg {
  width: 40vw;
  height: auto;
}

#preloader svg path {
  fill: rgba(168, 19, 19, 0.36);
  stroke: rgb(168, 19, 19);
  stroke-dasharray: 1100;
  stroke-dashoffset: 640;
}
