/* ====== Main CSS ====== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Permanent+Marker&display=swap');

:root {
  /* Colors */
  --color-bg-dark: #111111;
  --color-bg-light: #222222;
  --color-primary: #FF6D00;
  --color-secondary: #FF2400;
  --color-accent: #FFD700;
  --color-text-light: #FFFFFF;
  --color-text-dark: #111111;
  --color-light-bg: #F8F8F8;
  --color-overlay: rgba(0, 0, 0, 0.7);

  /* Fonts */
  --font-primary: 'Montserrat', sans-serif;
  --font-display: 'Permanent Marker', cursive;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Other */
  --border-radius: 4px;
  --transition: all 0.3s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 60px;
  font-size: 16px;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  touch-action: pan-y;
  overscroll-behavior-x: none;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-text-light);
  background-color: var(--color-bg-dark);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100vw;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button, .btn {
  cursor: pointer;
  font-family: var(--font-primary);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

section {
  padding: var(--spacing-lg) 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  font-size: 0.975rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  color: var(--color-text-light);
}

.btn-tickets {
  background-color: transparent;
  color: var(--color-text-dark);
  border: 2px solid var(--color-primary);
  padding: 0.5rem 1.25rem;
}

.btn-tickets:hover {
  background-color: var(--color-primary);
  color: var(--color-light-bg);
}

.btn-shop {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  padding: 0.75rem 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  max-width: 200px;
  margin-bottom: var(--spacing-md);
  animation: pulse 2s infinite;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid var(--color-primary);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
}

.nav-link {
  font-weight: 800;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-logo {
  position: absolute;
  left: 1rem;
}

.mobile-logo a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-toggle {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  cursor: pointer;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-text-light);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-dark);
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.mobile-nav-link {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-light);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--color-primary);
}

.mobile-social {
  display: flex;
  gap: var(--spacing-sm);
}

.mobile-social a {
  font-size: 1.25rem;
  color: var(--color-text-light);
  transition: var(--transition);
}

.mobile-social a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0.5;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20vh;
  text-align: center;
  padding: 0 var(--spacing-sm);
}

.logo-container {
  margin-bottom: var(--spacing-md);
}

.main-logo {
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.6));
}

.social-icons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: var(--color-primary);
  transform: translateY(-3px);
}





.scroll-arrow {
  margin-top: 0.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Tour Section */
.tour-section {
  background-color: var(--color-light-bg);
  color: var(--color-text-dark);
  padding: var(--spacing-xl) 0;
}

.tour-list {
  margin-bottom: var(--spacing-md);
}

.tour-item {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tour-date {
  margin-bottom: var(--spacing-xs);
}

.date {
  font-weight: 800;
  font-size: 1.25rem;
}

.year {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-left: 0.5rem;
}

.tour-venue {
  text-align: center;
}

.tour-venue h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.tour-venue p {
  font-size: 0.875rem;
  opacity: 0.7;
}

.tour-action {
  margin-top: var(--spacing-sm);
}

.tour-more {
  text-align: center;
}

/* Music Section */
.music-section {
  background-color: var(--color-bg-dark);
  padding: var(--spacing-xl) 0;
  position: relative;
}

.music-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/1763075/pexels-photo-1763075.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.music-releases {
  position: relative;
  z-index: 1;
  margin-bottom: var(--spacing-md);
}

.release-card {
  background-color: rgba(34, 34, 34, 0.8);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.release-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.release-image {
  position: relative;
  overflow: hidden;
}

.release-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.release-card:hover .release-image img {
  transform: scale(1.05);
}

.release-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.release-card:hover .release-overlay {
  opacity: 1;
}

.play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text-dark);
  font-size: 1.25rem;
  transition: var(--transition);
}

.play-btn:hover {
  background-color: var(--color-accent);
  transform: scale(1.1);
}

.release-info {
  padding: var(--spacing-sm);
  text-align: center;
}

.release-info h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.release-info p {
  font-size: 0.875rem;
  opacity: 0.7;
}

.music-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.music-platform {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  transition: var(--transition);
}

.music-platform i {
  margin-right: 0.5rem;
}

.music-platform:hover {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
}

/* Merch Section */
.merch-section {
  background-color: var(--color-light-bg);
  color: var(--color-text-dark);
  padding: var(--spacing-xl) 0;
}

.merch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.merch-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.merch-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.merch-image {
  position: relative;
  overflow: hidden;
}

.merch-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.merch-item:hover .merch-image img {
  transform: scale(1.05);
}

.merch-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.merch-item:hover .merch-overlay {
  opacity: 1;
}

.merch-item:hover .btn-shop {
  opacity: 1;
  transform: translateY(0);
}

.merch-info {
  padding: var(--spacing-sm);
  text-align: center;
}

.merch-info h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.price {
  font-weight: 700;
  color: var(--color-primary);
}

.merch-more {
  text-align: center;
  margin-top: 0rem; /* igual ao .videos-more */
}

/* Videos Section */
.videos-section {
  background-color: var(--color-bg-dark);
  padding: var(--spacing-xl) 0;
  position: relative;
}

.videos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/1540406/pexels-photo-1540406.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.video-item {
  background-color: rgba(34, 34, 34, 0.8);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.video-item:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.video-item:hover .video-overlay {
  opacity: 1;
}

.video-info {
  padding: var(--spacing-sm);
}

.video-info h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.video-info p {
  font-size: 0.875rem;
  opacity: 0.7;
}

.videos-more {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Run Club Section */
.run-club-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/2526878/pexels-photo-2526878.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-text-light);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.run-club-desc {
  max-width: 600px;
  margin: 0 auto var(--spacing-md);
  font-size: 1.125rem;
}

.run-club-cta {
  margin-top: var(--spacing-md);
}

/* Newsletter Section */
.newsletter-section {
  background-color: var(--color-text-dark);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.newsletter-form input {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
}

/* Footer */
.site-footer {
  background-color: var(--color-bg-dark);
  padding: var(--spacing-lg) 0;
  text-align: center;
}

.footer-logo-img {
  max-width: 150px;
  margin-bottom: var(--spacing-md);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer-social a {
  color: var(--color-text-light);
  font-size: 1.25rem;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--color-primary);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.footer-links a {
  color: var(--color-text-light);
  font-size: 0.875rem;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.footer-copyright {
  opacity: 0.5;
  font-size: 0.875rem;
}

/* Media Queries */
@media (min-width: 576px) {
  .newsletter-form {
    flex-direction: row;
  }
  
  .newsletter-form input {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .tour-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .tour-action {
    margin-top: 0;
  }
  
  .merch-grid, .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: block;
  }
  
  .mobile-logo {
    display: none;
  }
  
  .merch-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main-logo {
    max-width: 400px;
  }
}

/* For swiper js */
.swiper-container {
  width: 100%;
  padding-bottom: var(--spacing-md);
}

.swiper-slide {
  width: 100%;
  height: auto;
}

.swiper-pagination-bullet {
  background: var(--color-text-light);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
}

@media (min-width: 768px) {
  .swiper-slide {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .swiper-slide {
    width: 25%;
  }

}
@media (max-width: 768px) {
  .video-container {
    height: 25vh; /* ou um tamanho fixo como 100vw */
    aspect-ratio: 1 / 1; /* mantém 1:1 se quiser */
  }

  .video-container video {
    object-fit: contain; /* mostra tudo do vídeo sem cortar */
    height: 50vh;
  }
}

  @media (min-width: 768px) {
    .social-icons {
      display: flex;
    }
}

/* ===== CORREÇÕES PARA MOBILE ===== */
@media (max-width: 768px) {
  /* Hero vídeo adaptado para ocupar a vertical */
  .video-container {
    height: 100vh;
  }

  #hero-video {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  /* Ajuste no layout do header mobile */
  .header-container {
    flex-direction: column;
  }

  .menu-toggle {
    position: relative;
    margin-bottom: 0.5rem;
  }

  .mobile-logo {
    position: relative;
    left: 0;
    margin-top: 0.5rem;
  }

  .mobile-logo a {
    font-size: 1rem;
  }

 /* Redução de fontes e espaçamentos */
.section-title,
.section-titlep {
  font-size: 1.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  margin: var(--spacing-xs) auto;
}

@media (min-width: 768px) {
  .section-title,
.section-titlep {
    font-size: 3rem;
  }
}

/* Tour section: mantém o título preto */
#tour .section-title,
.section-titlep {
  color: var(--color-text-dark);
}

  .nav-link {
    font-size: 1.25rem;
  }

  .mobile-nav-link {
    font-size: 1.25rem;
  }

  .social-icons a {
    font-size: 1.25rem;
  }

  .main-logo {
    max-width: 70%;
  }
}

/* TRAVAMENTO DE ORIENTAÇÃO LANDSCAPE NO MOBILE */
@media screen and (orientation: landscape) and (max-width: 768px) {
  body {
    transform: rotate(90deg);
    transform-origin: left top;
    width: 100vh;
    height: 100vw;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
  }
}

/* Ajuste de espaçamento entre seções */
section {
  margin-bottom: var(--spacing-xl);
}

/* Live Sets slider format */
.live-section {
  background-color: var(--color-bg-dark);
  padding: var(--spacing-xl) 0;
  position: relative;
}

.live-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/1540406/pexels-photo-1540406.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.live-slider {
  position: relative;
  z-index: 1;
  margin-bottom: var(--spacing-md);
}

.live-slider .swiper-slide {
  width: 100%;
  height: auto;
}

.live-section .swiper-pagination {
  text-align: center;
  margin-top: var(--spacing-sm);
}

/* Responsividade para slider novo */
@media (min-width: 768px) {
  .live-slider .swiper-slide {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .live-slider .swiper-slide {
    width: 25%;
  }
}

/* Seções com fundo branco */
.light-bg {
  background-color: var(--color-light-bg);
  color: var(--color-text-dark);
}

.light-bg .section-title {
  color: var(--color-text-dark);
}

.light-bg .swiper-pagination-bullet {
  background: var(--color-text-dark);
}

.light-bg .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

/* Fixar o header visível no mobile */
.site-header {
  background-color: rgba(0, 0, 0, 0.95);
  padding: 0.75rem 0;
  z-index: 9999;
}

/* Mostrar o menu mobile corretamente */
.mobile-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 9998;
  background-color: var(--color-bg-dark);
}

@media (max-width: 768px) {
  .tour-item {
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column !important;
    padding: 0.5rem 0;
  }

  .tour-date,
  .tour-venue,
  .tour-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .tour-date .date {
    font-size: 0.9rem;
  }

  .tour-venue h3 {
    font-size: 0.95rem;
    margin: 0.2rem 0;
  }

  .tour-venue p {
    font-size: 0.75rem;
  }

  .btn-tickets {
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
    margin-top: 0.3rem;
  }

  .tour-section {
    padding: 1rem 0;
  }

  .tour-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .tour-item {
    margin-bottom: 0.3rem;
  }
}

section {
  margin-bottom: 3rem !important;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.videos-more {
  margin-top: 0rem;
}

.site-header {
  height: 60px !important;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 0 !important;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 1001;
  height: 30px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: inline-block;
  height: 18px;
  width: 25px;
  position: relative;
}

.hamburger span,
.hamburger:before,
.hamburger:after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  position: absolute;
  left: 0;
}

.hamburger:before {
  top: 0;
}

.hamburger span {
  top: 7.5px;
}

.hamburger:after {
  bottom: 0;
}

@media (max-width: 768px) {
  .hero {
    height: auto !important;
    display: block !important;
  }

  .video-container {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    max-height: 100vw !important;
    position: relative !important;
  }

  #hero-video {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .hero-content {
    padding-top: 2rem !important;
  }

  
}

@media (max-width: 768px) {
  .hero {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto !important;
    padding: 0 !important;
  }

  .video-container {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    max-height: 100vw !important;
    position: relative !important;
    overflow: hidden;
  }

  #hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
  }

  .hero-social {
    margin-top: 1rem;
    z-index: 11;
    position: relative;
  }

  

  
}

@media (max-width: 768px) {
  .hero {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto !important;
    padding: 0 !important;
    position: relative;
  }

  .video-container {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    position: relative;
    overflow: hidden;
  }

  #hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
  }

  .hero-content img {
    max-width: 80vw !important;
  }

  .hero-social {
    position: relative;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    z-index: 11;
  }

  

  
}
@media (max-width: 768px) {
  .mobile-hero-extras {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    background: transparent;
    padding: 0;
  }

  .mobile-hero-extras .social-icons {
    margin: 0;
    padding: 0;
  }

  
}

/* === Mobile Fixes Inserted === */
/* === RESETANDO ELEMENTOS MOBILE HERO === */
@media (max-width: 768px) {
  .hero-content .main-logo {
    max-width: 60vw !important;
  }

  

  .scroll-indicator .scroll-arrow {
    font-size: 1.5rem;
    margin-top: 4px;
  }

  .digital-clock {
    display: none !important;
  }

  .mobile-hero-extras {
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .mobile-hero-extras .social-icons {
    justify-content: center;
    gap: 16px;
    font-size: 1.3rem;
  }
}

/* ===================== SCROLL INDICATOR - CSS REFEITO ===================== */

/* Estilo padrão para desktop */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.85rem;
  letter-spacing: 5px;
  z-index: 10;
  animation: bounce 2s infinite;
}

/* Ajuste para mobile: joga mais pra baixo */
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: -2.3rem;
    font-size: 0.85rem;
  }
}

/* ===================== MENU TOGGLE FIX ===================== */
.menu-toggle {
  display: none;
}

@media (max-width: 991px) {
  .menu-toggle {
    display: flex !important;
  }
}

/* === Scroll Arrow Fix (somente mobile) === */
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: -3rem !important;
  }

  .scroll-indicator .scroll-arrow i {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--color-text-light);
    opacity: 1;
    animation: bounce 2s infinite;
  }
}

.videos-section:not(.live-section) .video-item {
  background-color: white;
  color: var(--color-text-dark);
}

.videos-section:not(.live-section) .video-info h3,
.videos-section:not(.live-section) .video-info p {
  color: var(--color-text-dark);
  opacity: 1;
}

.live-section .video-item {
  background-color: rgba(34, 34, 34, 0.8);
  color: var(--color-text-light);
}

.live-section .video-info h3,
.live-section .video-info p {
  color: var(--color-text-light);
  opacity: 0.95;
}

.video-item--dark {
  background-color: rgba(34, 34, 34, 0.8);
  color: var(--color-text-light);
}

.video-item--dark .video-info h3,
.video-item--dark .video-info p {
  color: var(--color-text-light);
  opacity: 0.95;
}

/* Corrigir posição das bolinhas da seção de MUSIC */
.music-section .swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 1.5rem;
}

/* 🔵 Estilo padrão das bolinhas para todos os sliders */
.swiper-pagination {
  margin-bottom: 1.5rem;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 0.5;
  transition: 0.3s ease;
  margin: 0 4px;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
}

/* ✅ Espaçamento padrão para sliders com bolinhas */
.slider-wrapper {
  margin-bottom: 2rem;
}

.swiper-pagination {
  position: relative !important;
  margin-top: 2rem;
  margin-bottom: 0rem;
  text-align: center;
}
