body { margin:0; font-family: sans-serif; text-align: center; }
.logo { max-width: 200px; margin: 20px auto; display: block; }
.shows-list ul { list-style:none; padding:0; }
.shows-list li { margin:10px 0; }

/* Container para o carrossel */
.carousel-container {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 1 / 1;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  touch-action: none;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1); /* Transição mais suave */
}

.slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden; /* Evita artefatos visuais */
  transform: translateZ(0); /* Aceleração GPU */
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.dots-container {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
  pointer-events: none; /* Permite clicar através dos dots */
}

.dots {
  background: rgba(255, 255, 255, 0.5);
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  gap: 8px;
  pointer-events: auto; /* Habilita cliques nos dots */
}



.dots span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.dots .active {
  background: #333;
}

.menu-toggle { position: fixed; bottom:20px; right:20px; width:50px; height:50px; border-radius:50%; background:#000; color:#fff; font-size:24px; line-height:50px; text-align:center; cursor:pointer; }
.submenu { position: fixed; bottom:80px; right:20px; background:rgba(255,255,255,0.9); display:none; border-radius:8px; }
.submenu ul { list-style:none; margin:0; padding:10px; }
.submenu li { padding:8px; cursor:pointer; }
.submenu-content { position: fixed; top:0; left:0; width:100%; height:100%; background:#fff; display:none; overflow:auto; padding:20px; }

/* Media queries para dispositivos móveis */
@media (max-width: 768px) {
  .carousel-container {
    max-width: 95vw; /* Ocupa quase toda a largura */
    margin: 10px auto;
  }
  
  .shows-list {
    font-size: 14px;
  }
  
  .logo {
    max-width: 150px;
  }
}

.carousel {
  will-change: transform; /* Otimização para browsers modernos */
}

.slide {
  transform: translate3d(0,0,0); /* Forçar aceleração de hardware */
}