/* ==========================================================================
   AULÃO — Landing Page
   Comemoração de 2 anos
   --------------------------------------------------------------------------
   Sumário
   1. Tokens (cor, tipografia, espaçamento)
   2. Reset & base
   3. Utilitários (container, botões, eyebrow, ghost word, reveal)
   4. Barra de progresso
   5. Intro cinematográfica
   6. Header / menu
   7. Hero
   8. Sobre
   9. Camisa oficial
   10. Cronograma
   11. Galeria
   12. Vagas
   13. Local
   14. CTA final
   15. Rodapé
   16. Responsividade
   17. Acessibilidade / reduced motion
   ========================================================================== */

/* ==========================================================================
   1. TOKENS
   ========================================================================== */
:root {
  /* Cor — base pedida pelo cliente + variações derivadas para profundidade */
  --ink: #151515;
  --ink-deep: #0a0a0a;
  --surface: #1c1c1c;
  --surface-2: #212121;
  --line: #2b2b29;
  --line-soft: rgba(255, 255, 255, 0.08);

  --accent: #ff6a00;
  --accent-2: #ff8a3d;
  --accent-soft: rgba(255, 106, 0, 0.14);
  --accent-glow: rgba(255, 106, 0, 0.45);

  --white: #ffffff;
  --mute: #a3a19c;
  --faint: #6b6a66;

  /* Usado pelas telas de formulário (inscrição, pagamento) para estados de
     erro. Fica aqui, e não repetido em cada CSS de página, porque é um
     token de identidade, não um componente. */
  --error: #ff5a5a;
  --error-soft: rgba(255, 90, 90, 0.12);

  /* Tipografia */
  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Sora", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Space Mono", ui-monospace, Menlo, monospace;

  /* Layout */
  --container-w: 1240px;
  --header-h: 84px;
  --header-h-mobile: 68px;

  /* Movimento */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.6s;
  --dur-slow: 1s;

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 28px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; height: 100%; }

img, svg, video { display: block; max-width: 100%; }

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

ul { list-style: none; margin: 0; padding: 0; }

button {
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

h1, h2, h3, p { margin: 0; }

section[id] { scroll-margin-top: var(--header-h); }

::selection { background: var(--accent); color: var(--ink-deep); }

/* Foco visível — acessibilidade */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   3. UTILITÁRIOS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow--light { color: var(--accent-2); }

.eyebrow__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

.section-title em {
  font-style: normal;
  color: var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--mute);
  background: rgba(255, 255, 255, 0.02);
}

.pill svg { color: var(--accent); flex-shrink: 0; }

/* Marca d'água gigante — elemento assinatura da identidade */
.ghost-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(6rem, 22vw, 20rem);
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.ghost-word--right { left: auto; right: -4%; transform: translate(0, -50%); }

/* Botões */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-soft),
              box-shadow var(--dur-fast) var(--ease-soft),
              background var(--dur-fast) var(--ease-soft);
  will-change: transform;
}

.btn--accent {
  background: var(--accent);
  color: var(--ink-deep);
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn--accent:hover {
  box-shadow: 0 8px 30px -6px var(--accent-glow);
  transform: translateY(-2px);
}

.btn--accent:active { transform: translateY(0); }

.btn__arrow { width: 18px; height: 18px; transition: transform var(--dur-fast) var(--ease-soft); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--small { padding: 12px 22px; font-size: 13.5px; }
.btn--large { padding: 18px 34px; font-size: 15.5px; }
.btn--huge { padding: 26px 56px; font-size: 18px; }

@media (max-width: 640px) {
  .btn--huge { padding: 20px 36px; font-size: 15.5px; width: 100%; }
  .btn--large { width: 100%; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease-out),
              transform 0.9s var(--ease-out),
              filter 0.9s var(--ease-out);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

.reveal[data-reveal-delay="1"] { transition-delay: 0.08s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.16s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.24s; }
.reveal[data-reveal-delay="4"] { transition-delay: 0.32s; }
.reveal[data-reveal-delay="5"] { transition-delay: 0.4s; }

/* ==========================================================================
   4. BARRA DE PROGRESSO
   ========================================================================== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 800;
  transition: width 0.1s linear;
}

/* ==========================================================================
   5. INTRO CINEMATOGRÁFICA
   ========================================================================== */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s var(--ease-soft), visibility 0.9s;
}

.intro__grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.intro__stage {
  position: relative;
  text-align: center;
  padding-inline: 20px;
}

.intro__word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 7vw, 4.6rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}

.intro__word[data-intro-word="2"] {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow);
}

.intro__word.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0);
}

.intro__skip {
  position: absolute;
  bottom: clamp(20px, 4vh, 40px);
  right: clamp(20px, 4vw, 40px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 100px;
  opacity: 0;
  animation: introSkipIn 0.6s var(--ease-out) 1.4s forwards;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}

.intro__skip:hover { color: var(--white); border-color: var(--accent); }

@keyframes introSkipIn { to { opacity: 1; } }

.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ==========================================================================
   6. HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 900;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.7), transparent);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out),
              background var(--dur-med) var(--ease-soft), height var(--dur-fast) var(--ease-soft);
}

.header.is-visible { opacity: 1; transform: translateY(0); }

.header.is-scrolled {
  background: rgba(21, 21, 21, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  height: 72px;
}

.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.header__logo-icon {
  height: 22px;
  width: auto;
  flex-shrink: 0;
}

.header__logo-dot { color: var(--accent); }

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.header__link {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--mute);
  padding: 6px 0;
  transition: color var(--dur-fast) var(--ease-soft);
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--dur-fast) var(--ease-soft);
}

.header__link:hover { color: var(--white); }
.header__link:hover::after { width: 100%; }

.header__cta--mobile { display: none; }

.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.header__burger span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--dur-fast) var(--ease-soft), opacity var(--dur-fast) var(--ease-soft);
}

.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   7. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

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

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /*
    O vídeo oficial é vertical (proporção ~9:16.5). Em telas largas
    (tablet/desktop), "cover" cortaria até 70% da altura do quadro —
    cabeça e pés inclusive. "contain" garante que a cena inteira (rostos
    incluídos) permaneça sempre visível, aceitando faixas laterais em
    telas mais largas. No celular, onde a proporção já é próxima da do
    vídeo, voltamos para "cover" (ver breakpoint mobile abaixo) para um
    visual full-bleed sem faixas.
  */
  object-fit: contain;
  object-position: center center;
  z-index: 1;
}

.hero__fallback {
  position: absolute;
  inset: -6%;
  z-index: 0;
  background:
    radial-gradient(ellipse 45% 60% at 50% 50%, rgba(255, 106, 0, 0.07), transparent 68%),
    radial-gradient(ellipse 60% 45% at 50% 28%, var(--accent-soft), transparent 62%),
    linear-gradient(180deg, #1b1b1a 0%, #131313 55%, #0a0a0a 100%);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-1.5%, 1%, 0) scale(1.04); }
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.35) 40%, rgba(10, 10, 10, 0.72) 100%);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  box-shadow: inset 0 0 18vw rgba(0, 0, 0, 0.55);
}

.hero__content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--header-h);
}

.hero__title { margin: 0; }

.hero__title-word {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.6rem, 15vw, 11.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f0 60%, #d8d6d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin-top: clamp(14px, 2.4vh, 22px);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  color: var(--mute);
  letter-spacing: 0.01em;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px clamp(10px, 1.6vw, 16px);
  margin-top: clamp(20px, 3vh, 30px);
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__meta-item {
  display: inline-block;
  color: var(--accent-2);
}

.hero__meta-sep {
  color: var(--faint);
}

.hero__cta {
  margin-top: clamp(32px, 5vh, 48px);
}

.hero__scroll {
  position: absolute;
  bottom: clamp(22px, 4vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 40px;
  background: var(--line-soft);
  overflow: hidden;
}

.hero__scroll-line i {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* Reveal específico do hero — controlado após a intro */
.reveal-hero {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}

.reveal-hero.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ==========================================================================
   8. SOBRE
   ========================================================================== */
.about {
  position: relative;
  padding: clamp(90px, 14vw, 170px) 0;
  overflow: hidden;
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
}

.about__intro { align-self: start; position: sticky; top: calc(var(--header-h) + 20px); }

.about__photo {
  position: relative;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  margin-top: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
}

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

.about__photo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 20%, var(--accent-soft), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.about__photo-caption {
  max-width: 340px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--faint);
}

.about__body { display: flex; flex-direction: column; gap: clamp(36px, 5vw, 56px); }

.about__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.75;
  color: var(--mute);
  max-width: 56ch;
}

.about__stats {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--line-soft);
}

.stat { display: flex; flex-direction: column; gap: 8px; }

.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--accent);
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--faint);
  line-height: 1.4;
}

/* ==========================================================================
   9. CAMISA OFICIAL
   ========================================================================== */
.shirt {
  position: relative;
  padding: clamp(70px, 10vw, 130px) 0;
  background: var(--ink-deep);
}

.shirt__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.shirt__tabs {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 24px;
}

.shirt__tab {
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  color: var(--faint);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.shirt__tab.is-active { background: var(--accent); color: var(--ink-deep); }

.shirt__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 35%, #1f1f1f, var(--surface) 70%);
  overflow: hidden;
  display: grid;
}

.shirt__slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}

.shirt__slide.is-active { opacity: 1; transform: scale(1); pointer-events: auto; }

.shirt__silhouette {
  width: clamp(160px, 30vw, 260px);
  height: auto;
  color: rgba(255, 255, 255, 0.14);
}

.shirt__slide picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shirt__photo {
  max-width: 82%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.5));
  transition: transform var(--dur-med) var(--ease-out);
}

.shirt__frame:hover .shirt__photo { transform: scale(1.035); }

.shirt__slide-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.shirt__glow {
  position: absolute;
  width: 60%;
  height: 60%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

.shirt__text {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 500;
  margin-top: 18px;
}

.shirt__sub {
  margin-top: 12px;
  color: var(--mute);
  line-height: 1.7;
  max-width: 42ch;
}

.shirt__info .pill { margin-top: 26px; }

/* ==========================================================================
   10. CRONOGRAMA
   ========================================================================== */
.schedule { padding: clamp(90px, 14vw, 170px) 0; }

.schedule__head { max-width: 46ch; margin-bottom: clamp(44px, 6vw, 68px); }

.schedule__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}

.schedule__card {
  position: relative;
  background: var(--surface);
  padding: clamp(28px, 2.4vw, 36px) clamp(20px, 1.8vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--dur-med) var(--ease-soft);
}

.schedule__card:hover { background: var(--surface-2); }

.schedule__card:hover .schedule__icon { color: var(--accent); transform: translateY(-3px); }

.schedule__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.05em;
}

.schedule__icon {
  width: 30px;
  height: 30px;
  color: var(--mute);
  transition: color var(--dur-med) var(--ease-soft), transform var(--dur-med) var(--ease-soft);
}

.schedule__icon svg { width: 100%; height: 100%; }

.schedule__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 4px;
}

.schedule__text {
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.6;
  flex-grow: 1;
}

.schedule__time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

/* ==========================================================================
   11. GALERIA
   ========================================================================== */
.gallery { padding: clamp(90px, 14vw, 170px) 0; }

.gallery__head { max-width: 46ch; margin-bottom: clamp(36px, 5vw, 56px); }

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.4vw, 16px);
}

.gallery__item {
  position: relative;
  grid-column: span 1;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0;
  cursor: pointer;
}

.gallery__item--wide { grid-column: 1 / -1; aspect-ratio: 16 / 9; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.5s var(--ease-soft);
}

.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.045);
  filter: brightness(0.72);
}

.gallery__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-soft);
}

.gallery__zoom svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 14px var(--accent-glow));
}

.gallery__item:hover .gallery__zoom,
.gallery__item:focus-visible .gallery__zoom { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-soft), visibility 0.35s;
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__img {
  max-width: min(88vw, 1100px);
  max-height: 84vh;
  border-radius: var(--radius-m);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.lightbox.is-open .lightbox__img { opacity: 1; transform: scale(1); }

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-soft);
  color: var(--white);
  transition: background var(--dur-fast) var(--ease-soft), border-color var(--dur-fast) var(--ease-soft);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink-deep);
}

.lightbox__close {
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  width: 44px;
  height: 44px;
}

.lightbox__close svg { width: 18px; height: 18px; }

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}

.lightbox__nav svg { width: 20px; height: 20px; }

.lightbox__prev { left: clamp(10px, 3vw, 36px); }
.lightbox__next { right: clamp(10px, 3vw, 36px); }

/* ==========================================================================
   12. VAGAS
   ========================================================================== */
.spots {
  position: relative;
  padding: clamp(100px, 15vw, 190px) 0;
  background: var(--ink-deep);
  text-align: center;
  overflow: hidden;
}

.spots__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spots__inner .eyebrow { justify-content: center; }

.spots__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.spots__title span { color: var(--accent); text-shadow: 0 0 60px var(--accent-glow); }

.spots__sub {
  max-width: 52ch;
  margin-top: 22px;
  color: var(--mute);
  line-height: 1.7;
  font-size: 1.02rem;
}

.spots__counter {
  width: 100%;
  max-width: 420px;
  margin-top: clamp(48px, 6vw, 68px);
}

.spots__counter-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.spots__counter-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}

.spots__counter-value {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--white);
}

.spots__bar {
  height: 6px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.spots__bar-fill {
  height: 100%;
  width: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 16px var(--accent-glow);
  transition: width 1.2s var(--ease-out);
}

.spots__countdown { margin-top: clamp(48px, 6vw, 70px); }

.spots__countdown-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 64px;
  padding: 14px 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: rgba(255, 255, 255, 0.02);
}

.countdown__value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-variant-numeric: tabular-nums;
  color: var(--white);
}

.countdown__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}

.countdown__sep {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  color: var(--line);
  margin-bottom: 20px;
}

.spots > .btn { margin-top: clamp(48px, 6vw, 70px); }

/* ==========================================================================
   13. LOCAL
   ========================================================================== */
.venue { padding: clamp(90px, 14vw, 170px) 0; }

.venue__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.venue__card {
  position: relative;
  margin-top: 32px;
  padding: clamp(30px, 3vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: linear-gradient(160deg, var(--surface), var(--ink) 80%);
}

.venue__pin {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 20px;
}

.venue__pin svg { width: 22px; height: 22px; }

.venue__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.venue__address { color: var(--mute); margin-top: 8px; }

.venue__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.venue__meta li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.95rem;
}

.venue__meta li span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--faint);
}

.venue__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  transition: gap var(--dur-fast) var(--ease-soft);
}

.venue__link svg { width: 16px; height: 16px; }
.venue__link:hover { gap: 12px; }

.venue__map {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  filter: grayscale(0.35) contrast(1.05) brightness(0.9);
}

.venue__iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   14. CTA FINAL
   ========================================================================== */
.final-cta {
  position: relative;
  padding: clamp(110px, 16vw, 210px) 0;
  background: var(--ink-deep);
  text-align: center;
  overflow: hidden;
}

.final-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 90vw);
  height: min(900px, 90vw);
  background: radial-gradient(circle, var(--accent-soft), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}

.final-cta__content { position: relative; z-index: 1; }

.final-cta__meta {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 22px;
}

.final-cta__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.6vw, 4.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin-inline: auto;
}

.final-cta .btn--huge { margin-top: clamp(40px, 6vw, 60px); }

/* ==========================================================================
   15. RODAPÉ
   ========================================================================== */
.footer {
  background: var(--ink-deep);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(56px, 8vw, 84px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 64px);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}

.footer__logo .header__logo-icon { height: 24px; }

.footer__tagline {
  margin-top: 14px;
  color: var(--mute);
  font-size: 0.92rem;
  max-width: 32ch;
  line-height: 1.6;
}

.footer__socials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12.5px;
  color: var(--mute);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}

.footer__social svg { width: 15px; height: 15px; }

.footer__social:hover { color: var(--accent); border-color: var(--accent); }

.footer__nav, .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer__nav a, .footer__contact p {
  color: var(--mute);
  font-size: 0.92rem;
  transition: color var(--dur-fast);
}

.footer__nav a:hover { color: var(--white); }

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 6px;
}

.footer__bottom {
  padding-block: 24px;
  border-top: 1px solid var(--line-soft);
}

.footer__bottom p {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--faint);
  text-align: center;
}

/* ==========================================================================
   15.5 BOTÃO FLUTUANTE DE WHATSAPP (visível em todas as páginas)
   Injetado via js/common.js — markup e estilo vivem juntos aqui porque é
   um componente global, não exclusivo de uma página.
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  z-index: 700;
  display: inline-flex;
  align-items: center;
  height: 56px;
  border-radius: 100px;
  background: var(--ink-deep);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px -10px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transition: border-color var(--dur-med) var(--ease-soft), box-shadow var(--dur-med) var(--ease-soft),
    transform var(--dur-fast) var(--ease-soft);
}

.whatsapp-float:active { transform: scale(0.96); }

.whatsapp-float__icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0;
  animation: whatsappPulse 2.6s ease-out infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(0.7); opacity: 0.55; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { opacity: 0; }
}

.whatsapp-float__icon {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  color: var(--white);
}

.whatsapp-float__label {
  max-width: 0;
  padding-right: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: max-width var(--dur-med) var(--ease-soft), opacity var(--dur-fast) var(--ease-soft),
    padding-right var(--dur-med) var(--ease-soft);
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-float:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 40px -8px var(--accent-glow);
    transform: translateY(-2px);
  }

  .whatsapp-float:hover .whatsapp-float__label {
    max-width: 220px;
    opacity: 1;
    padding-right: 22px;
  }
}

/* ==========================================================================
   16. RESPONSIVIDADE
   ========================================================================== */

/* Notebook menor / tablet grande */
@media (max-width: 1080px) {
  .about__grid,
  .shirt__grid,
  .venue__grid { grid-template-columns: 1fr; }

  .about__intro { position: static; }

  .shirt__grid { grid-template-columns: 1fr; }
  .shirt__frame { max-width: 460px; margin-inline: auto; width: 100%; }

  .venue__map { max-width: 560px; margin-inline: auto; width: 100%; }

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

/* Tablet */
@media (max-width: 900px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    /* Mesmo retrocesso do Hero: sem isso, num navegador sem suporte a
       "dvh", o painel do menu ficaria sem altura definida (só o
       necessário pro conteúdo, não a tela toda). */
    height: 100vh;
    height: 100dvh;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px clamp(28px, 6vw, 40px);
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(18px);
    border-left: 1px solid var(--line-soft);
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease-out);
  }

  .header__nav.is-open { transform: translateX(0); }

  .header__link { font-size: 20px; }

  .header__cta--desktop { display: none; }
  .header__cta--mobile { display: inline-flex; margin-top: 12px; }

  .header__burger { display: flex; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* Mobile grande (retrato) */
@media (max-width: 720px) and (orientation: portrait) {
  /*
    Nessa faixa a proporção da tela já é próxima da do vídeo vertical,
    então "cover" preenche a tela inteira cortando só uma fatia lateral
    mínima — sem perder a cabeça das pessoas (0% de corte vertical).
    Fora dessa condição (ex.: celular em paisagem), mantemos "contain".
  */
  .hero__video {
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 720px) {
  .schedule__track { grid-template-columns: 1fr 1fr; }
  .countdown { gap: 8px; }
  .countdown__unit { min-width: 52px; padding: 10px 4px; }
}

/* Mobile */
@media (max-width: 560px) {
  .header__inner { padding-inline: 18px; }
  .schedule__track { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .venue__meta li { flex-direction: column; gap: 4px; }
  .venue__meta li span { font-size: 10px; }
  .ghost-word { display: none; }

  .whatsapp-float { height: 50px; }
  .whatsapp-float__icon-wrap { width: 50px; height: 50px; }
  .whatsapp-float__icon { width: 23px; height: 23px; }
}

/* ==========================================================================
   17. ACESSIBILIDADE / REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }

  .hero__fallback { animation: none; }
}
