/* Reset geral */
:root {
  --cor-primaria: #0b0b0b;
  --cor-secundaria: #1a1a1a;
  --cor-texto: #f5f5f5;
  --cor-destaque: #c00;
  --cor-rodape: #111;
  --cor-borda: #333;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--cor-primaria);
  color: var(--cor-texto);
  font-family: Arial, sans-serif;
  letter-spacing: 0.5px;
  overflow-x: hidden;
}

/* ===================== CABEÇALHO ===================== */
header {
  background: var(--cor-secundaria);
  text-align: center;
  padding: 20px;
}

/* ===================== RODAPÉ ===================== */
footer {
  background: var(--cor-rodape);
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: var(--cor-texto);
  border-top: 1px solid var(--cor-borda);
}

/* ===================== SEÇÕES GERAIS ===================== */
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

/* ===================== TÍTULOS ===================== */
h2 {
  font-family: Arial, sans-serif;
  font-size: 32px;
  color: var(--cor-destaque);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--cor-destaque);
  padding-bottom: 5px;
}

/* ===================== BOTÕES (EXEMPLO) ===================== */
button {
  background: var(--cor-destaque);
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  opacity: 0.9;
}

/* ===================== BORDAS / DIVISORES ===================== */
hr {
  border: none;
  border-top: 1px solid var(--cor-borda);
  margin: 20px 0;
}
#logo {
  max-height: 120px;
  width: auto;
  max-width: 100%;
}

/* ===================== VÍDEO ===================== */
#video {
  padding: 40px 20px;
  background: #111;
  text-align: center;
}

#video iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border: none;
  border-radius: 6px;
}

/* ===================== SPOTIFY ===================== */
#spotify iframe {
  border: none;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  height: 152px;
  margin: 20px auto;
  display: block;
}

/* ===================== SLIDER ===================== */
#slider {
  padding: 30px;
  background: linear-gradient(to right, #1a1a1a, #0b0b0b);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 720px;
}

#sliderFotos {
  position: relative;
  height: 100%;
}

#sliderFotos img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

#sliderFotos img.active {
  opacity: 1;
}

/* ===================== BIOGRAFIA ===================== */
#biografia {
  line-height: 1.8;
  font-size: 18px;
}

/* ===================== INTEGRANTES ===================== */
#listaIntegrantes {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px;
}

#listaIntegrantes .membro {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: start;
  background: #1a1a1a;
  padding: 15px;
  border: 1px solid #c00;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

#listaIntegrantes .membro:hover {
  transform: scale(1.03);
}

#listaIntegrantes .membro img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #000;
  border-bottom: 1px solid #c00;
  margin-bottom: 10px;
  border-radius: 6px;
}

/* ===================== AGENDA DE SHOWS ===================== */
#listaShows {
  list-style: none;
  padding: 0;
}

#listaShows li {
  margin: 10px 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#listaShows li div {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #a00;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 0 5px #000;
}

/* ===================== REDES SOCIAIS ===================== */
#redesSociais {
  text-align: center;
  margin-top: 20px;
}

#redesSociais a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.3s;
}

#redesSociais a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(95%) saturate(4500%) hue-rotate(350deg) brightness(100%) contrast(90%);
}

#redesSociais a:hover {
  transform: scale(1.15);
}

#redesSociais a:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}

/* ===================== RESPONSIVIDADE ===================== */
@media (max-width: 768px) {
  h2 {
    font-size: 26px;
  }

  #listaIntegrantes .membro {
    flex: 1 1 100%;
  }

  #video iframe {
    height: 280px;
  }

  #spotify iframe {
    height: 140px;
  }

  #slider {
    aspect-ratio: 16 / 9;
  }

  #sliderFotos img {
    height: 100%;
  }
}

@media (max-width: 480px) {
  #video {
    padding: 20px 10px;
  }

  #video iframe {
    height: 200px;
  }

  h2 {
    font-size: 22px;
  }

  #biografia {
    font-size: 16px;
  }

  #slider {
    aspect-ratio: 16 / 9;
  }

  #redesSociais a img {
    width: 24px;
    height: 24px;
  }
}
/* Loja - Carrossel */
.carrossel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px;
}

.card-produto {
  flex: 0 0 auto;
  width: 240px;
  background: #222;
  padding: 15px;
  border-radius: 12px;
  scroll-snap-align: start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  text-align: center;
  pointer-events: auto;
}

.card-produto:hover {
  transform: scale(1.03);
}

.card-produto img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  user-select: auto;
}

.card-produto h3 {
  margin: 10px 0 5px;
  font-size: arial, 18px;
  color: #fff;
  font-weight: bold;
}

.card-produto p {
  margin: 5px 0;
  font-size: 18px;
  color: #e57200;
  font-weight: bold;
}

.card-produto button {
  background: #e57200;
  border: none;
  color: #222;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold, 18px;
  font-size: 18px;
  
}

.card-produto button:hover {
  background: #cc6100;
}

/* Modal Pix */
.modal-pix {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-conteudo {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  position: relative;
}

.modal-conteudo canvas {
  margin: 20px 0;
}

.modal-conteudo textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: none;
  margin-bottom: 10px;
  font-size: 14px;
}

.modal-conteudo button {
  padding: 10px 15px;
  background: #e57200;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.modal-conteudo button:hover {
  background: #cc6100;
}

.fechar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #e57200;
  cursor: pointer;
}
.botao-comprar {
  display: inline-block;
  margin-top: 10px;
  padding: 10px;
  background: #e57200;
  border-radius: 6px;
  color: white;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.botao-comprar:hover {
  background: #cc6100;
}
#btncarrinho {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f60;
  color: #111;
  padding: 12px 16px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  z-index: 999;
}

#carrinhoOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 998;

}

#carrinhoLateral {
  position: fixed;
  top: 50%;
  right: -100%;
  transform: translateY(-50%);
  width: 90%;
  max-width: 300px;
  max-height: 80vh;
  background: #222;
  color: #fff;
  padding: 20px;
  box-shadow: -4px 0 10px rgba(0,0,0,0.5);
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-radius: 10px 0 0 10px;
}
#carrinhoLateral h3 {
  margin-top: 0;
}

#carrinhoLateral button {
  background: #f00;
  color: #000;
  padding: 10px;
  width: 100%;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  margin-top: 10px;
}
#carrinhoOverlay{
  background-color: none;
}

 /* ==== MOBILE BURGER ==== */
.menu-burger {
  display: flex;
  flex-direction: column;
  width: 30px;
  gap: 5px;
  margin: 10px;
  cursor: pointer;
  z-index: 1001;
}
.menu-burger span {
  height: 4px;
  background: #fff;
  border-radius: 4px;
}

/* Overlay escuro */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 999;
}

/* Menu mobile */
.menu-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 220px;
  height: 100%;
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 1000;
}
.menu-mobile button {
  background: none;
  color: white;
  border: none;
  margin: 10px 0;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
}

/* ==== DESKTOP MENU ==== */
.menu-desktop {
  display: none;
  background: #111;
  padding: 10px 20px;
  justify-content: center;
  gap: 30px;
}
.menu-desktop a {
  color: darkred;
  text-decoration: none;
  font-weight: bold;
}

/* Responsividade */
@media (min-width: 768px) {
  .menu-burger,
  .menu-mobile,
  .menu-overlay {
    display: none;
  }

  .menu-desktop {
    display: flex;
  }
}
/* 🔹 Seletor de idioma */
.idioma-seletor {
  position: relative;
  display: flex;
  gap: 8px;
  bottom:-33px;
  left:8px;
  align-items: center;
  margin-left: auto; /* empurra para a direita no header */
}

.idioma-seletor button {
  background: transparent;
  border: 1px solid #555;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 14px;
  cursor: pointer;
  color: #eee;
  transition: all 0.2s ease-in-out;
}

.idioma-seletor button:hover {
  background: #444;
  color: #fff;
  border-color: #888;
}

/* Responsivo: no mobile, o seletor vai para cima do menu */
@media (max-width: 768px) {
  .idioma-seletor {
    position: relative;
    top: 31px;
    left: 50px;
    /* deixa espaço para o menu-burger */
  }

  .idioma-seletor button {
    font-size: 12px;
    padding: 3px 6px;
  }
}