:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #8b5cf6;
  --accent: #ec4899;
  --dark: #1e293b;
  --darker: #0f172a;
  --gray: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.header-gradient {
  background: linear-gradient(135deg, var(--darker) 0%, #1e293b 100%);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.1);
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 0.85rem;
  color: var(--gray);
}

.navbar-menu ul {
  list-style: none;
}

.nav-custom {
  color: var(--white);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
}

.nav-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-ticketek {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition);
}

.btn-ticketek:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(238, 90, 111, 0.4);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--darker);
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.3s ease;
}

.mobile-menu.show {
  display: block;
}

.mobile-menu-content {
  max-height: 80vh;
  overflow-y: auto;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-container {
  max-width: 800px;
  margin: 0 auto;
}

.search-box {
  position: relative;
  flex: 1;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 1.1rem;
}

.search-input {
  padding-left: 45px;
  padding-right: 15px;
  border: 2px solid var(--white);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.btn-search {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.hero-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: var(--radius-xl);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.hero-badge {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
}

.section-bg {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.bandas-container {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.banda-card {
  text-align: center;
  transition: var(--transition);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banda-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.banda-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1rem;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.banda-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
}

.card-custom {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.card-custom:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-header {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary);
}

.card-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}

.card-header p {
  color: var(--gray);
  font-size: 0.95rem;
}

.input-custom {
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 1rem;
  transition: var(--transition);
}

.input-custom:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.btn-register {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.table-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-weight: 600;
}

.table-schedule,
.table-testimonials {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.table-schedule th,
.table-testimonials th {
  padding: 1rem;
  font-size: 0.95rem;
}

.table-schedule td,
.table-testimonials td {
  padding: 0.8rem;
  font-size: 0.9rem;
  color: var(--dark);
}

.footer-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.footer-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.social-icon {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: white;
  transform: translateY(-2px);
}

.input-newsletter {
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: var(--transition);
}

.input-newsletter::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.input-newsletter:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.btn-newsletter {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.btn-newsletter:hover {
  background: var(--primary-dark);
  transform: translateX(4px);
}

.footer-bottom {
  color: var(--gray);
  font-size: 0.9rem;
}

.link-terms {
  color: var(--primary);
  text-decoration: underline;
  transition: var(--transition);
}

.link-terms:hover {
  color: var(--primary-dark);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.rounded-4 {
  border-radius: var(--radius-xl);
}

@media (max-width: 768px) {
  .logo-title {
    font-size: 1.3rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .banda-img {
    width: 100px;
    height: 100px;
  }
  
  .btn-search,
  .btn-register {
    width: 100%;
  }
  
  .footer-col {
    text-align: center !important;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo-title {
    font-size: 1.2rem;
  }
  
  .hero-section {
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .banda-img {
    width: 80px;
    height: 80px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
}