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

:root {
  /* Colors — Primary */
  --color-primary: #0000fe;
  --color-primary-dark: #0521b0;
  --color-primary-light: #3a3aff;
  --color-secondary: #0521b0;
  --color-secondary-dark: #041a8a;

  /* Colors — Espaços */
  --color-afya: #f12f70;
  --color-afya-dark: #d1245e;
  --color-credinor: #02a194;
  --color-credinor-dark: #028a7f;

  /* Colors — Neutral */
  --color-neutral-50: #f5f5f7;
  --color-neutral-100: #e5e7eb;
  --color-neutral-200: #d1d5db;
  --color-neutral-600: #6b7280;
  --color-neutral-900: #0a0a0a;
  --color-white: #ffffff;

  /* Typography */
  --font-family-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --font-size-display: clamp(3rem, 10vw, 7rem);
  --font-size-h1: clamp(2rem, 5vw, 3rem);
  --font-size-h2: clamp(2rem, 5vw, 3rem);
  --font-size-h3: 1.25rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  --font-size-caption: 0.75rem;

  --line-height-tight: 1.2;
  --line-height-heading: 1.3;
  --line-height-body: 1.6;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 254, 0.25);

  /* Z-Index */
  --z-header: 100;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-body);
  color: var(--color-neutral-900);
  background: var(--color-white);
  line-height: var(--line-height-body);
  overflow-x: hidden;
  font-size: var(--font-size-body);
}

h1, h2, h3, h4 {
  font-family: var(--font-family-heading);
  line-height: var(--line-height-tight);
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ===== Skip Link (Acessibilidade) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 1000;
  padding: var(--space-3) var(--space-6);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-family-heading);
  font-weight: 700;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* ===== Focus Visible ===== */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ===== Botões ===== */
.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-8);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: var(--font-size-small);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  letter-spacing: 0.5px;
  min-height: 44px;
  min-width: 44px;
}

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

.btn-lg {
  padding: var(--space-4) var(--space-12);
  font-size: 1.1rem;
}

.btn-sm {
  padding: var(--space-2) var(--space-6);
  font-size: var(--font-size-small);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  border-color: transparent;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  padding: var(--space-4) 0;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav a {
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: var(--font-size-small);
  color: var(--color-white);
  transition: color var(--transition-base);
  padding: var(--space-2) var(--space-1);
}

.header.scrolled .nav a {
  color: var(--color-neutral-900);
}

.header.scrolled .nav a.btn {
  color: var(--color-white);
}

.nav a:hover {
  color: var(--color-secondary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: background var(--transition-base);
}

.header.scrolled .menu-toggle span {
  background: var(--color-neutral-900);
}

.header.scrolled .header-countdown {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
}

.header.scrolled .countdown-value {
  color: var(--color-neutral-900);
}

.header.scrolled .countdown-label {
  color: rgba(0, 0, 0, 0.5);
}

.header.scrolled .countdown-sep {
  color: var(--color-neutral-900);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: 82px;
  background: var(--color-neutral-900);
  text-align: center;
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

.hero-cta {
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7) 40%, var(--color-neutral-900));
  padding: var(--space-10) 0 var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

/* ===== Share Button ===== */
.btn-share {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-family: var(--font-family-body);
  font-size: var(--font-size-small);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-share:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.btn-share svg {
  stroke: var(--color-white);
}

/* ===== Countdown (Header) ===== */
.header-countdown {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 36px;
}

.countdown-value {
  font-family: var(--font-family-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--color-white);
  line-height: 1;
}

.countdown-label {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.countdown-sep {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: opacity 0.4s ease;
}

.countdown-ended {
  display: none;
  align-items: center;
  gap: var(--space-3);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.countdown-ended.active {
  display: flex;
}

.countdown-ended-text {
  font-size: 0.9rem;
}

/* Screen-reader only (mantém h1 para SEO/acessibilidade) */
.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;
}


/* ===== Sections ===== */
.section {
  padding: var(--space-10) 0;
}

.section-title {
  text-align: center;
  font-size: var(--font-size-h2);
  font-weight: 400;
  margin-bottom: var(--space-6);
  color: var(--color-neutral-900);
}

.section-title strong {
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-title-light strong {
  -webkit-text-fill-color: var(--color-white);
  background: none;
}

/* ===== Wave Separators ===== */
.wave-bottom {
  position: relative;
  padding-bottom: calc(var(--space-10) + 40px);
}

.wave-bottom::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 2;
  pointer-events: none;
}

/* Números → Sobre (dark → white) */
.section-numeros::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C240,60 480,0 720,40 C960,80 1200,10 1440,40 L1440,80 L0,80 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

/* Sobre → Info (white → blue) */
.section-sobre::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C240,60 480,0 720,40 C960,80 1200,10 1440,40 L1440,80 L0,80 Z' fill='%23041a8a'/%3E%3C/svg%3E");
}

/* Info → Pagamento (blue → light) */
.section-info::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C240,60 480,0 720,40 C960,80 1200,10 1440,40 L1440,80 L0,80 Z' fill='%23f5f5f7'/%3E%3C/svg%3E");
}

/* Pagamento → Espaços (light → white) */
.section-pagamento::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C240,60 480,0 720,40 C960,80 1200,10 1440,40 L1440,80 L0,80 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

/* Espaços → FAQ (white → light) */
.section-espacos::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C240,60 480,0 720,40 C960,80 1200,10 1440,40 L1440,80 L0,80 Z' fill='%23f5f5f7'/%3E%3C/svg%3E");
}

/* FAQ → App (light → dark) */
.section-faq::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C240,60 480,0 720,40 C960,80 1200,10 1440,40 L1440,80 L0,80 Z' fill='%230a0a0a'/%3E%3C/svg%3E");
}

/* ===== Números ===== */
.section-numeros {
  background: var(--color-neutral-900);
  padding: var(--space-8) 0;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.numero-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.numero-valor {
  font-family: var(--font-family-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-white);
}

.numero-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Sobre ===== */
.section-sobre {
  background: var(--color-white);
  position: relative;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.sobre-video {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.sobre-video img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.sobre-video:hover img {
  transform: scale(1.03);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sobre-video:hover .video-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.sobre-texto {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre-texto p {
  color: var(--color-neutral-600);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.sobre-texto p:last-child {
  margin-bottom: 0;
}

.sobre-texto strong {
  color: var(--color-neutral-900);
}

/* ===== Espaços / Ingressos ===== */
.section-espacos {
  background: var(--color-white);
  position: relative;
}

.ingressos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
  align-items: stretch;
}

.ingresso-card {
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  transition: transform var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.ingresso-card:hover {
  transform: translateY(-6px);
}

/* Espaço Afya */
.ingresso-afya {
  background: linear-gradient(135deg, #8a0a3d, #c41862);
  color: var(--color-white);
  border-color: var(--color-afya);
  box-shadow: 0 8px 40px rgba(241, 47, 112, 0.25);
}

.ingresso-afya .ingresso-lista li::before {
  color: var(--color-afya);
}

.ingresso-afya .ingresso-lista li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.ingresso-afya .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
  background: var(--color-afya);
}

.ingresso-afya .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-afya);
  border-color: var(--color-white);
  box-shadow: 0 8px 30px rgba(241, 47, 112, 0.4);
}

/* Espaço Credinor */
.ingresso-credinor {
  background: linear-gradient(135deg, #013d38, #025a52);
  color: var(--color-white);
  border-color: var(--color-credinor);
  box-shadow: 0 8px 40px rgba(2, 161, 148, 0.25);
}

.ingresso-credinor .ingresso-lista li::before {
  color: var(--color-credinor);
}

.ingresso-credinor .ingresso-lista li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.ingresso-credinor .btn {
  background: var(--color-credinor);
}

.ingresso-credinor .btn:hover {
  box-shadow: 0 8px 30px rgba(2, 161, 148, 0.4);
}

.ingresso-img-wrap {
  width: 100%;
  height: 340px;
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-mask-image: radial-gradient(ellipse at center, black 55%, transparent 85%);
  mask-image: radial-gradient(ellipse at center, black 55%, transparent 85%);
}

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

.ingresso-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: var(--font-size-caption);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ingresso-afya .ingresso-badge {
  background: var(--color-afya);
}

.ingresso-credinor .ingresso-badge {
  background: var(--color-credinor);
}

.ingresso-tipo {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: var(--space-1);
}

.ingresso-subtipo {
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: var(--font-size-body);
  opacity: 0.7;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ingresso-lista {
  margin-bottom: var(--space-8);
  text-align: left;
  flex-grow: 1;
}

.ingresso-lista li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: var(--font-size-small);
  padding-left: var(--space-6);
  position: relative;
}

.ingresso-lista li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

/* ===== Pagamento ===== */
.section-pagamento {
  background: var(--color-neutral-50);
  position: relative;
}

.pagamento-destaque {
  text-align: center;
  font-family: var(--font-family-heading);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin: calc(var(--space-8) * -1) 0 var(--space-12);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pagamento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.pagamento-item {
  background: var(--color-white);
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pagamento-item:hover {
  transform: translateY(-4px);
}

.pagamento-icon {
  margin-bottom: var(--space-4);
}

.pagamento-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--color-primary);
}

.pagamento-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.pagamento-item p {
  color: var(--color-neutral-600);
  font-size: var(--font-size-small);
}

/* ===== Info ===== */
.section-info {
  background: linear-gradient(135deg, var(--color-secondary-dark), var(--color-secondary));
  position: relative;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.info-item {
  text-align: center;
  color: var(--color-white);
}

.info-icon {
  margin-bottom: var(--space-4);
}

.info-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: rgba(255, 255, 255, 0.85);
}

.info-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.info-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--font-size-small);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.section-faq {
  background: var(--color-neutral-50);
  position: relative;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
  padding: var(--space-6);
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: var(--font-size-body);
  color: var(--color-neutral-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-left: var(--space-4);
  transition: transform var(--transition-base);
}


.faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq-item.is-open .faq-content {
  grid-template-rows: 1fr;
}

.faq-item .faq-inner {
  overflow: hidden;
}

.faq-item.is-open summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-neutral-600);
  font-size: var(--font-size-small);
  line-height: 1.7;
}

.faq-item p strong {
  color: var(--color-neutral-900);
}

/* ===== App ===== */
.section-app {
  background: var(--color-neutral-900);
  text-align: center;
  position: relative;
}

.app-pre {
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  font-style: italic;
  margin-bottom: var(--space-2);
}

.app-titulo {
  font-family: var(--font-family-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.app-realizadores {
  margin-top: var(--space-10);
  display: flex;
  justify-content: center;
}

.app-realizadores .footer-realizadores {
  margin: 0;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.app-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 48px;
}

.app-store-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.app-store-img:hover {
  transform: translateY(-3px);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-neutral-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0 var(--space-8);
}

.footer-inner {
  text-align: center;
}

.footer-realizadores {
  max-width: 200px;
  height: auto;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  transition: background var(--transition-base), transform var(--transition-base);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-6);
  font-size: var(--font-size-small);
}


/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Responsivo ===== */
@media (max-width: 992px) {
  .numeros-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .ingressos-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .pagamento-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .sobre-texto {
    text-align: center;
  }

  .hero-cta {
    margin-top: -40px;
    padding: var(--space-6) 0 var(--space-6);
  }

  .header-countdown {
    padding: var(--space-2) var(--space-3);
    gap: var(--space-2);
  }

  .header-countdown .countdown-item {
    min-width: 32px;
  }

  .header-countdown .countdown-value {
    font-size: 1.05rem;
  }

  .header-countdown .countdown-label {
    font-size: 0.55rem;
  }

  .header-countdown .countdown-sep {
    font-size: 0.95rem;
    margin-bottom: var(--space-2);
  }

  .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-white);
    flex-direction: column;
    padding: 0 var(--space-6);
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .nav.active {
    max-height: 500px;
    opacity: 1;
    padding: var(--space-6);
    gap: var(--space-4);
  }

  .nav a {
    color: var(--color-neutral-900) !important;
    font-size: var(--font-size-body);
    padding: var(--space-2) 0;
  }

  .nav a.btn {
    color: var(--color-white) !important;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  .section {
    padding: var(--space-8) 0;
  }

  .section-title {
    margin-bottom: var(--space-4);
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .sobre-texto p {
    font-size: 1rem;
  }

  .pagamento-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .hero-cta {
    margin-top: -24px;
    padding: var(--space-4) 0 var(--space-4);
    gap: var(--space-3);
  }

  .btn-lg {
    padding: var(--space-3) var(--space-8);
    font-size: 0.85rem;
  }

  .numeros-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

}
