/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");

:root {
  --main: #8b5cf6;
  --teste: #22c55e;
}
/* ESTILIZAÇÃO GERAL */
#whatsapp {
  color: var(--teste);
  font-size: 30px;
  position: fixed;
  bottom: 50px;
  right: 50px;
  background-color: #6348ff;
  padding: 0.7rem 0.8rem;
  border-radius: 50%;
  border: solid 1px var(--main);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
  font-family: "Google Sans", sans-serif;
}

body {
  background: #0b0b0b;
  color: #fff;
}

h2 {
  color: var(--main);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: "Exo 2", sans-serif;
}
h3 {
  color: #6348ff;
  font-size: 1.5rem;
}
p {
  color: #eee;
  font-size: 1.2rem;
  line-height: 1.5;
}
/* RESTO */
header {
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(225deg, #1a6385, #130e5a, #2d0e3a);
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-around;
  z-index: 999;
  transition: transform 0.3s ease;
}
header.hide {
  transform: translateY(-100%);
}

header img {
  max-width: 160px;
}

header nav {
  font-size: 1.1rem;
}
header nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
}
header nav ul a {
  color: #fff;
  text-decoration: none;
}
header nav ul a:hover {
  color: var(--main);
}

/*  */
section {
  padding: 5% 8%;
}

.hero,
.equipamentos {
  text-align: center;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.galeria img {
  width: 100%;
  aspect-ratio: 3 / 4; /* CONTROLA vertical */
  object-fit: cover;
  border-radius: 18px;
  background: #111;
}

.galeria img.wide {
  grid-column: span 2;
}

.sobre {
  background: #111;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.sobre .djs {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1000px;
}

.dj-card {
  background: #0e0e0e;
  border-radius: 20px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.dj-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--main);
}

.dj-card p {
  font-size: 1rem;
  color: #ddd;
}

.sobre .barra {
  width: 100%;
  height: 2px;
  background-color: #aaa;
}
.agenda {
  background-color: #111;
}

.agenda {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.agenda form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 50%;
}

input,
textarea {
  padding: 0.7rem;
  border-radius: 6px;
  border: none;
  font-size: 0.9rem;
}

textarea {
  resize: none;
  height: 90px;
}

form button {
  padding: 0.8rem;
  border-radius: 6px;
  border: none;
  background: #fff;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}
/* SHOWS */
.shows {
  border-radius: 14px;
  align-items: center;
  text-align: center;
}
.cards {
  display: flex;
  padding: 2%;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.show-card {
  width: 300px;
  background-color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 15px;
  border-radius: 20px;
}

.show-image img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}

.show-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.show-date {
  font-size: 0.75rem;
  color: #9b9b9b;
  display: block;
}
.show-desc {
  font-size: 1rem;
}

.show-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.show-tags span {
  font-size: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #1e1e1e;
  color: #b5b5b5;
  border: 1px solid #2a2a2a;
}

@media (max-width: 480px) {
  .show-card {
    flex-direction: column;
  }

  .show-image img {
    width: 100%;
    height: 160px;
  }
}

footer {
  padding: 2% 8%;
  font-size: 0.8rem;
  color: #aaa;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer img {
  width: 250px;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
.esq {
  padding-left: 2%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dir {
  padding-right: 2%;
  display: flex;
  gap: 100px;
}
.dir a,
.dir i {
  color: #aaa;
  text-decoration: none;
  font-size: 20px;
}
.dir a:hover {
  color: var(--main);
}
.dir a:hover i {
  color: var(--main);
}
.dir .contato,
.dir .nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contato div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

footer button {
  border-radius: 50%;
  font-size: 20px;
  padding: 0.9rem 1rem;
  outline: #ccc 2px solid;
  border: none;
  transition: 0.5s scale;
  background-color: #000;
  color: #ddd;
  cursor: pointer;
}
footer button:hover {
  color: var(--main);
  outline: var(--main) 2px solid;

  scale: 1.1;
}
footer .barra {
  width: 100%;
  height: 2px;
  background-color: #aaa;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  animation: zoom 0.3s ease;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

@keyframes zoom {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Hover na galeria */
.galeria img {
  cursor: pointer;
  transition: 0.3s;
}

.galeria img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  /* MENU MOBILE */
  header nav,
  header div {
    display: none;
  }
  .galeria {
    grid-template-columns: 2fr 2fr;
  }
  .galeria img {
    height: inherit;
    width: 100%;
  }
  .sobre {
    padding: 8% 5%;
  }

  .sobre p {
    font-size: 1rem;
    text-align: center;
  }

  .sobre .djs {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  .sobre .dupla {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sobre .dupla img {
    width: 200px;
  }

  h2 {
    font-size: 2rem;
    text-align: center;
  }

  h3 {
    text-align: center;
  }
  footer {
    padding: 10% 6%;
    text-align: center;
  }

  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  footer img {
    width: 200px;
    margin: 0 auto;
  }

  .esq {
    padding: 0;
    align-items: center;
    gap: 15px;
  }

  .esq p {
    font-size: 0.95rem;
  }

  .dir {
    padding: 0;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    align-items: center;
  }

  .dir .nav,
  .dir .contato {
    align-items: center;
    gap: 15px;
  }

  .contato div {
    align-items: center;
  }

  footer button {
    padding: 10px;
  }

  footer .barra {
    margin-top: 20px;
  }

  footer > p {
    font-size: 0.75rem;
    text-align: center;
  }
}
