body {
  margin: 0;
  font-family: 'Arial', sans-serif;  /* Substitua 'Arial' pela fonte de sua escolha */
  font-weight: 100;       /* Letras mais finas */
  letter-spacing: 1.3px;  /* Espaçamento entre letras */
  font-size: 17px;  /* Defina o tamanho da fonte (em pixels, em, rem, etc.) */
  color: white;
  cursor: url(./varinha\ \(2\).png) 30 20, pointer;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('wickedposter.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  z-index: -1; /* Fica atrás de todo o conteúdo */
}

.overlay {
    position: fixed;
    top: 0;
    left: 15%; /* Ajusta para centralizar */
    width: 70%; /* Define a largura para deixar espaço visível nas laterais */
    height: 100vh;
    background: rgba(0, 0, 0, 0.76); /* Preto com transparência */
    z-index: 1;
}

main, .content-wrapper {
  position: relative;
  z-index: 1;
}

button, a {
  cursor: url(./varinha\ brilho.png) 30 20, pointer;
}

.top-bar {
  background: linear-gradient(to right, rgb(67, 218, 67), #ff2992);
  color: white;
  padding: 15px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
   position: relative;
  z-index: 2;
}

.left {
  margin-left: 15px;
}

.video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.video-caption, .video-subcaption {
  margin: 0;  /* Remove margens */
  line-height: 1.5;  /* Diminui a altura da linha */
}

.video-caption {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

.video-subcaption {
  font-size: 14px;
  color: gray;
  text-align: center;
}

.videoao {
  width: 90%;
  max-width: 720px;
  height: 405px;
  margin-top: 20px;
  border: 5px solid rgb(236, 83, 210);
  border-radius: 15px;
}

.botao, .botao2 {
  display: inline-block;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
  margin: 10px 10px;
}

.botao {
  background-color: rgb(83, 236, 83);
  color: white;
}

.botao2 {
  background-color: rgb(236, 83, 210);
  color: white;
}

.botao:hover, .botao2:hover {
  opacity: .8;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.divider {
  width: 72.2%;
  height: 2px;
  background-color: gray;
  margin: 20px auto;
}

footer {
  width: 100%;
  background-color: #171717;
  color: #f5f5f5;
   position: relative;
  z-index: 2;
}

#footer_content {
  display: flex;
  justify-content: space-between;
  padding: 2rem 3.5rem;
  flex-wrap: wrap;
    align-items: center;  /* alinha verticalmente */
  gap: 10px; 
  
}

.frase{
     display: inline-block;
  margin-left: 7px;
  margin-top: 0px;
  vertical-align: middle;
 
}

#footer_contacts h1 {
  margin-bottom: 0.75rem;
}

#footer_social_media {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  
}

.footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  color: #f5f5f5;
  border-radius: 50%;
  transition: all 0.4s;
  text-decoration: none;
}

#footer_social_media .footer-link i {
    font-size: 1.25rem;
}

.footer-link:hover {
  opacity: 0.8;
}

#instagram {
  background: linear-gradient(#7f37c9, #ff2992, #ff9807);
}

#TikTok {
  background-color: black;
}

.img-pequena {
  width: 200px;
  height: auto;
}

#footer_copyright {
  display: flex;
  justify-content: center;
  background-color: #0e0c0c;
  font-size: 0.9rem;
  padding: 1.5rem;
  font-weight: 100;
}

#music-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  z-index: 1000;
}

#music-button video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: opacity 0.5s ease-in-out;
  border-radius: 20%;
}

.active-video {
  opacity: 1;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Responsivo */
@media screen and (max-width: 768px) {
  .videoao {
    width: 100%;
    height: auto;
  }

  #footer_content {
    flex-direction: column;
    align-items: center;
  }
}

/* ... seu CSS atual vem aqui, até o final do bloco anterior ... */

/* Responsivo */
@media screen and (max-width: 768px) {
  .videoao {
    width: 100%;
    height: auto;
  }

  #footer_content {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .overlay {
    left: 0;
    width: 100%;
  }

  .videoao {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 5;
    border-width: 3px;
  }

  .botao, .botao2 {
    font-size: 14px;
    padding: 10px 15px;
    margin: 5px;
  }

  .img-pequena {
    width: 120px;
  }

  .video-caption {
    font-size: 16px;
    padding: 0 10px;
  }

  .video-subcaption {
    font-size: 13px;
    padding: 0 10px;
  }

  .divider {
    width: 90%;
  }

   #footer_content {
    flex-direction: column;
    align-items: flex-start;  /* Mantém alinhado à esquerda */
    text-align: left;
    padding: 2rem 1.5rem;  /* Reduz o padding lateral para caber melhor */
    gap: 1rem;
  }

  #footer_contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinha os filhos à esquerda */
  }

  #footer_social_media {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }

  .frase {
    margin-left: 0;
     margin-top: 0px;
  }

  #footer_contacts h1 img {
    width: 180px;
    margin-bottom: 10px;
  }

  #music-button {
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 15px;
  }
}

@media screen and (max-width: 768px) {
  body {
    background-position: center -50px;
    background-attachment: scroll; /* Corrige o problema no mobile */
  }
}
