body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
  scroll-behavior: smooth;
}

header.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to bottom, #000, #333);
}

.background-kaos {
  background-image: url('assets/img4s.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  z-index: 1;
}

.background-kaos::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* escurece a imagem */
  z-index: -1;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.socials a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s;
}

.socials a:hover {
  background-color: #fff;
  color: #000;
}

section {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
  display: block;
  align-items: center;
  justify-content: center;
}

section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 2px solid #fff;
  display: inline-block;
}

ul {
  list-style: none;
  padding: 0;
}

ul li a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin: 10px 0;
  transition: color 0.3s;
}

ul li a:hover {
  color: #fff;
}

footer {
  text-align: center;
  padding: 30px;
  background-color: #111;
  font-size: 0.9em;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery {
  text-align: center;
  background-color: #171717;
  width: 100% !important;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 5800px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items: center;
}
.carousel-track img,
.carousel-track video {
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #111; /* Fundo para vídeos verticais */
}



button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.4);
  border: none;
  color: #fff;
  font-size: 2em;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

button.prev:hover, button.next:hover {
  background-color: rgba(255,255,255,0.6);
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

.full-width {
  width: 100%;
  max-width: none;
  padding: 60px 0;
}

.full-width .carousel {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 20px;
}


.about {
    min-height: 300px;
}

.music {
    height: 10rem;
}

.production {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
  background-color: #1f1f1f; /* tom acinzentado escuro */
  color: #e0e0e0; /* texto claro para contraste */
  border-radius: 8px;
  margin-bottom: 2rem;
}

/* Fonte padrão para o corpo do site */
body {
  font-family: Georgia, serif;
  color: #e0e0e0;
  background-color: #121212; /* fundo geral escuro elegante */
  margin: 0;
  padding: 0;
}

/* Títulos com Cinzel */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  margin-bottom: 20px;
}

/* Links com sublinhado e efeito hover */
a {
  color: #ccc;
  text-decoration: underline;
  transition: color 0.3s;
}

a:hover {
  color: #fff;
}
