:root {
  --preto: #0a0a0a;
  --vermelho: #c0392b;
  --vermelho-escuro: #922b21;
  --dourado: #d4a843;
  --branco: #f5f0e8;
  --cinza: #1c1c1c;
  --cinza-medio: #2d2d2d;
  --texto-suave: #9e9e9e;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--preto); color: var(--branco); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 3rem; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1a1a1a;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 60px; width: auto; object-fit: contain; transition: filter 0.3s; }
.logo-img:hover { filter: brightness(0.85); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--branco); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; opacity: 0.75; transition: all 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--dourado); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--dourado); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--branco); transition: all 0.3s; }

.page-content { padding-top: 80px; min-height: 100vh; }

.hero {
  min-height: calc(100vh - 80px);
  position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(192,57,43,0.18) 0%, transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, #120808 50%, #0a0a0a 100%);
}
.hero-line { position: absolute; width: 1px; height: 100%; background: var(--vermelho); opacity: 0.1; }
.hero-line:nth-child(1) { left: 25%; transform: rotate(8deg); }
.hero-line:nth-child(2) { right: 20%; transform: rotate(-6deg); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 4rem 2rem; animation: fadeInUp 1s ease both; }
.hero-tag { display: inline-block; font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--dourado); border: 1px solid rgba(212,168,67,0.3); padding: 6px 20px; margin-bottom: 2rem; }
.hero-titulo { font-family: 'Bebas Neue', sans-serif; font-size: clamp(4rem, 12vw, 10rem); line-height: 0.9; letter-spacing: 6px; }
.hero-titulo .stylos { color: var(--vermelho); text-shadow: 0 0 80px rgba(192,57,43,0.5); }
.hero-subtitulo { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1rem, 2.5vw, 1.4rem); color: var(--texto-suave); margin-top: 1.5rem; }
.hero-cta { display: flex; gap: 1.2rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--vermelho); color: var(--branco); border: none;
  padding: 14px 36px; font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; text-decoration: none; display: inline-block;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover { background: var(--vermelho-escuro); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(192,57,43,0.4); }
.btn-outline {
  background: transparent; color: var(--dourado); border: 1px solid var(--dourado);
  padding: 14px 36px; font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; text-decoration: none; display: inline-block;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-outline:hover { background: var(--dourado); color: var(--preto); transform: translateY(-2px); }

.section { padding: 5rem 3rem; max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase; color: var(--dourado); margin-bottom: 1rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: 3px; margin-bottom: 3rem; }

.page-header { padding: 4rem 3rem 2rem; max-width: 1100px; margin: 0 auto; border-left: 3px solid var(--vermelho); padding-left: 2rem; }
.page-header h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 6rem); letter-spacing: 4px; line-height: 1; }
.page-header p { color: var(--texto-suave); margin-top: 1rem; max-width: 500px; line-height: 1.8; }

.home-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5px; }
.home-card {
  background: var(--cinza); padding: 2.5rem; position: relative;
  overflow: hidden; transition: all 0.4s; border: 1px solid #222;
  text-decoration: none; color: inherit; display: block;
}
.home-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--vermelho); transition: width 0.4s; }
.home-card:hover::before { width: 100%; }
.home-card:hover { background: #1a1a1a; transform: translateY(-4px); }
.card-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: block; }
.home-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 2px; color: var(--dourado); margin-bottom: 0.8rem; }
.home-card p { color: var(--texto-suave); font-size: 0.9rem; line-height: 1.7; }

.home-integrantes { background: var(--cinza); padding: 5rem 3rem; text-align: center; }
.home-integrantes h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 3px; margin-bottom: 0.5rem; }
.home-integrantes > p { color: var(--texto-suave); margin-bottom: 3rem; font-size: 0.9rem; }
.integrantes-grid { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.integrante { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.integrante-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--vermelho-escuro), var(--cinza-medio)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; border: 2px solid rgba(212,168,67,0.3); transition: border-color 0.3s; }
.integrante:hover .integrante-avatar { border-color: var(--dourado); }
.integrante strong { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 2px; }
.integrante span { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--dourado); }

.disc-section-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 3px; color: var(--dourado); max-width: 1100px; margin: 0 auto 2rem; padding: 0 3rem 0.8rem; border-bottom: 1px solid #222; }
.clipes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto 5rem; padding: 0 3rem; }
.clipe-card { background: var(--cinza); border: 1px solid #222; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.clipe-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.clipe-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.clipe-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.clipe-info { padding: 1.5rem; }
.clipe-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 0.4rem; }
.clipe-info span { font-size: 0.75rem; color: var(--dourado); text-transform: uppercase; letter-spacing: 2px; }

.musicas-lista { max-width: 1100px; margin: 0 auto 5rem; padding: 0 3rem; }
.musica-item { display: flex; align-items: center; gap: 1.5rem; padding: 1.2rem 1.5rem; border-bottom: 1px solid #1a1a1a; transition: background 0.2s; }
.musica-item:hover { background: var(--cinza); }
.musica-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--vermelho); min-width: 30px; text-align: center; }
.musica-info { flex: 1; }
.musica-info h4 { font-size: 1rem; font-weight: 500; margin-bottom: 0.2rem; }
.musica-info span { font-size: 0.75rem; color: var(--texto-suave); text-transform: uppercase; letter-spacing: 1.5px; }
.musica-plays { font-size: 0.8rem; color: var(--texto-suave); text-align: right; }
.musica-plays strong { display: block; color: var(--dourado); font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; }

.agenda-lista { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1px; padding: 0 3rem; }
.show-item { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 2rem; padding: 2rem 2.5rem; background: var(--cinza); border: 1px solid #222; position: relative; overflow: hidden; transition: all 0.3s; }
.show-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: #27ae60; }
.show-item:hover { background: #1a1a1a; transform: translateX(4px); }
.show-data { text-align: center; }
.show-data .dia { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; line-height: 1; }
.show-data .mes { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--dourado); }
.show-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 0.3rem; }
.show-info p { font-size: 0.8rem; color: var(--texto-suave); }
.show-badge { padding: 6px 14px; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; background: rgba(39,174,96,0.15); color: #27ae60; border: 1px solid rgba(39,174,96,0.3); }
.agenda-footer { max-width: 800px; margin: 3rem auto 0; text-align: center; padding: 2rem 3rem; background: var(--cinza); border: 1px solid #222; }
.agenda-footer p { color: var(--texto-suave); font-size: 0.85rem; line-height: 1.8; }
.agenda-footer a { color: var(--dourado); text-decoration: none; }

.agenda-hero { position: relative; min-height: 340px; display: flex; align-items: flex-end; overflow: hidden; }
.agenda-hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1600&q=80'); background-size: cover; background-position: center; filter: brightness(0.28) saturate(0.6); }
.agenda-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.97) 100%); }
.agenda-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--vermelho), transparent); z-index: 2; }
.agenda-hero-content { position: relative; z-index: 3; padding: 3rem 3rem 3.5rem; max-width: 1100px; width: 100%; margin: 0 auto; border-left: 3px solid var(--vermelho); padding-left: 2rem; }
.agenda-hero-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 6rem); letter-spacing: 4px; line-height: 1; text-shadow: 0 4px 30px rgba(0,0,0,0.8); }
.agenda-hero-content p { color: var(--texto-suave); margin-top: 1rem; max-width: 500px; line-height: 1.8; }
.agenda-photo-credit { position: absolute; bottom: 10px; right: 16px; font-size: 0.6rem; color: rgba(255,255,255,0.25); letter-spacing: 1px; z-index: 4; }
.agenda-photo-credit a { color: inherit; text-decoration: none; }

.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; padding: 0 3rem; max-width: 1100px; margin: 0 auto 5rem; }
.sobre-texto p { color: #bbb; line-height: 1.9; font-size: 1rem; margin-bottom: 1.5rem; }
.sobre-texto p strong { color: var(--dourado); }
.sobre-texto blockquote { border-left: 3px solid var(--vermelho); padding-left: 1.5rem; margin: 2rem 0; font-family: 'Playfair Display', serif; font-style: italic; color: var(--branco); font-size: 1.1rem; line-height: 1.7; }
.sobre-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #222; margin-bottom: 3rem; }
.stat { background: var(--cinza); padding: 2rem; text-align: center; }
.stat strong { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--vermelho); display: block; line-height: 1; }
.stat span { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--texto-suave); }
.sobre-destaque { background: linear-gradient(135deg, var(--cinza), #1a1010); border: 1px solid #2a1a1a; padding: 3rem; position: relative; overflow: hidden; }
.sobre-destaque::before { content: '♪'; position: absolute; top: -20px; right: 20px; font-size: 8rem; color: var(--vermelho); opacity: 0.06; font-family: serif; }
.sobre-destaque h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 2px; color: var(--dourado); margin-bottom: 1.5rem; }
.sobre-destaque ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.sobre-destaque li { display: flex; align-items: center; gap: 1rem; color: #ccc; font-size: 0.9rem; }
.sobre-destaque li::before { content: '▸'; color: var(--vermelho); font-size: 0.7rem; }

footer { background: var(--cinza); border-top: 1px solid #222; padding: 3rem; text-align: center; margin-top: 4rem; }
.footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-logo img { height: 50px; width: auto; opacity: 0.85; }
footer p { color: var(--texto-suave); font-size: 0.8rem; letter-spacing: 1px; }
.footer-social { display: flex; justify-content: center; gap: 1.5rem; margin: 1rem 0; }
.footer-social a { color: var(--texto-suave); text-decoration: none; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s; }
.footer-social a:hover { color: var(--dourado); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .logo-img { height: 45px; }
  .nav-links { display: none; position: fixed; top: 80px; left: 0; right: 0; background: rgba(10,10,10,0.98); flex-direction: column; padding: 2rem; gap: 1.5rem; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .show-item { grid-template-columns: 80px 1fr; }
  .show-badge { display: none; }
  .section, .page-header { padding-left: 1.5rem; padding-right: 1.5rem; }
  .agenda-lista, .clipes-grid, .musicas-lista, .sobre-grid { padding: 0 1.5rem; }
  .disc-section-title { padding: 0 1.5rem 0.8rem; }
  footer { padding: 2rem 1.5rem; }
}
