* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pacifico", cursive;
}

body {
  background-image: url(imagems/BG-black.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.header {
  width: 100%;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border-bottom: 1px white solid;
  flex-wrap: wrap;
  padding: 1.3rem;
  gap: 8px 15px;
}

.logo {
  width: 170px;
  height: 110px;
  margin-left: 50px;
}

.text-disk {
  margin-top: 1rem;
  border-bottom: 2px double white;
  padding: 5px;
}

.box-dj1 {
  margin-top: 20px;
}
.box-dj2 {
  margin-top: -20px;
}
.box-dj3 {
  margin-top: 40px;
}
.box-dj4 {
  margin-top: -30px;
}
.box-dj5 {
  margin-top: 10px;
}

.box-dj6 {
  margin-top: -50px;
}

.dj1 {
  font-size: 1.2rem;
}

.btn-header {
  display: flex;
  gap: 15px;
}

.btn {
  font-size: 18px;
  padding: 20px;
  background-color: transparent;
  border: 2px solid transparent;
  color: white;
  cursor: pointer;
  transition: 0.8s;
}

/* hover dos botões aqui */

.btn-contraste {
  font-size: 50px;
  background-color: transparent;
  cursor: pointer;
  border: transparent;
  color: white;
}

.main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.imagem-box1 {
  width: 30rem;
  height: 30rem;
  margin-right: 17rem;
}

.box1 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.content2 {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.box2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 40px;
}

.box3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 30px;
}

.box4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-dj {
  width: 20rem;
  height: 20rem;
  margin-right: 2rem;
}

.text-card {
  color: white;
  font-size: 2rem;
}

.text-card-1 {
  color: white;
  font-size: 1.5rem;
}

.patrocinadores {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  width: 100%;
}

.img-apoio {
  width: 150px;
  height: 100px;
}

.img-patrocinio {
  width: 90px;
  height: 60px;
}

.footer {
  border-top: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.social {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  margin-left: 50px;
  margin-top: 10px;
}

/* a partir dq */

/* EFEITO DOS NOMES DO HEADER */

.btn {
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  /* background:white; */
  /* font-size:28px; */
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: all 1s;
  &:after,
  &:before {
    content: " ";
    width: 10px;
    height: 10px;
    position: absolute;
    border: 0px solid #fff;
    transition: all 1s;
  }
  &:after {
    top: -1px;
    left: -1px;
    border-top: 5px solid white;
    border-left: 5px solid white;
  }
  &:before {
    bottom: -1px;
    right: -1px;
    border-bottom: 5px solid white;
    border-right: 5px solid white;
  }
  &:hover {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background: rgba(255, 255, 255, 0.701);
    color: black;
    &:before,
    &:after {
      width: 100%;
      height: 100%;
      border-color: white;
    }
  }
}

.data-container {
  background: #ffebee;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* EFEITOS DOS BOTÕES DOS NOMES DOS DJS */

.dj1 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 15px auto;
  width: 110px;
  height: 110px;
  background: white;
  border-radius: 75px;
  font-family: "Montserrat", sans-serif;
  font-family: "Pacifico", cursive;
  font-size: 20px;
  font-weight: lighter;
  letter-spacing: 2px;
  transition: 1s box-shadow;
  text-align: center;
}

.dj1:hover {
  box-shadow: 0 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.dj1:hover::before,
.dj1:hover::after {
  display: block;
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  background: #fda8cf;
  border-radius: 75px;
  z-index: -1;
  animation: 1s clockwise infinite;
}

.dj1:hover:after {
  background: #f3ce5e;
  animation: 2s counterclockwise infinite;
}

@keyframes clockwise {
  0% {
    top: -5px;
    left: 0;
  }
  12% {
    top: -2px;
    left: 2px;
  }
  25% {
    top: 0;
    left: 5px;
  }
  37% {
    top: 2px;
    left: 2px;
  }
  50% {
    top: 5px;
    left: 0;
  }
  62% {
    top: 2px;
    left: -2px;
  }
  75% {
    top: 0;
    left: -5px;
  }
  87% {
    top: -2px;
    left: -2px;
  }
  100% {
    top: -5px;
    left: 0;
  }
}

@keyframes counterclockwise {
  0% {
    top: -5px;
    right: 0;
  }
  12% {
    top: -2px;
    right: 2px;
  }
  25% {
    top: 0;
    right: 5px;
  }
  37% {
    top: 2px;
    right: 2px;
  }
  50% {
    top: 5px;
    right: 0;
  }
  62% {
    top: 2px;
    right: -2px;
  }
  75% {
    top: 0;
    right: -5px;
  }
  87% {
    top: -2px;
    right: -2px;
  }
  100% {
    top: -5px;
    right: 0;
  }
}

/* DARK MODE */

.dark-mode {
  background-image: none;
  .header {
    background-color: transparent;
    border-bottom: 1px black solid;
  }

  .text-disk {
    border-bottom: 1px double black;
  }

  .btn {
    background-color: transparent;
    border: 1px solid transparent;
    color: white;
    cursor: pointer;
    transition: 0.8s;
  }

  .btn-contraste {
    cursor: pointer;
    border: transparent;
    color: white;
  }

  .btn-contraste {
    color: black;
  }
  /* body{
  background-image: url(imagems/BG-white.jpg);
  background-color: white;
  background-repeat: no-repeat;
  background-size: cover;

} */

  .text-card {
    color: black;
    font-size: 2rem;
  }

  .text-card-1 {
    color: black;
    font-size: 1.5rem;
  }

  .footer {
    border-top: 1px solid black;
  }

  /* dark mode botões header */

  .btn {
    color: black;
    cursor: pointer;
    position: relative;
    padding: 10px 20px;
    /* background:white; */
    /* font-size:28px; */
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: all 1s;
    &:after,
    &:before {
      content: " ";
      width: 10px;
      height: 10px;
      position: absolute;
      border: 0px solid #000000;
      transition: all 1s;
    }
    &:after {
      top: -1px;
      left: -1px;
      border-top: 5px solid #000000;
      border-left: 5px solid #000000;
    }
    &:before {
      bottom: -1px;
      right: -1px;
      border-bottom: 5px solid #000000;
      border-right: 5px solid #000000;
    }
    &:hover {
      border-top-right-radius: 0px;
      border-bottom-left-radius: 0px;
      background: rgba(0, 0, 0, 0.701);
      color: rgb(255, 255, 255);
      &:before,
      &:after {
        width: 100%;
        height: 100%;
        border-color: #000000;
      }
    }
  }

  /* dark mode botões dj */
  .dj1 {
    color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 15px auto;
    width: 110px;
    height: 110px;
    background: black;
    border-radius: 75px;
    font-family: "Montserrat", sans-serif;
    font-family: "Pacifico", cursive;
    font-size: 20px;
    font-weight: lighter;
    letter-spacing: 2px;
    transition: 1s box-shadow;
    text-align: center;
  }

  .dj1:hover {
    box-shadow: 0 5px 35px 0px rgba(0, 0, 0, 0.1);
  }

  .dj1:hover::before,
  .dj1:hover::after {
    display: block;
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    background: #ffa600;
    border-radius: 75px;
    z-index: -1;
    animation: 1s clockwise infinite;
  }

  .dj1:hover:after {
    background: #0000ff;
    animation: 2s counterclockwise infinite;
  }

  .box4 {
    background-image: url(imagems/pngwing.com.png);
  }
}

/* RESPONSIVIDADE */

/* Responsividade para tablets */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
  }

  .logo {
    margin-left: 0;
    width: 60px;
    height: 60px;
  }

  .main-content {
    flex-direction: column;
  }

  .imagem-box1 {
    width: 100%;
    height: auto;
    margin-right: 0;
  }

  .box1,
  .box2,
  .box3 {
    flex-direction: column;
  }

  .img-dj {
    width: 100%;
    height: auto;
  }

  .text-card,
  .text-card-1 {
    font-size: 1.2rem;
  }
}

/* Responsividade para smartphones */
@media (max-width: 480px) {
  .header {
    padding: 1rem;
  }

  .logo {
    width: 50px;
    height: 50px;
  }

  .btn-header {
    flex-direction: column;
    gap: 10px;
  }

  .btn-contraste {
    font-size: 30px;
  }

  .main-content {
    flex-direction: column;
  }

  .imagem-box1 {
    width: 90%;
    height: auto;
    margin-right: 0;
  }

  .box1,
  .box2,
  .box3 {
    flex-direction: column;
    gap: 20px;
  }

  .img-dj {
    width: 90%;
    height: auto;
  }

  .text-card,
  .text-card-1 {
    font-size: 1rem;
  }

  .social {
    margin-left: 0;
    justify-content: center;
  }

  .img-apoio,
  .img-patrocinio {
    width: 100px;
    height: auto;
  }
}
