* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffdde1 0%, #ee9ca7 200%);
  overflow-x: scroll;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  /* padding: 20px 0; */
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1000px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 2rem; */
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ===== NAVBAR ===== */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(196, 30, 58, 0.2);
  transform: translateY(-2px);
}

.nav-link i {
  font-size: 1rem;
}

.nav-link li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.nav-link li a:hover,
.nav-link li a.active {
  color: #ff7e5f;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #20b358 100%);
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #333;
  position: relative;
  padding-top: 80px;
  /* espaço para o header fixo */
  background: linear-gradient(270deg, #ff9a9e, #fbc2eb, #a18cd1);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(196, 30, 58, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196, 30, 58, 0.05) 0%, transparent 50%);
  background-size: 800px 800px, 600px 600px;
  z-index: 1;

}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/assets/img/jb_fundo.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  pointer-events: none
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-container img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 8px;
  color: #fff;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #f0f0f0;
}

/* ===== SECTIONS ===== */
/* ===== ALTURA PADRONIZADA DAS SEÇÕES ===== */
section {
  min-height: 100vh;
  /* cada seção ocupa pelo menos a altura da tela */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* centraliza verticalmente */
}


section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BIO ===== */
.bio {
  transition: opacity 1s ease, transform 1s ease;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 100px 0px;
  position: relative;
  /* overflow: hidden; */
  opacity: 0;
  width: 100%;
  min-height: 100vh;
}

.bio-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none
}

.bio-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(196, 30, 58, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(196, 30, 58, 0.03) 0%, transparent 50%);
  background-size: 400px 400px;
}

.bio-card-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.bio-card {
  flex: 1 1 300px;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin: 10px;
  text-align: justify;
  color: white;
  background: linear-gradient(270deg, #ff9a9e, #fbc2eb, #a18cd1, #fbc2eb);
  background-size: 800% 800%;
  transition: transform 0.3s;
}

.bio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bio-card p {
  text-align: justify;
  margin: 0;
  line-height: 1.6;
  color: #333;
}

.bio-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111;
}

/* ===== NA MÍDIA ===== */
.namidia {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.midia-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #ffdde1 0%, #fbc2eb 100%);
}

.midia-section h3 {
  font-size: 2rem;
  color: #a18cd1;
  margin-bottom: 30px;
}

.news-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 900px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-card img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: cover;
}

.news-content {
  flex: 1;
  padding: 30px;
  text-align: left;
}

.news-content h4 {
  font-size: 1.5rem;
  color: #a18cd1;
  margin-bottom: 10px;
}

.news-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.news-btn {
  display: inline-block;
  background: linear-gradient(270deg, #ff9a9e, #a18cd1);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.news-btn:hover {
  background: linear-gradient(270deg, #a18cd1, #ff9a9e);
}


/* ===== MÚSICAS ===== */
.musicas {
  padding: 100px 0px;
  position: relative;
  /* overflow: hidden; */
  opacity: 0;
  width: 100%;
  height: 100vh;
  transition: opacity 1s ease, transform 1s ease;
  background: linear-gradient(135deg, #ffffff 0%, #ffd2d7 100%);
  min-height: 100vh;
  padding: 100px 0px;
}

.musicas-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none
}

.musicas-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 400px 400px;
}

.musicas-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111;
}

.musicas-subtitle {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #111;
  padding: 1rem;
}

/* ===== SPOTFY Iframes ===== */
.spotify-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 1rem 0;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 35px;
}

.spotify-scroll::-webkit-scrollbar {
  height: 10px;
}

.spotify-scroll::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 5px;
}

.spotify-scroll::-webkit-scrollbar-thumb:hover {
  background: #333;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  padding: 2em 2em;
}

.social-links a {
  border-radius: 40px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #fff;
  background: #141414;
  padding: 0.8em 1.5em;
  transition: background 0.3s, color 0.3s;
  font-weight: 400;
}

.social-links a:hover {
  background: #f0f0f0;
  /* fundo ao passar o mouse */
  color: #000;
  /* texto fica mais escuro */
}

.social-links a img {
  width: 30px;
  /* tamanho do ícone */
  height: 30px;
  margin-right: 10px;
}

/* ===== AGENDA ===== */
.agenda {
  padding: 100px 0px;
  position: relative;
  /* overflow: hidden; */
  opacity: 0;
  width: 100%;
  height: 100vh;
  transition: opacity 1s ease, transform 1s ease;
  min-height: 100vh;
}

.agenda-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none
}

.agenda-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/assets/img/banda_sesc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none
}

.agenda-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111;
}

.agenda-subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #111;
}

.agenda-shows-bg {
  width: 100%;
  max-width: 700px;
  margin: auto;
  font-family: sans-serif;
  padding: 30px;
  border-radius: 12px;
  /* background: url('/assets/icons/calender.png') no-repeat center center; */
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.agenda-shows-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  /* overlay para melhorar leitura */
  z-index: 1;
  border-radius: 12px;
}

/* mantém os cards acima da imagem */
.agenda-shows-bg>* {
  position: relative;
  z-index: 2;
}

.agenda-shows-bg h2 {
  text-align: center;
  color: #a18cd1;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.show-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  /* card semitransparente */
  border-radius: 12px;
  padding: 16px 20px;
  margin: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.show-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.show-date {
  font-weight: bold;
  color: #ff7e5f;
  min-width: 100px;
}

.show-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.venue {
  font-size: 16px;
  color: #333;
}

.tickets {
  background: #a18cd1;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.tickets:hover {
  background: #8b6dc5;
}

/* ===== CONTATOS ===== */
.contato {
  padding: 100px 0px;
  position: relative;
  /* overflow: hidden; */
  opacity: 0;
  width: 100%;
  height: 100vh;
  transition: opacity 1s ease, transform 1s ease;
  min-height: 100vh;
  background-color: #2d2d2d;
}

.contato-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none
}

.contato-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(196, 30, 58, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(196, 30, 58, 0.03) 0%, transparent 50%);
  background-size: 400px 400px;
}

.contato-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}

.contato-subtitle {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #fff;
  padding: 1rem;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #555;
  padding: 2em 0;
  background: rgba(255, 255, 255, 0.6);
  font-weight: bold;
}

/* ===== SECRET PAGE ===== */
.secret {
  padding: 20px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.secret>p {
  font-size: large;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* ===== RESPONSIVIDADE ===== */
/* Tablet */
@media (max-width: 992px) {
  .header-container {
    padding: 12px 16px;
  }

  .main-nav .nav-list {
    gap: 15px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .hero-container img {
    width: 180px;
    height: 180px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  /* botão hamburguer aparece */
  .mobile-menu-btn {
    display: flex;
  }

  /* esconde menu normal */
  .main-nav {
    display: none;
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    overflow-x: hidden;
  }

  .main-nav.active {
    display: flex;
  }

  /* Alteração B: Garante que a lista de links use flexbox */
  .nav-list {
    /* Lista que contém os links */
    display: flex;
    flex-direction: column;
    /* ALTERAÇÃO CHAVE B: Coloca os <li> em coluna */
    width: 100%;
    /* Faz a lista ocupar a largura toda do .main-nav */
    padding: 0;
    gap: 0;
    /* Remove o gap entre os links */
  }

  .main-nav .nav-link {
    width: 100%;
    text-align: center;
    justify-content: center;
    /* Centraliza o ícone e texto */
    padding: 12px 20px
  }

  .header-actions {
    display: none;
    /* some o botão do topo, pode voltar abaixo se quiser */
  }

  .header-container {
    padding: 12px 16px;
  }

  .hero {
    min-height: 80vh;
    /* Garante uma altura mínima para o hero no mobile */
    padding: 80px 20px;
    /* Ajusta o padding para que o conteúdo não fique colado nas bordas */
    display: flex;
    /* Garante que o conteúdo dentro do hero seja flexível */
    flex-direction: column;
    /* Organiza o conteúdo em coluna */
    justify-content: center;
    /* Centraliza o conteúdo verticalmente */
    align-items: center;
    /* Centraliza o conteúdo horizontalmente */
  }

  .hero::before {
    /* Onde sua imagem de fundo está aplicada */
    background-position: center center;
    /* Alinha a imagem de fundo no centro */
    /* Você pode experimentar com "center top", "center bottom", etc.,
       dependendo de qual parte da imagem você quer focar.
       Por exemplo: background-position: center top; se a parte importante for a de cima. */
    background-size: cover;
    /* Continua cobrindo, mas o "center center" ajuda no foco */
  }

  .hero-container img {
    width: 200px;
    height: 200px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .agenda-shows-bg {
    padding: 20px;
    background-size: contain;
    /* evita corte em telas menores */
  }

  .show-card {
    flex-direction: column;
    /* empilha data, local e botão */
    align-items: center;
    text-align: left;
    gap: 10px;
  }

  .show-date {
    font-size: 14px;
  }

  .show-info {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
  }

  .venue {
    font-size: 14px;
  }

  .tickets {
    align-self: flex-end;
  }

  .news-content {
    padding: 20px;
  }

  .news-content h4 {
    font-size: 1.3rem;
  }

  .news-content p {
    font-size: 0.95rem;
  }

  .namidia {
    display: block;
    padding: 2rem;
  }

  .spotify-scroll {
    padding-left: 20px;
    /* Adiciona um espaço à esquerda */
    padding-right: 20px;
    /* Adiciona um espaço à direita, caso o último item também esteja cortado */
    justify-content: flex-start;
    /* Garante que a rolagem comece pela esquerda */
    min-height: 60%;
  }
}

@media (max-width: 480px) {
  .hero-container img {
    width: 130px;
    height: 130px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .agenda-shows-bg {
    background-size: 120%;
    /* leve zoom no fundo pra manter o visual */
  }

  .tickets {
    width: 100%;
    text-align: center;
  }
}