/* Balada In Rio — Estilos base */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffffcc;
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid #e2e8f0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #111827;
  color: #ffffff;
  font-weight: 700;
}
.brand-text {
  letter-spacing: 0.2px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  color: #0f172a;
}
.site-nav a:hover {
  background: #f1f5f9;
}

.btn-outline {
  border: 1px solid #0f172a;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 6px;
}
.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: #0f172a;
  display: block;
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(
      1000px 400px at 10% 0%,
      #e0f2fe 0%,
      transparent 50%
    ),
    radial-gradient(1000px 400px at 90% 10%, #fae8ff 0%, transparent 50%);
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
  min-height: 100vh;
}

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

.hero-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  padding: 120px 0;
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  max-width: 600px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.hero p {
  margin-top: 0;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-size: clamp(16px, 1.8vw, 20px);
  text-align: left;
}

.hero h2 {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(24px, 2.8vw, 36px);
  margin-bottom: 24px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.news-badge {
  display: inline-block;
  background: #1e293b;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
}

.news-card h3 {
  color: #1e293b;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list li {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.news-list li:before {
  content: "•";
  color: #3b82f6;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.badge {
  display: inline-block;
  background: #111827;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.checklist {
  margin: 10px 0 0;
  padding-left: 18px;
}
.checklist li {
  margin: 6px 0;
}

/* Sections */
.section {
  padding: 48px 0;
}
.section.alt {
  background: #f8fafc;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

/* Sistema de Filtros Organizado e Limpo */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 16px;
  position: relative;
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: visible;
}

.filters-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
  width: 100%;
}

.filter {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 13px;
  min-height: 32px;
  flex: 0 0 auto;
}

.filter.is-active,
.filter:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.filter:active {
  transform: scale(0.98);
}

/* Contador dos filtros */
.filter-counter {
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.filter.is-active .filter-counter {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Barra de busca */
.search-container {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px;
  transition: all 0.2s ease;
  flex-shrink: 0;
  min-height: 32px;
  flex: 1;
  min-width: 200px;
}

.search-container:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.search-input {
  border: none;
  outline: none;
  padding: 4px 8px;
  font-size: 13px;
  background: transparent;
  width: 100%;
  font-weight: 400;
}

.search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.search-clear {
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  font-size: 12px;
  transition: all 0.2s ease;
  margin-left: 6px;
}

.search-clear:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Filtros combinados */
.combined-filters {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
  flex-wrap: wrap;
}

.filter-combined {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-combined:hover {
  background: #e2e8f0;
  color: #0f172a;
  border-color: #cbd5e1;
}

.filter-combined.active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

/* Contador de resultados */
.results-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.results-text {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  color: #475569;
  font-size: 12px;
}

.results-text::before {
  content: "🎯";
  font-size: 12px;
}

/* Layout responsivo para filtros organizados */
@media (min-width: 1200px) {
  .filters {
    justify-content: flex-start;
    gap: 10px;
    padding: 20px;
  }

  .filter {
    font-size: 14px;
    padding: 8px 14px;
    min-height: 36px;
  }

  .search-container {
    min-height: 36px;
    min-width: 220px;
  }

  .search-input {
    font-size: 14px;
  }

  .results-counter {
    top: 20px;
    right: 20px;
    font-size: 13px;
    padding: 8px 14px;
  }
}

@media (max-width: 1199px) and (min-width: 769px) {
}
.filters {
  justify-content: flex-start;
  gap: 8px;
}

.filter {
  font-size: 13px;
  padding: 6px 12px;
  min-height: 32px;
}

.search-container {
  min-width: 180px;
}

.results-counter {
  top: 16px;
  right: 16px;
  font-size: 12px;
  padding: 6px 12px;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 0;
    text-align: center;
    min-height: 100vh;
  }

  .hero-content {
    order: 2;
  }

  .hero-sidebar {
    order: 1;
  }

  .hero h1 {
    font-size: clamp(24px, 4vw, 32px);
    text-align: center;
  }

  .hero p {
    font-size: clamp(14px, 2vw, 18px);
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    justify-content: center;
  }

  .news-card {
    padding: 24px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .filters {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
  }

  .filter {
    justify-content: center;
    padding: 8px 12px;
    font-size: 14px;
    min-height: 36px;
  }

  .search-container {
    margin-top: 0;
    order: 1;
    width: 100%;
    min-width: auto;
  }

  .search-input {
    font-size: 14px;
  }

  .combined-filters {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
  }

  .filter-combined {
    flex: 1 1 calc(50% - 4px);
    min-width: 120px;
    padding: 8px 12px;
    font-size: 13px;
    min-height: 36px;
  }

  .results-counter {
    position: static;
    margin-top: 12px;
    text-align: center;
    order: 2;
    font-size: 13px;
    padding: 8px 12px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .filters {
    gap: 10px;
    padding: 12px;
  }

  .filter {
    padding: 6px 10px;
    font-size: 13px;
    min-height: 32px;
  }

  .filter-counter {
    font-size: 10px;
    min-width: 14px;
    padding: 2px 4px;
  }

  .search-container {
    padding: 6px;
    min-height: 32px;
  }

  .search-input {
    padding: 4px 8px;
    font-size: 13px;
  }

  .combined-filters {
    gap: 8px;
  }

  .filter-combined {
    flex: 1 1 100%;
    min-width: auto;
    padding: 8px 12px;
    font-size: 13px;
    min-height: 32px;
  }

  .results-counter {
    margin-top: 10px;
    padding: 6px 10px;
    font-size: 12px;
  }
}

/* Layout para telas muito grandes */
@media (min-width: 1400px) {
  .filters {
    justify-content: flex-start;
    gap: 12px;
    padding: 24px;
  }

  .filter {
    font-size: 14px;
    padding: 8px 16px;
    min-height: 40px;
  }

  .search-container {
    min-height: 40px;
    min-width: 240px;
  }

  .search-input {
    font-size: 14px;
  }

  .results-counter {
    top: 24px;
    right: 24px;
    font-size: 13px;
    padding: 8px 16px;
  }
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.event-card {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(2, 6, 23, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 6, 23, 0.1);
}

.event-image {
  margin: -16px -16px 12px -16px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
.event-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-date {
  font-weight: 700;
  color: #0f172a;
}
.event-title {
  margin: 0;
  font-size: 16px;
}
.event-meta {
  margin: 0;
  color: #475569;
  font-size: 14px;
}
.event-code {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
}
.event-actions {
  margin-top: 6px;
}

.btn-primary,
.btn-secondary,
.btn-chip {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: #111827;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover {
  background: #374151;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.btn-chip {
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
}
.btn-chip:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

.see-all {
  margin-top: 18px;
}
.link-arrow {
  color: #0f172a;
  font-weight: 600;
}
.link-arrow::after {
  content: " →";
}

/* Groups */
.groups {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: start;
}
.groups .card,
.about .card {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 10px rgba(2, 6, 23, 0.04);
}

/* Newsletter */
.newsletter {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.newsletter-form input {
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
}
.form-hint {
  margin: 8px 0 0;
  color: #64748b;
  grid-column: 1 / -1;
  font-size: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Partners */
#parceiros {
  background: #000000 !important;
  color: #ffffff;
}

#parceiros h2 {
  color: #ffffff;
}

.partners .logos {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask: linear-gradient(
    90deg,
    transparent,
    rgb(71, 71, 71) 20%,
    rgb(0, 0, 0) 80%,
    transparent
  );
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    rgb(0, 0, 0) 20%,
    rgb(58, 58, 58) 80%,
    transparent
  );
}

.logos-track {
  display: flex;
  align-items: center;
  animation: scroll-infinite 40s linear infinite;
  width: max-content;
}

.partner-logo {
  height: 70px;
  width: auto;
  margin: 0 30px;
  object-fit: contain;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

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

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

.logo-skeleton {
  height: 54px;
  background: repeating-linear-gradient(
    45deg,
    #f1f5f9,
    #f1f5f9 10px,
    #e2e8f0 10px,
    #e2e8f0 20px
  );
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

/* Bairros Slider */
.bairros-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.bairros-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  cursor: grab;
  user-select: none;
  height: 500px;
}

.bairros-slider:active {
  cursor: grabbing;
}

.bairro-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  visibility: hidden;
}

.bairro-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  visibility: visible;
}

.bairro-slide.prev {
  transform: translateX(-100%);
  opacity: 0;
}

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

.bairro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  min-height: 400px;
  max-height: 400px;
}

.bairro-slide:hover .bairro-image img {
  transform: scale(1.05);
}

.bairro-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.bairro-content h3 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: 24px;
  font-weight: 700;
}

.bairro-content p {
  margin: 0 0 20px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.bairro-content .checklist {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.bairro-content .checklist li {
  margin: 8px 0;
  color: #0f172a;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}

.bairro-content .checklist li:before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Navegação do Slider */
.slider-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #0f172a;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.prev-btn {
  margin-left: -24px;
}

.next-btn {
  margin-right: -24px;
}

/* Indicadores do Slider */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: #111827;
  border-color: #111827;
  transform: scale(1.2);
}

.dot:hover {
  border-color: #111827;
  transform: scale(1.1);
}

/* Responsividade para o Slider dos Bairros */
@media (max-width: 768px) {
  .bairros-slider-container {
    padding: 10px 0;
  }

  .bairro-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bairro-image {
    order: 1;
  }

  .bairro-image img {
    min-height: 250px;
  }

  .bairro-content {
    order: 2;
    padding: 24px;
  }

  .bairro-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .bairro-content p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .prev-btn {
    margin-left: -20px;
  }

  .next-btn {
    margin-right: -20px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .bairro-content {
    padding: 20px;
  }

  .bairro-content h3 {
    font-size: 18px;
  }

  .bairro-content p {
    font-size: 13px;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .prev-btn {
    margin-left: -18px;
  }

  .next-btn {
    margin-right: -18px;
  }
}

/* Camarotes Grid */
.camarotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.camarote-card {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(2, 6, 23, 0.04);
}
.camarote-image {
  margin: -20px -20px 15px -20px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
.camarote-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.camarote-card h3 {
  margin: 0 0 10px;
  color: #0f172a;
}
.camarote-card p {
  margin: 0 0 15px;
  color: #475569;
}
.camarote-card .checklist {
  margin: 0 0 20px;
}

/* Escolas Grid */
.escolas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.escola-card {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(2, 6, 23, 0.04);
}
.escola-card h3 {
  margin: 0 0 15px;
  color: #0f172a;
}
.escola-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}
.escola-item:last-child {
  border-bottom: none;
}
.escola-nome {
  font-weight: 600;
  color: #0f172a;
}
.escola-data {
  color: #64748b;
  font-size: 14px;
}

/* Estados Grid */
.estados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.estado-card {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(2, 6, 23, 0.04);
}
.estado-image {
  margin: -20px -20px 15px -20px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
.estado-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.estado-card h3 {
  margin: 0 0 10px;
  color: #0f172a;
}
.estado-card p {
  margin: 0 0 15px;
  color: #475569;
}
.estado-card .checklist {
  margin: 0 0 15px;
}

/* Festivais Grid */
.festivais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.festival-card {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(2, 6, 23, 0.04);
}
.festival-image {
  margin: -20px -20px 15px -20px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
.festival-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.festival-card h3 {
  margin: 0 0 10px;
  color: #0f172a;
}
.festival-card p {
  margin: 0 0 15px;
  color: #475569;
}
.festival-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.festival-data,
.festival-local {
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

/* Pacotes Grid */
.pacotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pacote-card {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(2, 6, 23, 0.04);
  position: relative;
}
.pacote-card.featured {
  border-color: #111827;
  box-shadow: 0 8px 25px rgba(2, 6, 23, 0.1);
}
.pacote-card h3 {
  margin: 0 0 10px;
  color: #0f172a;
}
.pacote-preco {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}
.pacote-card .checklist {
  margin: 0 0 20px;
}

/* Active Navigation */
.site-nav a.active {
  background: #111827;
  color: #ffffff;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}

.brand-footer .brand-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .brand-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .brand-footer .brand-logo {
    height: 180px;
  }
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 20px;
  padding: 28px 0;
}
.brand-footer .brand-mark {
  background: #0f172a;
}
.footer-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-inner a {
  color: #0f172a;
}
.social {
  display: grid;
  gap: 8px;
}

/* Modais */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

.modal-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
  color: #0f172a;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.modal-body {
  padding: 24px;
}

.modal.fade-out {
  animation: modalFadeOut 0.3s ease forwards;
}

.modal.fade-out .modal-content {
  animation: modalSlideOut 0.3s ease forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes modalFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

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

/* Notificações */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  max-width: 400px;
  animation: notificationSlideIn 0.3s ease;
}

.notification-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #3b82f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.notification-success .notification-content {
  border-left-color: #10b981;
}

.notification-error .notification-content {
  border-left-color: #ef4444;
}

.notification-info .notification-content {
  border-left-color: #3b82f6;
}

.notification-message {
  color: #0f172a;
  font-weight: 500;
}

.notification-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.notification.fade-out {
  animation: notificationSlideOut 0.3s ease forwards;
}

@keyframes notificationSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes notificationSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Formulários nos modais */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #0f172a;
  font-size: 14px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Opções de ingressos */
.ticket-options {
  display: grid;
  gap: 16px;
}

.ticket-option {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.ticket-option h4 {
  margin: 0 0 8px;
  color: #0f172a;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

/* Código de desconto */
.discount-code {
  text-align: center;
  padding: 20px;
}

.discount-code .code {
  background: #f1f5f9;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: monospace;
  font-size: 18px;
  color: #0f172a;
}

/* Indicadores de scroll para desktop */
.scroll-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #64748b;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  z-index: 20;
}

.scroll-indicator:hover {
  background: #f8fafc;
  color: #0f172a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.scroll-left {
  left: -16px;
}

.scroll-right {
  right: -16px;
}

/* Animações dos cards */
.event-card {
  transition: all 0.4s ease;
}

.event-card[hidden] {
  display: none !important;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .groups,
  .newsletter,
  .about {
    grid-template-columns: 1fr;
  }
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .modal-content {
    width: 95%;
    margin: 20px;
  }
}
@media (max-width: 640px) {
  .site-nav {
    display: none;
    position: absolute;
    inset: 58px 0 auto 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
  }
  .site-nav.open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    padding: 10px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  .modal-content {
    width: 95%;
    margin: 10px;
  }
}

/* Estilos para imagem do evento no modal */
.event-info {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.event-image-modal {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-image-modal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-image-modal:hover img {
  transform: scale(1.05);
}

.event-details {
  flex: 1;
  min-width: 0;
}

.event-details p {
  margin: 0 0 8px 0;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.5;
}

.event-details p:first-child {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

/* Responsividade para o modal com imagem */
@media (max-width: 768px) {
  .event-info {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }

  .event-image-modal {
    width: 100%;
    height: 120px;
    align-self: center;
  }

  .event-details p:first-child {
    text-align: center;
  }
}

/* Estilos para a seção de destaques */
.highlights-grid {
  display: flex;
  overflow: hidden;
  position: relative;
  margin-top: 32px;
  height: 400px;
  width: 30%;
  justify-content: center;
  align-items: center;
}
.highlights-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-left: -700px;
}
.highlight-card {
  background: rgba(0, 0, 0, 0.296);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  min-width: 100%;
  opacity: 0;
  transform: translateX(100%);
  position: absolute;
  top: 0;
  left: 0;
}

.highlight-card.active {
  opacity: 1;
  transform: translateX(0);
}

.highlight-card.prev {
  transform: translateX(-100%);
  opacity: 0;
}

.highlight-image {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.highlight-card h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  line-height: 1.3;
  text-align: center;
}

.highlight-card p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.296);
}

/* Responsividade para destaques */
@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
    height: 400px;
    width: 100%;
    margin-left: 0px;
    justify-content: center;
    align-items: center;
  }
  .highlights-title {
    margin-left: 0px;
  }

  .highlight-card {
    padding: 24px 20px;
  }

  .highlight-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .highlight-card h4 {
    font-size: 18px;
  }

  .highlight-card p {
    font-size: 15px;
  }
}
