@charset "utf-8";

/* =====================================================================
   NICOLE GOMES — Experiência cinematográfica "LUZ"
   Design System + Estilos de todas as seções (mobile-first)
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,700&family=Inter:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

/* ----------------------------------------------------------------
   1. TOKENS
---------------------------------------------------------------- */
:root {
  /* cores */
  --bg:        #0a0a0c;
  --bg-2:      #111014;
  --surface:   #16151a;
  --surface-2: #1d1b22;

  --amber:      #ee7b3d;
  --amber-soft: #f6a35c;
  --gold:       #e9b873;

  --cream: #f6f2ec;
  --muted: #a39a90;
  --line:  rgba(246, 242, 236, .12);
  --glow:  rgba(238, 123, 61, .35);

  /* compat (loader/legado) */
  --cor-principal: var(--amber);
  --cor-secundaria: var(--gold);

  /* tipografia */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-script: 'Great Vibes', cursive;

  /* layout */
  --nav-h: 72px;
  --max: 1320px;
  --pad-x: clamp(20px, 5vw, 80px);
  --radius: 18px;

  /* motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ----------------------------------------------------------------
   2. RESET / BASE
---------------------------------------------------------------- */
* { box-sizing: border-box; }

html {
  font-size: 62.5%;            /* 1rem = 10px (padrão do projeto) */
  -webkit-text-size-adjust: 100%;
  overflow-anchor: none;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--amber); text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.05; }
p { margin: 0 0 1.4rem; }

::selection { background: var(--amber); color: #0a0a0c; }

/* Reveal genérico (IntersectionObserver) */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { transition: none; }
}

::-webkit-scrollbar { width: 9px; height: 9px; background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--amber), var(--gold)); border-radius: 10px; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.container-ng {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ----------------------------------------------------------------
   3. TIPOGRAFIA / UTILITÁRIOS
---------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--amber);
  opacity: .7;
}

.chapter-no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--muted);
  letter-spacing: .05em;
}

.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.01em;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: 1.02;
  letter-spacing: -.015em;
}
.section-title em { color: var(--amber); font-style: italic; }

.lead {
  font-size: clamp(1.7rem, 2vw, 2.1rem);
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.7;
}

.signature {
  font-family: var(--font-script);
  line-height: .9;
  color: var(--cream);
}

/* glow / aurora reutilizável */
.aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(40vw 40vw at 80% 10%, var(--glow), transparent 60%),
    radial-gradient(50vw 40vw at 10% 90%, rgba(233,184,115,.16), transparent 60%);
  filter: blur(10px);
}

/* ----------------------------------------------------------------
   4. SEÇÕES (base)
---------------------------------------------------------------- */
.section {
  position: relative;
  padding-block: clamp(90px, 12vw, 180px);
  z-index: 1;
}
.section--tight { padding-block: clamp(70px, 8vw, 120px); }

/* ----------------------------------------------------------------
   5. LOADER (screen-lock reaproveitado)
---------------------------------------------------------------- */
#screen-lock {
  position: fixed;
  display: none;
  inset: 0;
  background: rgba(10, 10, 12, .72);
  backdrop-filter: blur(6px);
  z-index: 9999;
  cursor: wait;
}
#screen-lock-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
#screen-lock-text img { width: 60px; height: auto; }

/* preloader cinematográfico */
#ng-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.4rem;
}
#ng-preloader .pl-sign {
  font-family: var(--font-script);
  font-size: clamp(5rem, 12vw, 9rem);
  color: var(--cream);
  opacity: 0;
}
#ng-preloader .pl-bar {
  width: min(240px, 60vw);
  height: 2px;
  background: rgba(246, 242, 236, .15);
  overflow: hidden;
  border-radius: 4px;
}
#ng-preloader .pl-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--amber), var(--gold));
}

/* ----------------------------------------------------------------
   6. NAVBAR
---------------------------------------------------------------- */
.ng-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  z-index: 1001;
  box-shadow: 0 0 14px var(--glow);
}

.ng-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.ng-nav.is-scrolled {
  background: rgba(10, 10, 12, .72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.ng-nav .container-ng {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ng-brand {
  font-family: var(--font-script);
  font-size: 3.2rem;
  color: var(--cream);
  line-height: 1;
}
.ng-brand:hover { color: var(--cream); }

.ng-menu {
  display: none;
  list-style: none;
  margin: 0; padding: 0;
  gap: clamp(1.8rem, 3vw, 3.4rem);
  align-items: center;
}
.ng-menu a {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--cream);
  position: relative;
  padding-block: 4px;
}
.ng-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--amber);
  transition: width .3s var(--ease);
}
.ng-menu a:hover::after, .ng-menu a.active::after { width: 100%; }

.ng-nav-cta { display: none; }

.ng-burger {
  width: 46px; height: 46px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}
.ng-burger span {
  width: 20px; height: 1.6px;
  background: var(--cream);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.ng-burger.open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.ng-burger.open span:nth-child(2) { opacity: 0; }
.ng-burger.open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* drawer mobile */
.ng-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 12, .96);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: var(--pad-x);
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
}
.ng-drawer.open { transform: translateY(0); }
.ng-drawer a {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 4.6rem);
  font-weight: 600;
  color: var(--cream);
}
.ng-drawer a span { color: var(--muted); font-size: 1.6rem; font-family: var(--font-sans); margin-right: 1.4rem; }
.ng-drawer a:hover { color: var(--amber); }

/* ----------------------------------------------------------------
   7. BOTÕES
---------------------------------------------------------------- */
.btn-ng {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 56px;
  padding: 0 2.8rem;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  text-align: center;
}
.btn-ng i { font-size: 1.6rem; }

.btn-primary-ng {
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: #14100c;
  box-shadow: 0 10px 30px -10px var(--glow);
}
.btn-primary-ng:hover { color: #14100c; transform: translateY(-3px); box-shadow: 0 18px 40px -12px var(--glow); }

.btn-ghost-ng {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-ghost-ng:hover { color: var(--cream); border-color: var(--cream); transform: translateY(-3px); background: rgba(246,242,236,.05); }

.btn-block-ng { width: 100%; }

.btn-nicole {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  min-height: 56px;
  padding: 0 2.8rem;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #14100c;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  border: 1px solid transparent;
  border-radius: 100px;
  box-shadow: 0 10px 30px -10px var(--glow);
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.btn-nicole:hover {
  color: #14100c;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px var(--glow);
}
.btn-nicole:active { transform: translateY(0); }
.btn-nicole:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 3.2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
}
.scroll-cue .line {
  width: 1px; height: 46px;
  background: linear-gradient(var(--amber), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--cream);
  animation: cueMove 1.8s var(--ease) infinite;
}
@keyframes cueMove { 0% { top: -60%; } 100% { top: 120%; } }

/* ----------------------------------------------------------------
   8. HERO
---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.12);
  will-change: transform;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.25) 40%, rgba(10,10,12,.92) 100%),
    radial-gradient(60vw 60vw at 18% 50%, rgba(10,10,12,.7), transparent 70%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--nav-h);
}
.hero__kicker {
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 7vw, 5rem);
  color: var(--gold);
  margin-bottom: -1rem;
  display: block;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5.6rem, 17vw, 17rem);
  line-height: .86;
  letter-spacing: -.02em;
  margin: .5rem 0 2.6rem;
  text-transform: uppercase;
}
.hero__title .word { display: inline-block; overflow: hidden; }
.hero__phrase {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 300;
  color: var(--cream);
  max-width: 28ch;
  margin-bottom: 3.4rem;
}
.hero__phrase strong { color: var(--amber); font-weight: 600; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

/* ----------------------------------------------------------------
   9. JORNADA (timeline vertical sticky)
---------------------------------------------------------------- */
.jornada { background: var(--bg-2); position: relative; overflow: hidden; }
.jornada__head {
  padding: clamp(80px, 10vw, 130px) 0 4rem;
}

.timeline {
  position: relative;
  padding-bottom: clamp(60px, 8vw, 120px);
}

/* trilho vertical de fundo + preenchimento conforme rolagem */
.tl-rail {
  position: absolute;
  top: 0;
  left: 16px;
  width: 2px;
  height: 100%;
  background: var(--line);
  overflow: hidden;
}
.tl-rail__fill {
  position: absolute;
  inset: 0 0 auto 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--amber), var(--gold));
}

.tl-item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-top: clamp(40px, 7vw, 110px);
}
.tl-item:first-child { margin-top: 0; }

/* coluna do marcador (bolinha + ano) — sticky no desktop */
.tl-marker {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: flex-start;
  max-width: 28rem;
  width: 100%;
}
.tl-bullet {
  position: absolute;
  left: 16px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(29, 27, 34, .75);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}
.tl-bullet span {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 1px solid var(--amber);
  background: var(--amber);
}
.tl-year {
  margin: 0;
  padding-left: 8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  color: var(--cream);
}
.tl-year-mobile {
  display: none;
  margin: 0 0 1.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--cream);
}

.tl-content {
  position: relative;
  width: 100%;
  padding-left: 5rem;
}
.tl-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2.4rem, 3.5vw, 3.6rem);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.tl-card:hover {
  background: var(--surface-2);
  border-color: rgba(238, 123, 61, .35);
  transform: translateY(-3px);
}
.tl-tag {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 1rem;
}
.tl-card__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 700;
  margin: 0 0 1.2rem;
}
.tl-card__text { color: var(--muted); font-size: 1.6rem; margin: 0; }

@media (min-width: 992px) {
  .tl-item { gap: 4rem; }
  .tl-marker {
    position: sticky;
    top: calc(var(--nav-h) + 4rem);
    z-index: 3;
  }
  .tl-bullet { width: 4.8rem; height: 4.8rem; }
}

@media (max-width: 991px) {
  .tl-rail, .tl-bullet { left: 14px; }
  .tl-year { display: none; }
  .tl-year-mobile { display: block; }
  .tl-content { padding-left: 5rem; }
}

/* ----------------------------------------------------------------
   10. EXPERIÊNCIA MUSICAL
---------------------------------------------------------------- */
.musica { background: var(--bg); }
.musica__head { margin-bottom: clamp(4rem, 6vw, 7rem); }
.tracklist { border-top: 1px solid var(--line); }
.track {
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.track__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.6rem, 3vw, 3rem);
  padding: clamp(2.2rem, 3.5vw, 3.2rem) 0;
  transition: padding-left .4s var(--ease);
}
.track:hover .track__row { padding-left: 1.2rem; }
.track__no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: var(--muted);
  min-width: 3.2rem;
}
.track__name {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 600;
  color: var(--cream);
  transition: color .35s var(--ease);
  line-height: 1.05;
}
.track:hover .track__name { color: var(--amber); }
.track__meta { color: var(--muted); font-size: 1.4rem; white-space: nowrap; display: flex; align-items: center; gap: 1.4rem; }
.track__toggle {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex: 0 0 auto;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s;
}
.track.open .track__toggle { background: var(--amber); color: #14100c; transform: rotate(45deg); }

.track__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease);
}
.track.open .track__panel { grid-template-rows: 1fr; padding-bottom: clamp(2.4rem, 4vw, 4rem); }
.track__panel-inner { overflow: hidden; }
.track__panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: start;
}
.track__cover {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  max-width: 320px;
}
.track__cover--square { aspect-ratio: 1 / 1; }
.track__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 30%, var(--glow), transparent 70%);
  opacity: .8;
}
.track__cover .cv-sign {
  font-family: var(--font-script);
  font-size: 4.4rem;
  color: var(--cream);
  position: relative;
  z-index: 1;
  opacity: .9;
}
.track__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.track__story p { color: var(--muted); font-size: 1.6rem; }
.track__plats { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .6rem; }
.plat {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  height: 44px;
  padding: 0 1.8rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
}
.plat:hover { color: #14100c; background: var(--cream); border-color: var(--cream); }
.plat i { font-size: 1.7rem; }

/* ----------------------------------------------------------------
   11. IMPACTO
---------------------------------------------------------------- */
.impacto {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
  text-align: center;
}
.impacto__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.25;
  max-width: 18ch;
  margin: 0 auto clamp(5rem, 8vw, 8rem);
}
.impacto__quote em { color: var(--amber); }
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(4rem, 6vw, 5rem);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5.4rem, 12vw, 9rem);
  line-height: 1;
  background: linear-gradient(180deg, var(--cream), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.5rem;
  letter-spacing: .04em;
}
.stat__plus { color: var(--amber); -webkit-text-fill-color: var(--amber); }

/* ----------------------------------------------------------------
   12. BASTIDORES
---------------------------------------------------------------- */
.bastidores { background: var(--bg); }
.bastidores__head { margin-bottom: clamp(4rem, 6vw, 6rem); display: flex; flex-direction: column; gap: 1.6rem; }
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 22px);
}
.shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
  will-change: transform;
}
.shot:hover img { transform: scale(1.06); }
.shot__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.4rem 2rem 1.8rem;
  background: linear-gradient(transparent, rgba(10,10,12,.85));
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: var(--cream);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.shot:hover .shot__cap { opacity: 1; transform: translateY(0); }
.shot--tall { aspect-ratio: 3 / 4; }
.shot--wide { aspect-ratio: 16 / 10; }

/* ----------------------------------------------------------------
   13. REDES VIVAS
---------------------------------------------------------------- */
.redes { background: var(--bg-2); overflow: hidden; }
.redes__head { margin-bottom: clamp(3.4rem, 5vw, 5rem); }
.marquee {
  display: flex;
  gap: clamp(14px, 2vw, 22px);
  width: max-content;
  will-change: transform;
}
.marquee--rev { margin-top: clamp(14px, 2vw, 22px); }
.social-card {
  flex: 0 0 auto;
  width: clamp(220px, 30vw, 300px);
  height: clamp(150px, 20vw, 190px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s;
}
.social-card:hover { transform: translateY(-6px); border-color: var(--amber); color: var(--cream); }
.social-card .sc-ico { font-size: 3.2rem; }
.social-card .sc-net { font-size: 1.3rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.social-card .sc-handle { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; }
.social-card.ig .sc-ico { color: #e1306c; }
.social-card.tk .sc-ico { color: var(--cream); }
.social-card.yt .sc-ico { color: #ff0033; }
.social-card.sp .sc-ico { color: #1db954; }
.social-card::after {
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  right: -30px; bottom: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  opacity: 0; transition: opacity .4s;
}
.social-card:hover::after { opacity: 1; }

/* ----------------------------------------------------------------
   14. IMPRENSA (muralha editorial)
---------------------------------------------------------------- */
.imprensa { background: var(--bg); }
.imprensa__head { margin-bottom: clamp(3.4rem, 5vw, 5rem); }
.press-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  align-items: center;
}
.press-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  color: rgba(246,242,236,.4);
  transition: color .35s var(--ease);
  line-height: 1.2;
}
.press-name:hover { color: var(--cream); }
.press-name .dot { color: var(--amber); margin-left: 2.4rem; }

/* ----------------------------------------------------------------
   15. CONVITES E AGENDAS
---------------------------------------------------------------- */
.convites {
  position: relative;
  background: #050505;
  overflow: hidden;
}
.convites__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.convites__media img { width: 100%; height: 100%; object-fit: cover; object-position: left center; opacity: .55; }
.convites__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50vw 50vw at 75% 50%, var(--glow), transparent 60%),
    linear-gradient(90deg, rgba(5,5,5,.4), rgba(5,5,5,.92));
}
.convites__inner { position: relative; z-index: 2; }
.convites__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.convites__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.4rem, 12vw, 9rem);
  line-height: .92;
  letter-spacing: -.01em;
}
.convites__title em { color: var(--amber); font-style: italic; }
.convites__sub { color: var(--muted); font-size: clamp(1.7rem, 2vw, 2rem); max-width: 46ch; margin-top: 2rem; }

.booking {
  background: rgba(22,21,26,.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2.6rem, 4vw, 4rem);
}
.booking h3 { font-family: var(--font-display); font-size: 2.6rem; margin-bottom: .6rem; }
.booking p.hint { color: var(--muted); font-size: 1.4rem; margin-bottom: 2.4rem; }
.field { margin-bottom: 1.6rem; }
.field label {
  display: block;
  font-size: 1.3rem;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: .6rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  background: rgba(10,10,12,.6);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  padding: 1.2rem 1.6rem;
  transition: border-color .3s var(--ease), background .3s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--amber);
  background: rgba(10,10,12,.85);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(163,154,144,.7); }
.field select option { background: var(--surface); color: var(--cream); }
.booking__actions { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.4rem; }
.btn-wpp { background: #25d366; color: #07210f; }
.btn-wpp:hover { color: #07210f; transform: translateY(-3px); box-shadow: 0 14px 34px -12px rgba(37,211,102,.5); }
.btn-mail { background: transparent; color: var(--cream); border-color: var(--line); }
.btn-mail:hover { color: var(--cream); border-color: var(--cream); transform: translateY(-3px); }

/* ----------------------------------------------------------------
   16. RODAPÉ
---------------------------------------------------------------- */
.ng-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(5rem, 7vw, 7rem) 0 3rem;
}
.ng-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.4rem;
  align-items: start;
}
.ng-footer__brand { font-family: var(--font-script); font-size: 4.4rem; color: var(--cream); line-height: .9; }
.ng-footer__brand + p { color: var(--muted); font-size: 1.5rem; margin-top: 1rem; max-width: 36ch; }
.ng-footer__col h4 {
  font-size: 1.3rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.6rem;
}
.ng-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.ng-footer__col a { color: var(--cream); font-size: 1.5rem; }
.ng-footer__social { display: flex; gap: 1.2rem; }
.ng-footer__social a {
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.ng-footer__social a:hover { background: var(--amber); color: #14100c; border-color: var(--amber); }
.ng-footer__labels { display: flex; align-items: center; gap: 2.4rem; flex-wrap: wrap; margin-top: 1rem; }
.ng-footer__labels img { height: 34px; width: auto; opacity: .75; filter: brightness(0) invert(1); }
.ng-footer__bottom {
  margin-top: clamp(4rem, 6vw, 6rem);
  padding-top: 2.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 1.3rem;
}
.ng-footer__bottom a { color: var(--muted); }
.ng-footer__bottom a:hover { color: var(--amber); }

/* ----------------------------------------------------------------
   17. REVEAL (animação base — fallback sem JS = visível)
---------------------------------------------------------------- */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(34px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* ----------------------------------------------------------------
   18. RESPONSIVO (scale-up)
---------------------------------------------------------------- */
@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-flow: dense;
  }
  .shot--a { grid-column: span 4; aspect-ratio: 16 / 10; }
  .shot--b { grid-column: span 2; aspect-ratio: 3 / 4; }
  .shot--c { grid-column: span 2; aspect-ratio: 3 / 4; }
  .shot--d { grid-column: span 4; aspect-ratio: 16 / 10; }
  .shot--e { grid-column: span 3; aspect-ratio: 4 / 3; }
  .shot--f { grid-column: span 3; aspect-ratio: 4 / 3; }
  .track__panel-grid { grid-template-columns: 300px 1fr; gap: 4rem; }
  .booking__actions { grid-template-columns: 1fr 1fr; }
  .ng-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .ng-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 992px) {
  .ng-menu { display: flex; }
  .ng-nav-cta { display: inline-flex; }
  .ng-burger { display: none; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .convites__grid { grid-template-columns: 1.1fr .9fr; }
  .impacto__quote { margin-bottom: clamp(6rem, 8vw, 9rem); }
}

/* ----------------------------------------------------------------
   19. ACESSIBILIDADE — movimento reduzido
---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .hero__media img { transform: scale(1) !important; }
  .scroll-cue .line::after { animation: none; }
}

.footer-gmb-logo { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.35); font-size: 0.78rem; transition: color 0.3s; }
.footer-gmb-logo:hover { color: rgba(255,255,255,0.65); }
.footer-gmb-logo img { height: 18px; opacity: 0.7; filter: brightness(0) invert(1); }
.footer-icons { display: flex; gap: 0.8rem; align-items: center; }
.f-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s var(--ease);
}
.f-social:hover { border-color: var(--blue-light); color: var(--blue-light); transform: translateY(-3px); }
.f-social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}
textarea{
  resize: none !important;
  min-height: 200px !important;
}
