/* ============== ENTRE NÓS — base styles ============== */
:root {
  --amber: #E8A020;
  --olive: #7A8A3E;
  --teal:  #3D7A85;
  --burgundy: #A63030;
  --brown: #9A6B35;
  --cream: #F0EAE0;
  --offwhite: #FAF7F2;
  --ink: #1C1C1A;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--cream); color: var(--ink); -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* ============== Hand-drawn doodle decorations ============== */
@keyframes doodleDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes doodleLoop {
  0%   { stroke-dashoffset: var(--dash-len); }
  20%  { stroke-dashoffset: 0; }
  50%  { stroke-dashoffset: 0; }
  75%  { stroke-dashoffset: calc(var(--dash-len) * -1); }
  100% { stroke-dashoffset: calc(var(--dash-len) * -1); }
}

/* Circle around identidade */
.doodle-circle {
  position: absolute;
  top: -30%;
  left: -12%;
  width: 124%;
  height: 160%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

/* Wavy underline on espaço */
.doodle-underline {
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 110%;
  height: 30%;
  pointer-events: none;
  z-index: 2;
}

/* Scratchy underlines on vender */
.doodle-scratches {
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 110%;
  height: 45%;
  pointer-events: none;
  z-index: 2;
}

/* Small knots between sections */
.doodle-knot {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s ease;
  z-index: 2;
}
.doodle-knot.visible { opacity: 1; }
.doodle-knot.top-right  { top: -20px; right: 3%; }
.doodle-knot.top-left   { top: -20px; left: 3%; }
.doodle-knot.bottom-right { bottom: -20px; right: 3%; }
.doodle-knot.bottom-left  { bottom: -20px; left: 3%; }
.doodle-knot svg { width: 100%; height: 100%; }

/* placeholder texture for missing imagery */
.ph {
  background:
    repeating-linear-gradient(45deg, rgba(28,28,26,.04) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, #d6cebd, #bbb19c);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: rgba(28,28,26,.55);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  text-align: center; padding: 1rem;
}
.ph.dark {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, #2b2b28, #1a1a18);
  color: rgba(240,234,224,.5);
}

/* ============== Progress bar ============== */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 9999;
  background: transparent;
}
.progress::before {
  content: ''; display: block; height: 100%; width: var(--p, 0%);
  background: linear-gradient(90deg, var(--amber), var(--olive), var(--teal), var(--burgundy));
}

/* ============== Cursor ============== */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s;
}
.cursor-dot.is-hover { width: 60px; height: 60px; background: rgba(232,160,32,.4); border-color: var(--amber); }
@media (hover:none) { .cursor-dot { display: none; } }

/* ============== Nav ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2rem;
  background: linear-gradient(180deg, rgba(28,28,26,.55) 0%, rgba(28,28,26,.25) 70%, transparent 100%);
  color: var(--cream);
}
.nav .logo {
  height: 90px; width: auto;
  filter: brightness(0) invert(1);
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; position: relative; }
.nav-links a, .nav-links button {
  font: inherit; color: inherit; background: none; border: 0;
  text-decoration: none; cursor: pointer;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.lang { display: flex; gap: .4rem; }
.lang button { opacity: .55; padding: .2rem .35rem; }
.lang button.active { opacity: 1; border-bottom: 1.5px solid currentColor; }
.sound-toggle {
  display: flex; align-items: center; gap: .35rem;
  padding: .35rem .7rem; border: 1px solid currentColor !important; border-radius: 999px;
  position: relative;
}
.spotify-embed {
  position: fixed;
  top: 70px; right: 2rem;
  width: 340px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .3s, transform .3s;
}
.spotify-embed.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ============== Chalk hint arrow (Spotify) ============== */
.chalk-hint {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  display: flex;
  align-items: flex-start;
  gap: .2rem;
  pointer-events: none;
  animation: chalkFadeIn 1.2s .8s ease both, chalkFloat 3s 2s ease-in-out infinite;
  transform-origin: right top;
  white-space: nowrap;
  color: rgba(255,255,255,.7);
}
.chalk-hint.hidden {
  animation: chalkFadeOut .5s ease forwards;
}
.chalk-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .85rem;
  letter-spacing: .08em;
  opacity: .8;
  margin-top: 18px;
}
.chalk-arrow {
  width: 55px;
  height: 36px;
  flex-shrink: 0;
}
@keyframes chalkFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes chalkFadeOut {
  to { opacity: 0; transform: translateY(-6px); }
}
@keyframes chalkFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}
@media (max-width: 768px) {
  .chalk-hint { display: none; }
}

/* ============== Hero ============== */
.hero {
  position: relative;
  height: 100svh; min-height: 640px;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img, .hero-bg .ph {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  filter: saturate(.9) contrast(1.05);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(28,28,26,.35) 0%, rgba(28,28,26,.6) 50%, rgba(28,28,26,.88) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 6rem 2rem 2rem;
}
.hero-logo {
  display: flex; align-items: center; justify-content: center;
  flex: 1;
}
.hero-logo img {
  width: min(56vw, 675px);
  filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0,0,0,.5));
}
.hero-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(240,234,224,.7);
}
.hero-foot .scroll-cue { display: flex; align-items: center; gap: .6rem; }
.hero-foot .scroll-cue::before {
  content: ''; width: 60px; height: 1px; background: currentColor;
  animation: scrollLine 1.8s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}
.hero-tag {
  position: absolute; left: 2rem; top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: left top;
  font-size: .75rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(240,234,224,.55);
  z-index: 3;
}

/* ============== Subtle whisper marquees ============== */
.bar {
  position: relative;
  overflow: hidden;
  padding: 1.6rem 0;
  white-space: nowrap;
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid rgba(28,28,26,.08);
  border-bottom: 1px solid rgba(28,28,26,.08);
}
.bar.on-dark { background: var(--ink); color: var(--cream); border-top-color: rgba(240,234,224,.06); border-bottom-color: rgba(240,234,224,.06); }
.bar .accent { color: var(--accent); }
.bar.amber    { --accent: var(--amber); }
.bar.olive    { --accent: var(--olive); }
.bar.teal     { --accent: var(--teal); }
.bar.burgundy { --accent: var(--burgundy); }

.bar-track {
  display: inline-flex;
  align-items: baseline;
  gap: 2.4rem;
  animation: marquee 60s linear infinite;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  letter-spacing: .02em;
  opacity: .85;
}
.bar-track > span { display: inline-flex; align-items: baseline; gap: 2.4rem; }
.bar-track .word {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: .85em;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.bar-track .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent, currentColor);
  align-self: center;
  opacity: .8;
}
.bar-track .line {
  display: inline-block;
  width: 36px; height: 1px;
  background: currentColor;
  align-self: center;
  opacity: .35;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (hover:hover) {
  .bar:hover .bar-track { animation-duration: 90s; }
}

/* ============== Wave text sections ============== */
.wave-section {
  padding: 14rem 2rem;
  position: relative;
  /* overflow visível pra que o círculo de "identidade" e o scribble de "detalhe"
     possam transbordar do limite da seção sem serem cortados.
     O body já tem overflow-x: hidden, então não há scroll horizontal. */
  overflow: visible;
}
.wave-section.dark { background: var(--ink); color: var(--cream); }
.wave-section.light { background: var(--offwhite); color: var(--ink); }
.wave-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: .92;
  letter-spacing: -.03em;
  max-width: 1400px;
  margin: 0 auto;
  text-wrap: balance;
}
.wave-headline .word {
  display: inline-block;
  overflow: hidden;
  margin-right: .2em;
  padding: 0 .08em;
  margin-left: -.08em;
  margin-right: calc(.2em - .08em);
  clip-path: inset(-20% 0 -20% 0);
}
.wave-headline .word > span {
  display: inline-block;
  transform: translateY(110%);
  padding-right: .02em;
}
.wave-sub {
  margin-top: 3rem;
  max-width: 60ch;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.4;
  opacity: .8;
}
.wave-section.dark .wave-sub { opacity: .65; }

/* ---------- paint-identity: letter-by-letter color reveal ---------- */
.paint-identity {
  position: relative;
  display: inline-block;
}
.paint-identity .paint-letter {
  display: inline-block;
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.6s ease, filter 0.6s ease;
}
.paint-identity.painted .paint-letter {
  opacity: 1;
  filter: blur(0);
}

/* ---------- scribble-word: handwritten marks around 'detalhe' ---------- */
.scribble-word {
  position: relative;
  display: inline-block;
  padding: 0 .05em;
}
.scribble-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  /* scale slightly beyond the word to look like a hand-drawn circle */
  transform: translate(-50%, -50%) scale(1.25, 1.55);
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.scribble-svg path {
  fill: none;
  stroke: var(--amber);
  stroke-width: 2.8;
  stroke-linecap: round;
  --dash-len: 600px;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  opacity: .75;
}
.scribble-word.scribbled .scribble-svg path {
  animation: doodleLoop 4s cubic-bezier(.4,0,.2,1) infinite;
}

/* ---------- split-word: letters fly in from afar ---------- */
.split-word {
  position: relative;
  display: inline-block;
}
.split-word .split-char {
  display: inline-block;
  transition: letter-spacing .5s cubic-bezier(.2,.8,.2,1), opacity .5s ease;
}
.split-word.splitting .split-char {
  letter-spacing: .6em;
  opacity: .3;
}
.split-word.joined .split-char {
  letter-spacing: normal;
  opacity: 1;
}

/* ---------- green-word: vender in olive ---------- */
.green-word {
  color: var(--olive);
  font-weight: 900;
  position: relative;
  display: inline-block;
}

/* ---------- thread SVG: wavy line animation ---------- */
.thread-headline {
  position: relative;
}
.thread-word {
  position: relative;
}
.thread-line {
  display: block;
  width: 100%;
  height: 30px;
  margin-top: -0.3em;
  overflow: visible;
  pointer-events: none;
}
.thread-path {
  --dash-len: 500px;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  opacity: .7;
}
.thread-line.animate .thread-path {
  animation: doodleLoop 5s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes threadDraw {
  to { stroke-dashoffset: 0; }
}

/* ---------- flash-word: camera flash on 'fotografar' ---------- */
.flash-word {
  position: relative;
  overflow: visible;
}
.flash-word::after {
  content: '';
  position: absolute;
  inset: -20% -30%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.85) 0%, rgba(255,255,255,.4) 30%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}
.flash-word.flashing::after {
  animation: cameraFlash .6s ease-out forwards;
}
@keyframes cameraFlash {
  0%   { opacity: 0; transform: scale(.6); }
  15%  { opacity: 1; transform: scale(1.3); }
  100% { opacity: 0; transform: scale(1.6); }
}

/* vertical ghost label */
.vlabel {
  position: absolute;
  right: 1.5rem; top: 50%;
  writing-mode: vertical-rl;
  transform: rotate(180deg) translateY(50%);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  letter-spacing: -.02em;
  opacity: .04;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.wave-section.dark .vlabel { color: var(--cream); opacity: .05; }

/* ============== Image reveal ============== */
.reveal {
  position: relative;
  height: 220vh;
  background: var(--cream);
}
.reveal-sticky {
  position: sticky; top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.reveal-img {
  width: 30vw; height: 60vh;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(28,28,26,.25);
}
.reveal-img > img, .reveal-img > .ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.reveal-color-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background: var(--olive);
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity .6s ease, background 1s ease;
  pointer-events: none;
}
.reveal-img.zooming .reveal-color-overlay {
  opacity: .45;
  background: var(--amber);
}
.reveal-caption {
  position: absolute; bottom: 2rem; left: 2rem;
  z-index: 3;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  mix-blend-mode: difference;
  color: #fff;
}

/* ============== Data bars ============== */
.data {
  background: var(--cream);
  padding: 8rem 2rem;
}
.data-title {
  max-width: 1400px; margin: 0 auto 4rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem; letter-spacing: .14em;
  text-transform: uppercase;
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  opacity: .55;
}
.data-bars { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.data-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 1.5rem 2rem;
  color: var(--ink);
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(28,28,26,.12);
  isolation: isolate;
}
/* colored fill bar — separate element injected by JS */
.data-row-bg {
  position: absolute; inset: 0;
  background: var(--c);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 0;
  border-radius: 8px;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.data-row.in .data-row-bg { transform: scaleX(1); }
/* content sits above the bg */
.data-row .num,
.data-row .label { position: relative; z-index: 1; }
.data-row { transition: color 0.4s ease 1.2s; }
.data-row.in { border-color: transparent; color: var(--text); }
.data-row .num {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.data-row .num small { font-size: .5em; opacity: .8; margin-left: .1em; }
.data-row .label {
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  max-width: 22ch;
  opacity: .9;
}

/* ============== Brand Reveal (bars + text) ============== */
.brand-reveal {
  position: relative;
  min-height: 44svh;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.brand-reveal-bars {
  position: absolute; inset: 0;
  pointer-events: none;
}
.br-bar {
  position: absolute;
  left: -40%;
  width: 55%;
  height: var(--h, 2px);
  top: var(--top, 50%);
  background: var(--clr, var(--amber));
  opacity: var(--op, .6);
  mix-blend-mode: screen;
  animation: br-slide var(--spd, 24s) var(--delay, 0s) linear infinite;
  will-change: transform;
  border-radius: 999px;
}
@keyframes br-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(240vw); }
}
.brand-reveal-text {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  mix-blend-mode: screen;
}
.br-line {
  font-family: 'Outfit', sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: block;
  color: var(--cream);
  line-height: 1.1;
}
.br-line.thin {
  font-weight: 300;
  font-size: clamp(.75rem, 1.2vw, 1rem);
  opacity: .35;
  letter-spacing: .5em;
}
.br-line.main {
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 8rem);
  letter-spacing: .05em;
  opacity: .85;
}
.br-line.sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.6rem);
  letter-spacing: .25em;
  opacity: .45;
  text-transform: lowercase;
}

/* ============== Horizontal gallery ============== */
.gallery {
  position: relative;
  height: 500vh;
  background: var(--ink);
}
.gallery-sticky {
  position: sticky; top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex; align-items: center;
}
.gallery-track {
  display: flex; gap: 3rem; padding: 0 6vw;
  height: 75%;
  will-change: transform;
}
.gallery-card {
  flex: 0 0 auto;
  width: 56vw; max-width: 800px;
  height: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #2a2a27;
}
.gallery-card.tall { width: 32vw; }
.gallery-card img, .gallery-card .ph {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.gallery-card .meta {
  position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.2rem;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.gallery-card .meta b {
  display: block;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-style: normal;
  font-size: 1.4rem; letter-spacing: -.01em;
  text-transform: uppercase;
}
.gallery-intro {
  position: absolute; left: 6vw; top: 10%;
  z-index: 5;
  color: var(--cream);
  pointer-events: none;
  background: rgba(28,28,26,.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.5rem 2.2rem;
  border-radius: 12px;
}
.gallery-intro h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: .5rem;
}
.gallery-intro p {
  font-family: 'Outfit', sans-serif;
  font-size: .8rem; letter-spacing: .25em; text-transform: uppercase;
  opacity: .8;
}
.gallery-progress {
  position: absolute; left: 6vw; right: 6vw; bottom: 6%;
  height: 1px; background: rgba(240,234,224,.15);
  z-index: 4;
}
.gallery-progress > div {
  height: 100%; background: var(--amber); width: 0%;
}

/* ============== Before / After ============== */
.ba {
  background: var(--offwhite);
  padding: 8rem 2rem;
}
.ba-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem; align-items: center;
}
.ba-text h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.ba-text p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.3rem; line-height: 1.4;
  opacity: .75;
}
.ba-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background: #aaa;
}
.ba-frame > img { display: block; width: 100%; height: auto; }
.ba-after { position: absolute; inset: 0; width: 100%; height: 100%; clip-path: inset(0 0 0 50%); z-index: 2; }
.ba-after img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--cream);
  z-index: 3;
  transform: translateX(-50%);
}
.ba-handle::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}
.ba-handle::after {
  content: '◂ ▸'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 18px;
  letter-spacing: .3em;
  color: var(--ink);
  z-index: 1;
}
.ba-tag {
  position: absolute; top: 1rem;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(28,28,26,.7); color: var(--cream);
  padding: .4rem .8rem; border-radius: 999px;
  z-index: 4;
}
.ba-tag.left { left: 1rem; z-index: 1; }
.ba-tag.right { right: 1rem; z-index: 4; }
/* Tags must clip with the ruler: ANTES is on the 'before' side, DEPOIS on the 'after' side */
.ba-after .ba-tag-after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(28,28,26,.7); color: var(--cream);
  padding: .4rem .8rem; border-radius: 999px;
  z-index: 4;
}

/* ============== Products ============== */
.products {
  background: var(--cream);
  padding: 10rem 2rem;
  position: relative;
}
.products-head {
  max-width: 1400px; margin: 0 auto 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: end;
}
.products-head h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: .9;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.products-head p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem; line-height: 1.5;
  opacity: .75;
}
.products-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.pcard {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--offwhite);
  aspect-ratio: 3/4;
  opacity: 0;
  transform: translateY(60px) rotateX(8deg);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
.pcard.revealed {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.pcard.wide { grid-column: span 6; aspect-ratio: 4/3; }
.pcard.med  { grid-column: span 4; }
.pcard.sm   { grid-column: span 3; aspect-ratio: 1/1; }
.pcard.tall { grid-column: span 3; aspect-ratio: 3/5; }
.pcard img, .pcard .ph {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.pcard:hover img, .pcard:hover .ph { transform: scale(1.05); }
.pcard .label {
  position: absolute; left: 1rem; bottom: 1rem;
  background: var(--cream);
  padding: .4rem .8rem;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: .75rem; letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 4px;
}
.products-foot {
  max-width: 1400px; margin: 4rem auto 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.5rem;
  opacity: .7;
}

/* ============== About / Maysa (compact) ============== */
.about {
  background: var(--ink);
  color: var(--cream);
  padding: 12rem 2rem;
  overflow: hidden;
  position: relative;
}
.about.compact { padding: 6rem 2rem; }
.about-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  animation: aboutFloat 6s ease-in-out infinite;
}
@keyframes aboutFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-8px) rotate(.5deg); }
  66%      { transform: translateY(4px) rotate(-.3deg); }
}
.about-img img, .about-img .ph { width: 100%; height: 100%; object-fit: cover; }
.about-text .kicker {
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: .8rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.about-text h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: .9;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.55;
  opacity: .82;
  margin-bottom: 1rem;
  max-width: 50ch;
}
.about-text .signature {
  margin-top: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
}

/* ============== Final CTA (Globe + Contact) ============== */
.final-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 6rem 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(240,234,224,.06);
}
.final-cta-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.final-cta-left { text-align: center; }
.final-cta-globe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 400px;
  margin: 0 auto;
}
.final-cta-globe-wrap canvas { width: 100%; height: 100%; }
.final-cta-reach {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-top: 1.5rem;
  opacity: .85;
}

/* ============== CTA inside final-cta ============== */
.final-cta-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-quote {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.03em;
  margin-bottom: 2rem;
  text-wrap: balance;
}
.cta-quote em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}
.cta-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: 1.2rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: .9rem;
  letter-spacing: .15em; text-transform: uppercase;
  border: 0; border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s, background .25s;
}
.btn.primary { background: var(--amber); color: var(--ink); }
.btn.primary:hover { background: var(--cream); transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--cream); border: 1px solid rgba(240,234,224,.4); }
.btn.ghost:hover { background: var(--cream); color: var(--ink); transform: translateY(-2px); }
.cta-foot {
  margin-top: 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: .8rem; letter-spacing: .25em; text-transform: uppercase;
  opacity: .5;
}

/* ============== Footer ============== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 0 0 3rem;
}
.footer-stripes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  height: 14px;
}
.footer-stripes div:nth-child(1) { background: var(--amber); }
.footer-stripes div:nth-child(2) { background: var(--olive); }
.footer-stripes div:nth-child(3) { background: var(--teal); }
.footer-stripes div:nth-child(4) { background: var(--burgundy); }
.footer-stripes div:nth-child(5) { background: var(--brown); }
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 5rem 2rem 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-inner img.logo {
  height: 80px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}
.footer-inner h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: .8rem;
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 1rem; opacity: .7;
}
.footer-inner ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-inner a { color: inherit; text-decoration: none; opacity: .85; }
.footer-inner a:hover { color: var(--amber); }
.footer-inner p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  opacity: .65; line-height: 1.5;
}
.footer-bottom {
  margin-top: 4rem;
  padding: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  opacity: .5;
  border-top: 1px solid rgba(240,234,224,.1);
  max-width: 1400px;
  margin-left: auto; margin-right: auto;
}
.footer-credit {
  text-align: center;
  padding: 1.5rem 1rem 0;
  font-family: 'Outfit', sans-serif;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .3;
}
.footer-credit a {
  color: var(--amber);
  text-decoration: none;
  opacity: .8;
  transition: opacity .3s;
}
.footer-credit a:hover {
  opacity: 1;
}

/* ============== Social Proof ============== */
.proof {
  background: var(--ink);
  color: var(--cream);
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
}
.proof-head {
  max-width: 900px;
  margin: 0 auto 5rem;
  text-align: center;
}
.proof-kicker {
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: .8rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2rem;
}
.proof-head h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: .92;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.proof-head p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  opacity: .7;
  max-width: 50ch;
  margin: 0 auto;
}
.proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(240,234,224,.08);
  border-bottom: 1px solid rgba(240,234,224,.08);
}
.proof-logo-item img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .55;
  transition: opacity .3s;
}
.proof-logo-item.lg img {
  height: 68px;  /* ← ajuste aqui para booking e hotels.com */
}
.proof-logo-item img:hover { opacity: .9; }
.proof-cards {
  max-width: 1400px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.proof-card {
  background: rgba(240,234,224,.06);
  border: 1px solid rgba(240,234,224,.08);
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform .4s, border-color .4s;
}
.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,160,32,.3);
}
.proof-stars {
  color: var(--amber);
  font-size: 1.2rem;
  letter-spacing: .15em;
  margin-bottom: 1.5rem;
}
.proof-card p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  opacity: .9;
  margin-bottom: 2rem;
}
.proof-author strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
}
.proof-author span {
  font-size: .75rem;
  opacity: .5;
  letter-spacing: .05em;
}
.proof-stat {
  text-align: center;
  padding-top: 3rem;
}
.proof-stat-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1;
  color: var(--amber);
  letter-spacing: -.03em;
}
.proof-stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  opacity: .6;
  margin-top: 1rem;
}

/* ============== Canvas BG (organic) ============== */
.organic-bg {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  opacity: .35;
  mix-blend-mode: multiply;
}

/* ============== Responsive ============== */
@media (max-width: 900px) {
  .nav {
    padding: .8rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
  }
  .nav > a { order: -1; width: 100%; text-align: center; }
  .nav .logo { height: 44px; }
  .nav-links { gap: .6rem; flex-wrap: wrap; justify-content: center; }
  .nav-links a, .nav-links button { font-size: .65rem; }
  .spotify-embed { right: .5rem; left: .5rem; width: auto; }
  .wave-section { padding: 8rem 1.2rem; }
  .data { padding: 5rem 1.2rem; }
  .ba-inner { grid-template-columns: 1fr; gap: 2rem; }
  .products-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .products-grid { grid-template-columns: repeat(6, 1fr); }
  .pcard.wide, .pcard.med, .pcard.sm, .pcard.tall { grid-column: span 6; aspect-ratio: 4/3; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about.compact { padding: 4rem 1.2rem; }
  .final-cta-grid { grid-template-columns: 1fr; gap: 2rem; }
  .final-cta-globe-wrap { max-width: 260px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-card { width: 80vw; }
  .gallery-card.tall { width: 60vw; }
  .reveal-img { width: 70vw; height: 50vh; }
  .hero-tag { display: none; }
  .data-row { grid-template-columns: 1fr; gap: .5rem; }
  .data-row .label { text-align: left; }
  .proof-cards { grid-template-columns: 1fr; }
  .proof-logos { gap: 1.5rem; }
  .proof-logo-item img { height: 32px; }
  .brand-word { font-size: clamp(2.5rem, 10vw, 6rem); }
}

@media (prefers-reduced-motion: reduce) {
  .bar-track, .brand-scroll-track { animation: none !important; }
  .wave-headline .word > span { transform: none !important; }
}

/* ============== Contact Form ============== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: 1.2rem;
  width: 100%;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(240, 234, 224, 0.07);
  border: 1.5px solid rgba(240, 234, 224, 0.18);
  border-radius: 12px;
  padding: .95rem 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  color: var(--cream);
  outline: none;
  transition: border-color .25s;
  resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(240, 234, 224, 0.35);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--amber);
  background: rgba(240, 234, 224, 0.10);
}
.form-status {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  min-height: 1.2rem;
}
.form-status.ok  { color: var(--amber); }
.form-status.err { color: #e05555; }
.cta-or {
  font-family: 'Outfit', sans-serif;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .35;
  margin: .2rem 0 .8rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============== Cookie Banner ============== */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100% - 1.6rem));
  background: var(--ink);
  color: var(--cream);
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(0,0,0,.35);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  border: 1px solid rgba(240,234,224,.12);
}
.cookie-text {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
  opacity: .88;
}
.cookie-text strong { color: var(--amber); }
.cookie-actions {
  display: flex;
  gap: .5rem;
}
.cookie-btn {
  padding: .6rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s, opacity .2s;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn.primary { background: var(--amber); color: var(--ink); }
.cookie-btn.ghost   { background: transparent; color: var(--cream); border: 1px solid rgba(240,234,224,.25); }
.cookie-btn.ghost:hover { background: rgba(240,234,224,.06); }
@media (max-width: 600px) {
  .cookie-banner { bottom: .6rem; padding: 1rem; gap: .8rem; }
  .cookie-text { font-size: .78rem; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-btn { flex: 1; }
}
