/* ============================================
   CAMINHOS DE UM HERÓI BARIRIENSE
   Landing Page — Design System & Styles
   ============================================ */

/* --- Google Fonts (closest to brand typography) --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --color-black: #171717;
  --color-dark-brown: #1C0212;
  --color-gold: #B8943E;
  --color-gold-light: #D4AF5A;
  --color-gold-dark: #8B6F2A;
  --color-red: #8B1A1A;
  --color-red-bright: #A52A2A;
  --color-cream: #F5F0E8;
  --color-cream-dark: #E8E0D0;
  --color-parchment: #F8F4EC;
  --color-white: #FAFAF8;
  --color-text: #2A2A2A;
  --color-text-light: #5A5A5A;
  --color-text-muted: #8A8A8A;

  /* Typography */
  --font-title: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', 'Helvetica Neue', 'Arial', sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 1.5rem;
}

.section-title--light {
  color: var(--color-cream);
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(23, 23, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 70px;
  width: auto;
  transition: height var(--transition-smooth);
}

.nav.scrolled .nav__logo img {
  height: 50px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-cream);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-smooth);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-smooth);
}

.nav__links a:hover {
  color: var(--color-gold-light);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black) !important;
  background: var(--color-gold);
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  transition: all var(--transition-smooth) !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--color-gold-light) !important;
  color: var(--color-black) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(184, 148, 62, 0.4);
}

/* Mobile menu button */
.nav__menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav__menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.nav__menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(23, 23, 23, 0.7) 0%,
    rgba(23, 23, 23, 0.6) 40%,
    rgba(23, 23, 23, 0.75) 70%,
    rgba(23, 23, 23, 0.98) 100%
  );
}

/* Animated particles (stars / dust) */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--color-gold-light);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.8; }
  80% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  margin-top: 4rem;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 1s 0.5s forwards;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1s 0.8s forwards;
}

.hero__title span {
  display: block;
  color: var(--color-gold);
  font-size: 0.55em;
  font-weight: 500;
  font-style: italic;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.hero__description {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: heroFadeUp 1s 1.1s forwards;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroFadeUp 1s 1.4s forwards;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
}

.hero__meta-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-gold-light);
  fill: none;
  stroke-width: 1.5;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: heroFadeUp 1s 1.7s forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 1s 2s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold-light), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 148, 62, 0.4);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary .btn__text {
  position: relative;
  z-index: 1;
}

.btn--outline {
  background: transparent;
  color: var(--color-cream);
  border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn--outline:hover {
  border-color: var(--color-gold-light);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--color-black);
  color: var(--color-cream);
  border: 1px solid rgba(23, 23, 23, 0.2);
}

.btn--dark:hover {
  background: var(--color-dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn--large {
  padding: 1.15rem 3rem;
  font-size: 0.9rem;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-smooth);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ============================================
   ABOUT / SOBRE SECTION
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  background: var(--color-cream);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 6s ease;
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-gold);
  border-radius: 4px;
  z-index: -1;
}

.about__image-year {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(184, 148, 62, 0.15);
  line-height: 1;
  pointer-events: none;
}

.about__content {
  max-width: 520px;
}

.about__text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.about__text:first-of-type::first-letter {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
  color: var(--color-gold);
}

.about__credits {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about__partners-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}

.partners-bar-img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
}

.about__partner-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__partner-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.about__partner-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: all var(--transition-smooth);
}

.about__partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.about__partner-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about__partner-logo--ativaz {
  height: 40px;
}

/* ============================================
   IMMERSIVE THEATER SECTION
   ============================================ */
.immersive {
  padding: var(--section-padding) 0;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.immersive::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(184, 148, 62, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(139, 26, 26, 0.04) 0%, transparent 60%);
}

.immersive__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.immersive__content {
  max-width: 520px;
}

.immersive__text {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 1.25rem;
}

.immersive__highlight {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-gold-light);
  line-height: 1.6;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-gold);
}

.immersive__image-wrapper {
  position: relative;
}

.immersive__image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.immersive__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 6s ease;
}

.immersive__image:hover img {
  transform: scale(1.05);
}

/* Features grid inside immersive */
.immersive__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  grid-column: 1 / -1;
}

.feature-card {
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(245, 240, 232, 0.06);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  transition: all var(--transition-smooth);
}

.feature-card:hover {
  background: rgba(245, 240, 232, 0.06);
  border-color: rgba(184, 148, 62, 0.2);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--color-gold);
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.feature-card__title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}

.feature-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.6);
}

/* ============================================
   TEASER / VIDEO SECTION
   ============================================ */
.teaser {
  padding: var(--section-padding) 0;
  background: var(--color-cream);
  text-align: center;
  position: relative;
}

.teaser__content {
  max-width: 650px;
  margin: 0 auto 3rem;
}

.teaser__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.teaser__video-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-black);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.teaser__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.teaser__video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #2a2219);
  position: relative;
}

.teaser__video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(184, 148, 62, 0.1) 0%, transparent 70%);
}

.teaser__play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(184, 148, 62, 0.15);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.teaser__play-btn::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(184, 148, 62, 0.2);
  animation: playPulse 2s infinite;
}

@keyframes playPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.teaser__play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--color-gold);
  margin-left: 4px;
}

.teaser__play-btn:hover {
  background: rgba(184, 148, 62, 0.3);
  transform: scale(1.1);
}

.teaser__video-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  position: relative;
  z-index: 1;
}

/* ============================================
   TICKETS / INGRESSOS SECTION
   ============================================ */
.tickets {
  padding: var(--section-padding) 0;
  background: linear-gradient(170deg, var(--color-black) 0%, #1a1510 100%);
  position: relative;
  overflow: hidden;
}

.tickets::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

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

.tickets__content {
  max-width: 650px;
  margin: 0 auto;
}

.tickets__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 1rem;
}

.tickets__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.ticket-card {
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 4px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all var(--transition-smooth);
}

.ticket-card:hover {
  border-color: rgba(184, 148, 62, 0.3);
  background: rgba(245, 240, 232, 0.05);
  transform: translateY(-4px);
}

.ticket-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--color-gold);
}

.ticket-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.ticket-card__value {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.ticket-card__label {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.05em;
}

.tickets__warning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-gold-light);
  margin-bottom: 2.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(184, 148, 62, 0.08);
  border: 1px solid rgba(184, 148, 62, 0.15);
  border-radius: 4px;
}

.tickets__warning svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold-light);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 0 2rem;
  background: #0d0d0d;
  border-top: 1px solid rgba(245, 240, 232, 0.05);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__logo img {
  height: 140px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition-smooth);
}

.footer__logo:hover img {
  opacity: 1;
}

.footer__info {
  text-align: center;
}

.footer__credits {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer__credits strong {
  color: var(--color-gold-light);
  font-weight: 600;
}

.footer__divider {
  width: 60px;
  height: 1px;
  background: rgba(184, 148, 62, 0.3);
  margin: 1.5rem auto;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.3);
  letter-spacing: 0.05em;
}

.footer__libras {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.5);
  padding: 0.5rem 1rem;
  background: rgba(245, 240, 232, 0.03);
  border-radius: 4px;
  border: 1px solid rgba(245, 240, 232, 0.06);
}

.footer__libras svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.footer__partners-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.partners-bar-img--footer {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity var(--transition-smooth);
}

.partners-bar-img--footer:hover {
  opacity: 1;
}

.footer__partner-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer__partner-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}

.footer__partner-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: all var(--transition-smooth);
}

.footer__partner-logo:hover {
  opacity: 1;
}

.footer__partner-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer__partner-logo--ativaz {
  height: 40px;
}

/* ============================================
   COUNTDOWN (in Hero)
   ============================================ */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFadeUp 1s 1.3s forwards;
}

.countdown__item {
  text-align: center;
}

.countdown__number {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  min-width: 60px;
  display: block;
}

.countdown__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  margin-top: 0.4rem;
  display: block;
}

.countdown__separator {
  font-family: var(--font-title);
  font-size: 2rem;
  color: rgba(184, 148, 62, 0.3);
  line-height: 1;
  align-self: flex-start;
  margin-top: 0.15rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about__grid,
  .immersive__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__content,
  .immersive__content {
    max-width: 100%;
  }

  .immersive__grid {
    direction: ltr;
  }

  .immersive__image-wrapper {
    order: -1;
  }

  .tickets__cards,
  .immersive__features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  /* --- Nav --- */
  .nav {
    padding: 0.75rem 0;
  }

  .nav__logo img {
    height: 50px;
  }

  .nav.scrolled .nav__logo img {
    height: 40px;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(23, 23, 23, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 2.5rem;
    transition: right 0.4s ease;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__menu-btn {
    display: block;
  }

  /* --- Hero --- */
  .hero {
    min-height: 100svh;
  }

  .hero__bg img {
    object-position: 70% center;
  }

  .hero__content {
    margin-top: 1rem;
    padding: 0 1.25rem;
  }

  .hero__subtitle {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .hero__title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .hero__title span {
    font-size: 0.55em;
    margin-top: 0.4rem;
  }

  .hero__description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .hero__meta {
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
  }

  .hero__meta-item {
    font-size: 0.82rem;
    justify-content: center;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .hero__cta-group .btn {
    justify-content: center;
    width: 100%;
  }

  /* --- Countdown --- */
  .countdown {
    gap: 0.6rem;
    margin-bottom: 1.75rem;
  }

  .countdown__number {
    font-size: 1.8rem;
    min-width: 42px;
  }

  .countdown__separator {
    font-size: 1.4rem;
  }

  .countdown__label {
    font-size: 0.6rem;
  }

  /* --- Section spacing --- */
  .section-label {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: 1.65rem;
    margin-bottom: 1.25rem;
  }

  /* --- About --- */
  .about {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .about__image img,
  .immersive__image img {
    height: 300px;
  }

  .about__image-accent {
    display: none;
  }

  .about__image-year {
    font-size: 2.5rem;
  }

  .about__text {
    font-size: 0.92rem;
    margin-bottom: 1rem;
  }

  .about__text:first-of-type::first-letter {
    font-size: 2.8rem;
  }

  .about__credits {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .about__partners-bar {
    justify-content: center;
  }

  /* --- Immersive --- */
  .immersive {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .immersive__text {
    font-size: 0.92rem;
  }

  .immersive__highlight {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    padding-left: 1rem;
  }

  .tickets__cards,
  .immersive__features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.5rem 1.25rem;
  }

  /* --- Teaser --- */
  .teaser {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .teaser__text {
    font-size: 0.92rem;
  }

  .teaser__video-wrapper {
    max-width: 100%;
    border-radius: 12px;
  }

  .teaser__video {
    border-radius: 12px;
  }

  /* --- Tickets --- */
  .tickets {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .tickets__text {
    font-size: 0.92rem;
  }

  .ticket-card {
    padding: 1.75rem 1.25rem;
  }

  .ticket-card__value {
    font-size: 1.6rem;
  }

  .tickets__warning {
    font-size: 0.8rem;
    text-align: left;
  }

  /* --- Footer --- */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer__inner {
    gap: 1.5rem;
  }

  .footer__logo img {
    height: 100px;
  }

  .footer__credits {
    font-size: 0.8rem;
  }

  .footer__partners-bar {
    margin: 1.5rem 0;
  }

  .footer__libras {
    font-size: 0.75rem;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__copy {
    font-size: 0.7rem;
  }

  /* --- Buttons --- */
  .btn {
    font-size: 0.8rem;
    padding: 0.9rem 2rem;
  }

  .btn--large {
    padding: 1rem 2rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.85rem;
  }

  .hero__bg img {
    object-position: 75% center;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .countdown__number {
    font-size: 1.5rem;
    min-width: 36px;
  }

  .countdown__separator {
    font-size: 1.2rem;
  }

  .partners-bar-img {
    max-width: 280px;
  }

  .footer__logo img {
    height: 80px;
  }
}

/* ============================================
   GRAIN / TEXTURE OVERLAY
   ============================================ */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
