* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preloader-text {
  font-size: 50px;
  color: #fff;
  font-weight: 500;
  font-family: "Clash Display", "Poppins", Sans-Serif;
}

/* FONTES */

@font-face {
  font-family: "Clash Display";
  src: url("https://gustavocampelo.com.br/wp-content/uploads/2024/11/ClashDisplay-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("https://gustavocampelo.com.br/wp-content/uploads/2024/11/ClashDisplay-Semibold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("https://gustavocampelo.com.br/wp-content/uploads/2024/11/ClashDisplay-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("https://gustavocampelo.com.br/wp-content/uploads/2024/11/ClashDisplay-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("https://gustavocampelo.com.br/wp-content/uploads/2024/11/ClashDisplay-Light.ttf")
    format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: #1f1d21;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Poppins", Sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

h1,
h2 {
  font-family: "Clash Display", Sans-serif;
}

button {
  display: flex;
  justify-content: space-between;
  font-family: "Poppins", Sans-serif;
  align-items: center;
  color: rgba(0, 0, 0, 0.8);
  padding: 8px 8px 8px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 32px;
  gap: 24px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 9;
  position: relative;

  .divSeta {
    background-color: rgba(0, 0, 0, 0.8);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transform: rotate(-135deg);

    img {
      width: 14px;
    }
  }
}

.btnPrimario {
  &:hover {
    transform: translateY(-2px);
    box-shadow: 4px 12px 20px rgba(0, 0, 0, 0.151);
  }
}

.divPai {
  height: 100lvh;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;

  .container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .secInicio {
    justify-content: end;
    padding-bottom: 8vh;

    h1 {
      font-weight: 600;
      font-size: 10vw;
      mix-blend-mode: difference;
    }
    p {
      font-size: 5vw;
      letter-spacing: 1.2vw;
      opacity: 0.7;
      margin-bottom: 32px;
    }
  }
}

.divPai,
.cw,
.wnc,
.aw,
.yt {
  background-image: url("midia/imagem-inicial.webp");
  background-position: center top;
  background-size: cover;
}

.nome,
.profissao {
  overflow: hidden;
}

.divConteudo {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0px 4% 0px;

  h2 {
    font-size: 11vw;
    text-align: center;

    margin-bottom: 20px;
  }

  p {
    font-size: 4.3vw;
    text-align: center;
    font-weight: 400;
    opacity: 0.8;
  }
}


.divRolar {
  display: flex;
  border-radius: 32px;
  align-items: center;
  justify-content: center;
  position: relative;

  .setaRolar {
    position: absolute;
    top: auto;
    left: auto;
  }

  .textoRotativo {
    animation: rotacao 6s infinite linear;
  }
}

@keyframes rotacao {
  to {
    transform: rotate(360deg);
  }
}

.card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  padding: 4%;
  mask-image: url("circle.svg");
  mask-size: 0px;
  mask-repeat: no-repeat;
  mask-position: center;

  .divConteudoCard {
    padding: 80px 0px 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: rgba(0, 0, 0, 0.906);
    h2 {
      text-align: center;
      font-size: 13vw;
      line-height: 14vw;

      span {
        font-size: 19.4vw;
      }
    }

    button {
      z-index: 2;
    }

    p {
      font-size: 4.3vw;
      text-align: center;
      margin: 12px 0px 32px;
      opacity: 0.8;
    }

    ul {
      margin-top: 44px;
      width: 100vw;
      background-color: rgba(255, 255, 255, 0.16);
      color: rgba(0, 0, 0, 1);
      display: flex;
      justify-content: space-between;
      list-style-type: none;
      align-items: center;
      padding: 12px 4%;

      li {
        opacity: 0.6;
        display: flex;
        gap: 12px;
        font-size: 16px;
        align-items: center;

        img {
          width: 22px;
        }
      }
    }

    .divRolar {
      margin-top: 20px;
    }
  }
}

.cw {
  background-image: url("midia/imagem-sec-comunidade-webhub.webp");
}

.wnc {
  background-image: url("midia/imagem-secao-webhub-nocode.webp");

  .divConteudoCard h2 {
    font-size: 19.4vw;
    line-height: 17vw;
  }
}

.aw {
  background-image: url("midia/imagem-sec-agencia-webhub.webp");

  .divConteudoCard h2 {
    font-size: 19.8vw;
    line-height: 18vw;
  }
}

.yt {
  background-image: url("midia/imagem-sec-youtube-gustavo-campelo.webp");

  .divConteudoCard h2 {
    font-size: 18.6vw;
    line-height: 16vw;
  }

  .logoYoutube {
    margin-top: 32px;
  }
}

/* MEDIA QUERIES */

@media screen and (min-width: 767px) {
  .divPai {
    background-image: url("midia/fundo-inicial-pc.webp");

    .secInicio {
      align-items: start;
      padding: 4vw;

      h1 {
        font-size: 14vw;
        line-height: 12vw;
        margin-bottom: 2vw;
      }

      p {
        font-size: 2vw;
        opacity: 1;
        letter-spacing: 0.4vw;
      }
    }
  }

  .cw {
    background-image: url("midia/funco-cw-pc.webp");
  }

  .wnc {
    background-image: url("midia/funco-wnc-pc.webp");
  }

  .aw {
    background-image: url("midia/fundo-aw-pc.webp");
  }

  .yt {
    background-image: url("midia/fundo-yt-pc.webp");

    .logoYoutube {
      margin-top: 32px;
    }
  }

  .divConteudo {
    p {
      font-size: clamp(18px, 2vw, 2.2vw);
    }
  }

  .logoYoutube {
    margin: 0;
  }

  .card {

    padding-bottom: 10vw;
    

    .divConteudoCard {
      h2 {
        font-size: 8.8vw;
        line-height: 9vw;

        span {
          font-size: 13vw;
        }
      }

      p {
        margin-top: 1%;
        font-size: clamp(16px, 1.5vw, 1.5vw);
      }

      .conteudoBaixo {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        padding: 8% 2%;
        display: flex;
        align-items: end;
        justify-content: space-between;
      }

      

      ul {
        flex-direction: column;
        background-color: transparent;
        align-items: start;
        gap: 0.5vw;
        padding: 0;

        li {
          font-size: clamp(18px, 1.4vw, 1.4vw);

          img {
            width: clamp(24px, 2vw, 2vw);
          }
        }
      }

      .divRolar img{
        width: clamp(132px, 8vw, 8vw);
      }
    }
  }

  .wnc {
    .divConteudoCard h2 {
      font-size: 12vw;
      line-height: 11vw;
    }
  }

  .aw {
    .divConteudoCard h2 {
      font-size: 12vw;
      line-height: 11vw;
    }
  }
}
