:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255,255,255,.55);
  --line: rgba(255,255,255,.16);
  --pad: clamp(20px, 4vw, 56px);
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
body {
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: #fff; color: #000; }

/* ── Tipografia ── */
.display {
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: .95;
  text-transform: uppercase;
}
.display em {
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -.01em;
}
.outline {
  color: transparent;
  -webkit-text-stroke: 1.2px #fff;
  text-stroke: 1.2px #fff;
}
.ital-sub {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.85);
}
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Hero entry word-by-word ── */
@keyframes hero-word-in {
  from { opacity: 0; transform: translateY(52px) skewY(3deg); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
.hero-word {
  display: inline-block;
  opacity: 0;
  animation: hero-word-in 1.1s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-word.w1 { animation-delay: .18s; }
.hero-word.w2 { animation-delay: .34s; }
.hero-word.w3 { animation-delay: .50s; }
.hero-word.w4 { animation-delay: .66s; }
.hero-body {
  animation: none;
  opacity: 1;
}

/* ── Animação scroll ── */
.fade-up {
  opacity: 0;
  transform: translateY(52px);
  filter: blur(4px);
  transition: opacity .95s ease, transform .95s cubic-bezier(.16,1,.3,1), filter .8s ease;
}
.fade-up.delay-1 { transition-delay: .14s; }
.fade-up.delay-2 { transition-delay: .28s; }
.fade-up.delay-3 { transition-delay: .42s; }
.fade-up.delay-4 { transition-delay: .56s; }
.fade-up.delay-5 { transition-delay: .70s; }
.fade-up.delay-6 { transition-delay: .84s; }
.fade-up.visible { opacity: 1; transform: none; filter: blur(0); }

/* ── Service stack — stagger por linha ── */
.servico-stack .row {
  transform: translateX(-64px);
  filter: blur(3px);
  transition: transform .9s cubic-bezier(.16,1,.3,1), filter .7s ease;
}
.servico-stack.stack-active .row { transform: none; filter: blur(0); }
.servico-stack.stack-active .row:nth-child(1) { transition-delay: .00s; }
.servico-stack.stack-active .row:nth-child(2) { transition-delay: .08s; }
.servico-stack.stack-active .row:nth-child(3) { transition-delay: .16s; }
.servico-stack.stack-active .row:nth-child(4) { transition-delay: .24s; }
.servico-stack.stack-active .row:nth-child(5) { transition-delay: .32s; }

/* ── Service stack mobile: vertical ── */
@media (max-width: 900px) {
  .servico-stack .row {
    transform: translateY(28px);
    opacity: 0;
    filter: blur(2px);
    transition: transform .75s cubic-bezier(.16,1,.3,1), filter .55s ease, opacity .65s ease;
  }
  .servico-stack.stack-active .row { opacity: 1; }
}

/* ── Luz passante nos serviços ── */
.servico::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0; z-index: 3;
  width: 55%;
  background: linear-gradient(to right,
    transparent 0%, rgba(255,255,255,.045) 40%,
    rgba(255,255,255,.09) 50%, rgba(255,255,255,.045) 60%, transparent 100%);
  transform: translateX(-115%);
  pointer-events: none;
  will-change: transform;
}
.servico.swept::before {
  animation: light-sweep 1.8s cubic-bezier(.25,.46,.45,.94) .2s forwards;
}
@keyframes light-sweep {
  from { transform: translateX(-115%); }
  to   { transform: translateX(280%); }
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 210;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  background: linear-gradient(to bottom, rgba(0,0,0,.32), transparent);
  transition: background .35s;
}
nav.scrolled {
  background: rgba(0,0,0,.76);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
.brand-name {
  font-weight: 700; letter-spacing: .12em; font-size: 13px;
  text-transform: uppercase;
}
.brand-name span { color: var(--muted); font-weight: 400; letter-spacing: .2em; }
.nav-links {
  display: flex; gap: 28px;
  font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
}
.nav-links a { opacity: .7; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-ig {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.75);
  transition: color .2s, border-color .2s, transform .2s;
}
.nav-ig:hover {
  color: #fff;
  border-color: rgba(255,255,255,.7);
  transform: scale(1.08);
}
.nav-cta {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 10px 18px;
  border: 1px solid var(--fg); border-radius: 99px;
  white-space: nowrap;
  transition: background .2s, color .2s, transform .2s;
}
.nav-cta:hover { background: var(--fg); color: var(--bg); transform: translateY(-1px); }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-ig, .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 400px) { .nav-cta-arrow { display: none; } }

/* ── Hamburger button ── */
.hamburger {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 761px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Menu mobile overlay ── */
.mob-menu {
  position: fixed;
  top: 74px; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 52px 32px 40px;
  gap: 28px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mob-menu.open {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 761px) { .mob-menu { display: none; } }
nav.mob-open {
  background: rgba(0,0,0,.95) !important;
  backdrop-filter: blur(12px);
}
.mob-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mob-link {
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  padding: 4px 0;
}
.mob-link:hover { color: rgba(255,255,255,.45); }
.mob-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 11px 26px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 99px;
  color: #fff;
}
.mob-cta:hover { background: #fff; color: #000; }
.mob-ig-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.mob-ig-link:hover { color: rgba(255,255,255,.75); }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px var(--pad) 52px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.52) contrast(1.06);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.4) 0%, transparent 28%, transparent 58%, rgba(0,0,0,.88) 100%),
    linear-gradient(to right, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 16%, rgba(0,0,0,.45) 32%, rgba(0,0,0,.12) 42%, transparent 48%);
}
.hero-body { position: relative; z-index: 2; }
.hero h1 {
  margin: 0;
  font-size: clamp(47px, 9.9vw, 162px);
}
.hero-foot {
  margin-top: clamp(28px, 4vw, 52px);
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
}
.hero-foot .ital-sub {
  font-size: clamp(15px, 1.4vw, 19px);
  max-width: 520px; line-height: 1.55;
  margin-left: 2%;
}
.hero-meta {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); display: flex; gap: 16px; align-items: center;
  margin-left: 2%;
}
.hero-meta .dot { width: 6px; height: 6px; border-radius: 99px; background: #fff; }

/* ── Section base ── */
section.block { padding: clamp(72px, 10vw, 144px) var(--pad); }
/* Espaço acima do marquee: dobro do original */
#sobre   { padding-bottom: clamp(108px, 15vw, 216px); }
/* Remove borda superior do eventos — o marquee já tem borda inferior própria */
#eventos { border-top: none; }
.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 64px);
  position: relative; z-index: 1;
}
.section-head .label-row { display: flex; align-items: center; gap: 14px; }
.section-head .dash {
  width: 32px; height: 1px; background: var(--fg); opacity: .55;
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1) .45s;
}
.section-head.visible .dash { transform: scaleX(1); }

/* ── Quem Somos ── */
.sobre {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 760px) { .sobre { grid-template-columns: 1fr; } }
.sobre-fotos {
  display: flex; flex-direction: column;
  gap: clamp(8px, 1.2vw, 14px);
  margin-top: -38px;
}
.sobre-foto {
  aspect-ratio: 3/2;
  background-size: cover; background-position: center;
  border-radius: 2px; overflow: hidden;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.sobre-foto:hover { transform: scale(1.015); }
.sobre-fotos .sobre-foto:nth-child(2) { margin-left: clamp(16px, 3vw, 48px); }
.sobre-title {
  margin: 0 0 32px;
  font-size: clamp(39px, 7vw, 101px);
}
.sobre-text {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.68; color: rgba(255,255,255,.82);
  max-width: 56ch;
}
.sobre-text p { margin: 0 0 1em; }
.sobre-text p.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  font-style: italic; color: #fff; line-height: 1.4; margin-bottom: 1.4em;
}
.sobre-text p strong { font-weight: 600; color: #fff; }
.sobre-text .quote { display: inline-block; font-style: italic; padding: 0 .12em; }

/* ── Serviços ── */
.servico {
  position: relative; min-height: 92vh;
  padding: clamp(80px, 10vw, 140px) var(--pad);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden; border-top: 1px solid var(--line);
}
.servico-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; position: relative; z-index: 2;
}
.servico-tag {
  font-size: 11px; letter-spacing: .24em;
  color: var(--muted); text-transform: uppercase;
}
.servico-stack { margin-top: 32px; position: relative; z-index: 2; }
.servico-stack .row {
  font-size: clamp(45px, 9.1vw, 154px);
  font-weight: 800; letter-spacing: -.04em; line-height: .86;
  text-transform: uppercase;
}
.servico-stack .row.r1 { color: #fff; }
.servico-stack .row.r2 { color: rgba(255,255,255,.7); }
.servico-stack .row.r3 { color: rgba(255,255,255,.38); }
.servico-stack .row.r4 { color: rgba(255,255,255,.18); }
.servico-stack .row.r5 { color: rgba(255,255,255,.07); }

.servico-fotos {
  position: absolute; right: var(--pad);
  top: calc(clamp(48px, 7vw, 88px) + 52px);
  display: flex; gap: 14px; z-index: 1;
}
.sf-photo {
  width: clamp(327px, 44vw, 580px); aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.sf-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 10px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.82); font-weight: 500;
  pointer-events: none;
}
.sf-placeholder {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
}
.sf-placeholder svg { opacity: .22; }
.sf-ph-label {
  font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted);
}
@media (max-width: 900px) {
  .servico-fotos {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    display: block;
    width: auto;
    margin-top: 0;
    z-index: 1;
  }
  .servico-fotos::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1;
    background: linear-gradient(to bottom,
      rgba(0,0,0,.72) 0%, rgba(0,0,0,.48) 55%, rgba(0,0,0,.72) 100%);
  }
  .servico-fotos .sf-photo {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
  }
  .servico-fotos .sf-photo + .sf-photo { display: none; }
}

.servico-foot {
  position: relative; z-index: 2; margin-top: 32px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.servico-foot .desc {
  max-width: 480px; font-size: 14.5px; line-height: 1.62;
  color: rgba(255,255,255,.75);
}
.servico-foot .desc em { font-style: italic; }

/* ── Galeria ── */
.galeria-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 10px;
}
.galeria-grid .cell {
  background-size: cover; background-position: center; aspect-ratio: 1/1;
  overflow: hidden; position: relative;
  transition: filter .4s;
}
.galeria-grid .cell:hover { filter: brightness(1.08); }
.galeria-grid .cell.wide { aspect-ratio: 2/1; }
.galeria-grid .cell.tall { aspect-ratio: 3/4; }
.galeria-grid .c-3 { grid-column: span 3; }
.galeria-grid .c-4 { grid-column: span 4; }
.galeria-grid .c-5 { grid-column: span 5; }
.galeria-grid .c-6 { grid-column: span 6; }
.galeria-grid .c-7 { grid-column: span 7; }
.galeria-grid .c-8 { grid-column: span 8; }
.galeria-grid .c-12 { grid-column: span 12; }
/* Células exclusivas do mobile — ocultas em telas médias e grandes */
.cell.mob-only { display: none; }
@media (max-width: 760px) {
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-grid .cell { grid-column: span 1 !important; aspect-ratio: 1/1 !important; }
  .galeria-grid .cell.lead { grid-column: span 2 !important; }
  .af-col-right, .esb-col-right { display: contents !important; }
  .rp-grid .cell, .biarritz-grid .cell, .blux-grid .cell { grid-row: auto !important; }
  .cell.mob-only { display: block; }
}

/* ── Legenda sobre cada imagem ── */
.cell-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.85); font-weight: 500;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s;
}
.galeria-grid .cell:hover .cell-label { opacity: 1; }

.gl-label {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  padding-top: 80px; margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.gl-label::before {
  content: ''; display: block; width: 20px; height: 1px;
  background: rgba(255,255,255,.4);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 1.1s cubic-bezier(.16,1,.3,1) .35s;
}

/* ── Studio placeholder ── */
.studio-placeholder-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
@media (max-width: 700px) { .studio-placeholder-grid { grid-template-columns: 1fr 1fr; } }
.studio-ph {
  aspect-ratio: 4/5;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
}
.studio-ph svg { opacity: .22; }
.studio-ph .ph-label {
  font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted);
}

/* ── Photo divider ── */
.photo-divider {
  position: relative; height: clamp(60vh, 78vh, 88vh);
  overflow: hidden; border-top: 1px solid var(--line);
  cursor: default;
}
.photo-divider-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  filter: brightness(.68) contrast(1.04);
  transform: scale(1.5);
  will-change: transform;
}
.photo-divider::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.05) 45%, rgba(0,0,0,.7) 100%);
}
.photo-divider-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: var(--pad);
  gap: 18px;
}
.photo-divider-content .tagline {
  font-size: clamp(32px, 5.5vw, 80px);
  font-weight: 800; letter-spacing: -.025em; line-height: .92;
  text-transform: uppercase;
}
.photo-divider-content .tagline em {
  font-weight: 500; font-style: italic; text-transform: none;
}

/* ── Contato ── */
.contato {
  position: relative;
  padding: clamp(80px, 14vw, 200px) var(--pad);
  overflow: hidden; border-top: 1px solid var(--line);
}
.contato-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(.38) contrast(1.12) grayscale(.2);
  transform: scale(1.07);
  transition: transform 1.8s cubic-bezier(.22, 1, .36, 1);
}
.contato.contato-in .contato-bg { transform: scale(1); }
.contato-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.48) 50%, #000 100%);
}
.contato-inner { position: relative; z-index: 2; text-align: center; }
.contato h2 {
  margin: 0;
  font-size: clamp(39px, 7vw, 105px);
  font-weight: 800; letter-spacing: -.025em; line-height: .95;
  text-transform: uppercase;
}
.contato h2 em { font-style: italic; font-weight: 500; text-transform: none; }
.contato .sub {
  margin-top: 22px; font-style: italic; font-weight: 400;
  font-size: clamp(16px, 1.5vw, 21px); color: rgba(255,255,255,.82);
}
.contato-ctas {
  margin-top: 52px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 99px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .2s, background .2s, color .2s, box-shadow .2s;
}
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,.18); }
.btn-ghost { border: 1px solid #fff; color: #fff; }
.btn-ghost:hover { background: #fff; color: #000; transform: translateY(-2px); }
.btn .arrow { font-size: 14px; }
.contato-info {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 900px; margin-left: auto; margin-right: auto;
  padding-top: 40px; border-top: 1px solid var(--line);
}
@media (max-width: 700px) { .contato-info { grid-template-columns: 1fr; gap: 20px; } }
.contato-info .item .k {
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.contato-info .item .v { font-weight: 500; font-size: 15px; }
.contato-info .item .v.italic { font-style: italic; font-weight: 400; }

/* ── Footer ── */
footer {
  padding: 28px var(--pad) 20px;
  display: flex; flex-direction: column; gap: 0;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); border-top: 1px solid var(--line);
}
footer .brand img { width: 28px; height: 28px; border-radius: 6px; object-fit: cover; }
.footer-main {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.footer-brand-block {
  display: flex; flex-direction: row; align-items: center; gap: 16px;
}
.footer-rights {
  font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.32);
}
.footer-bottom {
  display: flex; justify-content: center; align-items: center;
}
.footer-credit {
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.32); font-weight: 400; transition: color .25s;
}
.footer-credit:hover { color: #fff; }
@media (max-width: 640px) {
  .footer-main { flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 12px; }
  .footer-brand-block { flex-direction: column; align-items: center; gap: 6px; }
  .footer-tag { display: none; }
  .footer-bottom { text-align: center; }
}

/* ── Lightbox ── */
.lb {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
  cursor: default;
}
.lb.open { opacity: 1; pointer-events: all; }
.lb-img-wrap {
  max-width: min(90vw, calc(90vh * 0.8));
  max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.lb-img-wrap img {
  max-width: 100%; max-height: 88vh;
  object-fit: contain; display: block;
  opacity: 0; transition: opacity .22s ease;
  border-radius: 2px;
  user-select: none; -webkit-user-drag: none;
}
.lb-img-wrap img.loaded { opacity: 1; }
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color: #fff; font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
  z-index: 301;
}
.lb-nav:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-50%) scale(1.06);
}
.lb-nav.hidden { opacity: 0; pointer-events: none; }
#lb-prev { left: clamp(12px, 2.5vw, 32px); }
#lb-next { right: clamp(12px, 2.5vw, 32px); }
.lb-close {
  position: fixed; top: 20px; right: 20px; z-index: 301;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lb-close:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); }
.lb-info {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 18px; z-index: 301;
}
.lb-label {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.lb-dots {
  display: flex; gap: 6px; align-items: center;
}
.lb-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: background .2s, transform .2s;
}
.lb-dot.active { background: #fff; transform: scale(1.3); }

/* ── Barra de progresso de scroll ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 220;
  height: 1.5px; width: 0%;
  background: linear-gradient(to right, rgba(255,255,255,.28), #fff 80%);
  pointer-events: none;
  transition: width .08s linear;
}

/* ── Film grain ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 199;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
  opacity: 0.045;
}

/* ── Marquee (loop infinito) ── */
.marquee-title {
  text-align: center;
  font-size: 10px; font-weight: 500; letter-spacing: .32em;
  text-transform: uppercase; color: rgba(255,255,255,.38);
  margin: 0 0 10px;
  user-select: none;
}
.marquee-wrapper {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 0;
  margin-bottom: clamp(120px, 15vw, 210px);
}
.marquee-section {
  overflow: hidden;
  overflow-x: clip; /* evita stacking context que interfere com compositing da GPU */
  padding: 4px 0;
}
.marquee-track {
  display: flex;
  will-change: transform;
  backface-visibility: hidden; /* reduz flickering em GPUs com antialiasing subpixel */
  /* animação iniciada por JS após window.load, evitando restart */
}
.marquee-set {
  display: flex;
  flex-shrink: 0;
}
.marquee-item {
  display: inline-flex; align-items: center;
  padding: 0 64px; flex-shrink: 0; user-select: none;
}
.marquee-item img {
  height: 55px; width: auto; display: block;
  filter: grayscale(1) invert(1); opacity: .88;
  transition: opacity .3s;
  user-select: none; pointer-events: none;
}
.mq-word {
  font-size: 28px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.88);
  white-space: nowrap; user-select: none;
}
/* ela-beachwear: força branco puro (brightness(0)→preto, invert→branco) */
.marquee-set .marquee-item:nth-child(5) img {
  filter: brightness(0) invert(1);
  height: 28px;
}
/* adoro frozen: reduz 10% */
.marquee-set .marquee-item:nth-child(1) img {
  height: 49px;
}
/* basickini: reduz tamanho */
.marquee-set .marquee-item:nth-child(2) img {
  height: 28px;
}
/* esbórnia: −37% */
.marquee-set .marquee-item:nth-child(6) img {
  height: 58px;
}
/* blux: reduz 45% do original */
.marquee-set .marquee-item:nth-child(4) img {
  height: 33px;
}
/* guaraplus: aumenta 15% */
.marquee-set .marquee-item:nth-child(7) img {
  height: 70px;
}
/* parnaioca: −42% */
.marquee-set .marquee-item:nth-child(9) img {
  height: 44px;
}
/* sally wet: aumenta 15% */
.marquee-set .marquee-item:nth-child(11) img {
  height: 63px;
}
/* Mobile: −20% espaçamento e tamanho */
@media (max-width: 760px) {
  .marquee-item { padding: 0 51px; }
  .marquee-item img { height: 44px; }
  .mq-word { font-size: 22px; }
  .marquee-set .marquee-item:nth-child(1) img { height: 39px; }
  .marquee-set .marquee-item:nth-child(2) img { height: 22px; }
  .marquee-set .marquee-item:nth-child(4) img { height: 26px; }
  .marquee-set .marquee-item:nth-child(5) img { height: 22px; }
  .marquee-set .marquee-item:nth-child(6) img { height: 46px; }
  .marquee-set .marquee-item:nth-child(7) img { height: 56px; }
  .marquee-set .marquee-item:nth-child(9) img { height: 35px; }
  .marquee-set .marquee-item:nth-child(11) img { height: 50px; }
}

.scroll-hint {
  display: flex; justify-content: center;
  padding: 16px 0 24px;
  color: rgba(255,255,255,.55);
  animation: hint-bob 2.4s ease-in-out infinite;
}
@keyframes hint-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* @keyframes marquee injetado por JS/main.js após window.load */

/* ── SVG decorativos ── */
.svg-deco {
  position: absolute; pointer-events: none; z-index: 0; overflow: visible;
}
.svg-aperture {
  opacity: .13;
  animation: slow-spin 100s linear infinite;
  transform-origin: center;
}
.svg-aperture-rev {
  opacity: .1;
  animation: slow-spin 140s linear infinite reverse;
  transform-origin: center;
}
@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.svg-vf-corner { opacity: .28; }

/* ── Stagger galeria ── */
.galeria-grid .cell {
  opacity: 0;
  transform: translateY(36px) scale(.92);
  filter: blur(3px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1), filter .6s ease;
}
.galeria-grid.stagger-visible .cell { opacity: 1; transform: none; filter: blur(0); }
.galeria-grid.stagger-visible .cell:nth-child(1) { transition-delay: .00s; }
.galeria-grid.stagger-visible .cell:nth-child(2) { transition-delay: .08s; }
.galeria-grid.stagger-visible .cell:nth-child(3) { transition-delay: .16s; }
.galeria-grid.stagger-visible .cell:nth-child(4) { transition-delay: .24s; }
.galeria-grid.stagger-visible .cell:nth-child(5) { transition-delay: .32s; }
.galeria-grid .cell:hover { filter: brightness(1.1); }

/* ── Reveal de texto (clip) ── */
.reveal-clip { overflow: hidden; display: inline-block; vertical-align: bottom; }
.reveal-inner {
  display: inline-block;
  transform: translateY(105%);
  transition: transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-inner.visible { transform: translateY(0); }

/* ── SVG câmeras e clicks ── */
.svg-camera {
  position: absolute; pointer-events: none; z-index: 0;
  opacity: .07;
}
.svg-click {
  position: absolute; pointer-events: none; z-index: 0;
  opacity: .09;
  animation: click-pulse 4s ease-in-out infinite;
}
.svg-click:nth-child(even) { animation-delay: -2s; }
@keyframes click-pulse {
  0%, 100% { opacity: .06; transform: scale(1) rotate(0deg); }
  50%       { opacity: .14; transform: scale(1.12) rotate(15deg); }
}

/* ── Big label / servico-tag reveal ── */
.gl-label {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(5px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1), filter .8s ease;
}
.gl-label.lbl-in { opacity: 1; transform: none; filter: blur(0); }
.gl-label.lbl-in::before { transform: scaleX(1); }

.servico-head {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.16,1,.3,1), filter .75s ease;
}
.servico-head.lbl-in { opacity: 1; transform: none; filter: blur(0); }

/* ── WhatsApp flutuante ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  background: rgba(16,16,16,.96);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,.6);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.wa-float::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.55);
  animation: wa-pulse 3s ease-out 2s infinite;
  opacity: 0;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 32px rgba(0,0,0,.7);
  border-color: rgba(255,255,255,.5);
}
.wa-float:hover::before { animation: none; }
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: .6; }
  100% { transform: scale(1.55); opacity: 0;  }
}

/* ── Proteção de imagens ── */
.cell-protect {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: zoom-in;
  -webkit-user-drag: none;
  user-select: none;
}
#lb-img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
