/* kayque silva sá */

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
}

/* ===================== Cabeçalho ===================== */
header.hero {
  background-color: #111;
  padding: 20px;
  text-align: center;
}

header.hero h1,
header.hero h2,
header.hero h3 {
  margin: 0;
  color: #fff;
}

header.hero h1 {
  font-size: 40px;
  letter-spacing: 4px;
}

/* ===================== Navegação ===================== */
nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav li {
  position: relative;
}

nav a {
  text-decoration: none;
  color: #ccc;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #fff;
}

/*  ===================== Dropdown =====================  */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; 
  transform: none; 
  background-color: #1a1a1a;
  min-width: 160px;
  z-index: 1000;
  border-radius: 6px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  text-align: center;
  animation: fadeDown 0.3s ease forwards;
  opacity: 0;
}

nav li.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #ccc;
  transition: background 0.3s, color 0.3s;
  font-weight: bold;
}

.dropdown-menu a:hover {
  background-color: #333;
  color: #fff;
}

@keyframes fadeDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===================== Seções principais ===================== */
.intro, .destaques, .fundador, .artistas {
  padding: 40px 20px;
  text-align: center;
}

/* ===================== Cartões ===================== */
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.card {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h3 {
  margin: 15px 0 10px 0;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  color: rgb(139, 16, 196);
  text-decoration: none;
}

.card a:hover {
  color: #ffa31a;
}

/* ===================== Rodapé ===================== */
footer {
  background-color: #111;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

footer a {
  color: rgb(139, 16, 196);
  text-decoration: none;
}

/* ===================== Página do artista ===================== */
.artist-page {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 60px auto;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.artist-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 400px;
  max-width: 400px;
  gap: 20px;
}

.artist-media img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.spotify-frame {
  width: 100%;
  max-width: 400px;
}

.artist-info {
  flex: 1 1 500px;
  min-width: 300px;
  max-width: 600px;
}

.artist-info h1 {
  font-size: 26px;
  margin-bottom: 20px;
}

.artist-info h2 {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.artist-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 16px;
}

.artist-info strong {
  color: #fff;
}

.artist-info a {
  color: rgb(139, 16, 196);
  font-weight: bold;
  text-decoration: none;
}

.artist-info a:hover {
  color: #ffa31a;
}

/* ===================== Seção final de artistas ===================== */
.artistas-final {
  max-width: 900px;
  margin: 60px auto 40px;
  text-align: center;
  padding: 20px;
}

.artistas-final h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.artistas-final p {
  margin: 8px 0;
  line-height: 1.6;
  font-size: 16px;
  color: #ccc;
}

/* ===================== Spotify embed ===================== */
.spotify-embed {
  max-width: 600px;
  margin: 40px auto 60px;
  text-align: center;
}

.spotify-embed h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: rgb(139, 16, 196);
}

/* ===================== Galeria de slides ===================== */
.carousel-container {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-slide {
  display: none;
}

.carousel-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* ===================== Botão de voltar ===================== */
.btn-voltar {
  display: inline-block;
  padding: 10px 20px;
  margin: 20px;
  background-color: #ffffff10;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.btn-voltar:hover {
  background-color: #fff;
  color: #000;
}

/* ===================== Seção de vídeos ===================== */
.videos-section {
  padding: 60px 20px;
  background-color: #000;
  color: white;
  text-align: center;
}

.videos-title {
  font-size: 2em;
  margin-bottom: 40px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-item iframe {
  width: 100%;
  height: 315px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* ===================== Galeria de fotos ===================== */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
  justify-items: center;
}

.foto {
  width: 100%;
  max-width: 300px;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #444;
}

.foto img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.foto:hover {
  transform: scale(1.05);
}


.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-conteudo {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.fechar {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* ===================== Contatos ===================== */



body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #721aff;
}

.hero {
  background-color: #111;
  text-align: center;
  padding: 40px 20px;
  border-bottom: 1px solid #222;
}

.hero h1 {
  font-size: 36px;
  margin: 10px 0 0;
}

.btn-voltar {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 20px;
  background-color: #222;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-voltar:hover {
  background-color: #fff;
  color: #000;
}

.contato-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contato-info, .formulario, .mapa {
  text-align: center;
}

.contato-info h2, .formulario h2, .mapa h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

form input, form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 16px;
}

form textarea {
  height: 120px;
  resize: vertical;
}

form button {
  padding: 12px 24px;
  background-color: #a64eff;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #ffa31a;
}

footer {
  background-color: #111;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  color: #bbb;
  border-top: 1px solid #222;
}

 
 /* ===================== Galeria ===================== */
 
 .galeria {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 40px;  
      justify-items: center;
    }

    .foto img {
      width: 100%;
      height: auto;
      cursor: pointer;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .foto img:hover {
      transform: scale(1.05);
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      padding-top: 60px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.9);
    }

    .modal-container {
      position: relative;
      max-width: 80%;
      margin: auto;
      text-align: center;
    }

    .modal-conteudo {
      width: 100%;
      max-height: 80vh;
      border-radius: 10px;
    }

    .fechar {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }

    .seta-esquerda,
    .seta-direita {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      margin-top: -50px;
      color: white;
      font-weight: bold;
      font-size: 30px;
      user-select: none;
    }

    .seta-esquerda {
      left: 0;
    }

    .seta-direita {
      right: 0;
    }


/* ===================== Responsividade ===================== */
@media (max-width: 1024px) {
  .galeria {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .galeria {
    grid-template-columns: 1fr;
  }

  .btn-voltar {
    display: block;
    margin: 0 auto 20px auto;
  }
}

 