/* ═══════════════════════════════════════════════════════════════
   Junior Pereira — Prótese Capilar Premium
   Aesthetic: Dark Luxury — Charcoal + Champagne
   ═══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   1. DESIGN TOKENS
────────────────────────────────────────── */
:root {
  /* Palette */
  --color-bg:          #111111;
  --color-bg-alt:      #1c1c1c;
  --color-surface:     #242424;

  /* Champagne / gold family */
  --color-champagne:   #e8d0a9;
  --color-gold:        #c9a96e;
  --color-gold-dim:    rgba(201, 169, 110, 0.18);
  --color-blush:       #f5ebe0;

  /* Text */
  --color-text:        #e2e2e2;
  --color-text-muted:  #888888;

  /* WhatsApp */
  --color-wa:          #25D366;
  --color-wa-dark:     #1da851;

  /* Fonts */
  --font-display:      'Cormorant Garamond', Georgia, serif;
  --font-body:         'Jost', system-ui, sans-serif;

  /* Type scale */
  --fs-hero:           clamp(4.5rem, 13vw, 11.5rem);
  --fs-hero-sub:       clamp(1.6rem, 4.5vw, 3.8rem);
  --fs-section:        clamp(2.2rem, 5vw, 4.2rem);
  --fs-body:           clamp(0.95rem, 1.4vw, 1.1rem);

  /* Spacing */
  --space-section:     clamp(5rem, 10vw, 9rem);
  --container-max:     1200px;
  --container-pad:     clamp(1.25rem, 5vw, 3rem);

  /* Motion */
  --ease-luxury:       cubic-bezier(0.77, 0, 0.18, 1);
  --ease-reveal:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce:       cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ──────────────────────────────────────────
   2. RESET & BASE
────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.75;
  overflow-x: hidden;
}

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

a { color: inherit; }

/* No-JS fallback: all reveal elements are visible */
.no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* ──────────────────────────────────────────
   3. UTILITIES
────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Section labels */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-section);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-champagne);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--color-gold);
}

.section-body {
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 3.5rem;
}

/* ──────────────────────────────────────────
   4. BUTTONS
────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  padding: 0.95rem 2rem;
  transition: transform 0.35s var(--ease-luxury), filter 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

/* Shine sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-luxury);
}

.btn:hover::after { transform: translateX(100%); }

/* Sizes */
.btn--sm  { padding: 0.6rem 1.25rem; font-size: 0.72rem; }
.btn--lg  { padding: 1.15rem 2.5rem; font-size: 0.9rem; }
.btn--xl  { padding: 1.35rem 3rem; font-size: 1rem; }

/* Champagne */
.btn--champagne {
  background: linear-gradient(135deg, var(--color-champagne) 0%, var(--color-gold) 100%);
  color: #0e0c08;
}
.btn--champagne:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

/* WhatsApp */
.btn--whatsapp {
  background: var(--color-wa);
  color: #fff;
}
.btn--whatsapp:hover {
  background: var(--color-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn__icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
   5. SCROLL REVEAL
────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s var(--ease-reveal),
    transform 0.75s var(--ease-reveal);
  transition-delay: var(--delay, 0s);
}

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

/* ──────────────────────────────────────────
   6. NAVBAR
────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  background: transparent;
  transition:
    background  0.5s ease,
    padding     0.5s ease,
    box-shadow  0.5s ease;
}

.navbar--solid {
  background: rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--color-gold-dim);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
  gap: 0.1rem;
}

.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-champagne);
}

.navbar__logo-tag {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.navbar__links {
  display: flex;
  gap: 2.5rem;
}

.navbar__links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text);
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}

.navbar__links a:hover {
  opacity: 1;
  color: var(--color-champagne);
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__cta   { display: none; }
}

/* ──────────────────────────────────────────
   7. HERO
────────────────────────────────────────── */
/* ──────────────────────────────────────────
   HERO — Centered Concierge
   Centered atelier composition: framed portrait
   as artwork, anchored by editorial typography.
────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: clamp(6rem, 12vh, 9rem) clamp(4rem, 8vh, 6rem);
  background:
    radial-gradient(120% 70% at 50% 0%,  rgba(201, 169, 110, 0.07) 0%, transparent 55%),
    radial-gradient(90%  60% at 50% 100%, rgba(201, 169, 110, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #0d0d0d 0%, #111111 50%, #0d0d0d 100%);
}

/* Decorative hairline rules — top & bottom anchor */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(120px, 20vw, 220px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-gold-dim) 25%,
    var(--color-gold) 50%,
    var(--color-gold-dim) 75%,
    transparent
  );
  z-index: 2;
}
.hero::before { top: 4.25rem; }
.hero::after  { bottom: 3rem; }

/* Dark vignette around subject + subtle inner gold spotlight */
.hero__halo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    /* Inner gold glow centered on subject */
    radial-gradient(38% 32% at 50% 46%, rgba(201, 169, 110, 0.18) 0%, rgba(201, 169, 110, 0.05) 45%, transparent 75%),
    /* Dark vignette pulling edges into black */
    radial-gradient(70% 65% at 50% 50%, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.55) 78%, rgba(0, 0, 0, 0.85) 100%);
  animation: heroHaloPulse 9s ease-in-out infinite alternate;
}

@keyframes heroHaloPulse {
  from { opacity: 0.85; }
  to   { opacity: 1;    }
}

/* Animated film-grain texture (preserved) */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  animation: grainDrift 0.7s steps(1) infinite;
}

@keyframes grainDrift {
  0%   { background-position:  0px   0px; }
  20%  { background-position: -40px -20px; }
  40%  { background-position:  20px  45px; }
  60%  { background-position: -65px  15px; }
  80%  { background-position:  30px -40px; }
  100% { background-position:  0px   0px; }
}

/* Centered column */
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.4rem, 3vh, 2.25rem);
  max-width: 760px;
}

/* Eyebrow with rules on both sides */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
}

.hero__eyebrow-rule {
  display: block;
  width: clamp(2rem, 6vw, 3.5rem);
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}
.hero__eyebrow-rule:last-child {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.hero__eyebrow-text {
  display: inline-block;
}

/* Headline */
.hero__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.8rem, 2vh, 1.4rem);
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1;
}

.hero__headline-main {
  display: block;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  letter-spacing: -0.015em;
  line-height: 1.02;
  background: linear-gradient(
    135deg,
    var(--color-blush)      0%,
    var(--color-champagne)  35%,
    var(--color-gold)       70%,
    var(--color-champagne) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__headline-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--color-champagne);
  letter-spacing: 0.04em;
}

.hero__headline-tag-rule {
  display: block;
  width: clamp(1.5rem, 4vw, 2.25rem);
  height: 1px;
  background: var(--color-gold-dim);
  flex-shrink: 0;
}

/* Portrait — framed atelier artwork */
.hero__portrait {
  position: relative;
  margin: clamp(0.5rem, 2vh, 1.25rem) 0 0;
  width: clamp(260px, 32vw, 420px);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__portrait-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-gold-dim);
  background: #0a0a0a;
  box-shadow:
    0 30px 80px -30px rgba(0, 0, 0, 0.85),
    0 10px 30px -10px rgba(0, 0, 0, 0.55);
}

/* Inner double-frame line */
.hero__portrait-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 169, 110, 0.22);
  pointer-events: none;
  z-index: 2;
}

/* Subtle bottom vignette so caption-like blend with frame */
.hero__portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 11, 11, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: brightness(0.96) contrast(1.03);
  animation: heroPortraitReveal 1.4s var(--ease-luxury) both;
}

@keyframes heroPortraitReveal {
  from { transform: scale(1.06); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.hero__portrait-caption {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Actions — centered */
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll hint — centered at bottom */
.hero__scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  60%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* Mobile hero adjustments */
@media (max-width: 600px) {
  .hero {
    padding-block: clamp(5rem, 14vh, 7rem) clamp(4rem, 10vh, 5.5rem);
  }
  .hero::before { top: 3.25rem; }
  .hero::after  { bottom: 2.25rem; }

  .hero__inner { gap: 1.4rem; }

  .hero__eyebrow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    white-space: normal;
  }
  .hero__eyebrow-rule { width: 1.5rem; }

  .hero__portrait {
    width: min(72vw, 280px);
  }
  .hero__portrait-frame::before { inset: 6px; }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions > * {
    width: 100%;
    justify-content: center;
  }
}

/* ──────────────────────────────────────────
   7b. HERO — SPLIT VARIANT
   Asymmetric two-column hero: copy column on the
   left, portrait + ambient brand watermark on the
   right. Modifier-based so the base centered layout
   remains available for other pages.
────────────────────────────────────────── */
.hero--split .hero__inner {
  max-width: 1280px;
  flex-direction: row;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  text-align: left;
}

/* Tone down the top/bottom hairlines in split mode — they read as
   centered furniture and clash with the asymmetric composition */
.hero--split::before,
.hero--split::after {
  width: clamp(80px, 12vw, 140px);
  opacity: 0.5;
}

/* Soften the radial halo so the monogram watermark can breathe */
.hero--split .hero__halo {
  background:
    radial-gradient(36% 30% at 68% 50%, rgba(201, 169, 110, 0.16) 0%, rgba(201, 169, 110, 0.04) 50%, transparent 78%),
    radial-gradient(80% 70% at 50% 50%, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.55) 78%, rgba(0, 0, 0, 0.88) 100%);
}

/* LEFT — copy column */
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.2rem, 2.5vh, 1.9rem);
  max-width: 36rem;
}

.hero--split .hero__eyebrow {
  white-space: normal;
}
.hero--split .hero__eyebrow .hero__eyebrow-rule {
  width: clamp(1.5rem, 3vw, 2.5rem);
}

.hero--split .hero__headline {
  align-items: flex-start;
  text-align: left;
}
.hero--split .hero__headline-main {
  font-size: clamp(2.8rem, 6.4vw, 5rem);
}
.hero--split .hero__headline-tag {
  align-self: flex-start;
}

.hero__support {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 34ch;
}
.hero__support em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--color-champagne);
}

.hero--split .hero__actions {
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Secondary CTA — ghost text link, single dominant button policy */
.hero__secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.3s, gap 0.3s var(--ease-luxury);
}
.hero__secondary:hover {
  color: var(--color-champagne);
  gap: 0.85em;
}
.hero__secondary-arrow {
  font-family: var(--font-display);
  font-size: 1.05em;
  transition: transform 0.3s var(--ease-luxury);
}
.hero__secondary:hover .hero__secondary-arrow {
  transform: translateX(2px);
}

/* RIGHT — stage column with portrait + ambient monogram watermark */
.hero__stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(420px, 60vh, 620px);
}

/* Ambient brand watermark — JP monogram bleeding behind the portrait */
.hero__mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__mark img {
  /* Source logo is square (monogram + wordmark stacked). At this scale and opacity
     the wordmark drops away into noise and the JP monogram reads as a soft seal. */
  width: clamp(260px, 38vw, 460px);
  height: auto;
  opacity: 0.085;
  filter:
    saturate(1.4)
    drop-shadow(0 0 60px rgba(201, 169, 110, 0.45))
    drop-shadow(0 0 22px rgba(201, 169, 110, 0.35));
  transform: translate(8%, -2%);
}

/* Portrait in split mode — drop the heavy double-frame, let it sit clean
   in front of the watermark */
.hero--split .hero__portrait {
  position: relative;
  z-index: 1;
  width: clamp(280px, 36vw, 440px);
  aspect-ratio: 4 / 5;
  margin: 0;
}
.hero--split .hero__portrait-frame {
  border: 1px solid var(--color-gold-dim);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.85),
    0 14px 36px -12px rgba(0, 0, 0, 0.5);
}
.hero--split .hero__portrait-frame::before {
  inset: 6px;
  border-color: rgba(201, 169, 110, 0.16);
}
/* Crop to Junior solo — source is 937×856, Junior sits in the right ~65% of the frame */
.hero--split .hero__portrait-img {
  object-position: 72% 28%;
}
.hero--split .hero__portrait-caption {
  position: absolute;
  bottom: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
}

/* Stack on mobile/tablet — portrait first so the visual hits, then copy */
@media (max-width: 900px) {
  .hero--split .hero__inner {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vh, 3rem);
    text-align: center;
  }
  .hero--split .hero__copy {
    align-items: center;
    order: 2;
    max-width: 540px;
    margin: 0 auto;
  }
  .hero--split .hero__stage {
    order: 1;
    min-height: 0;
  }
  .hero--split .hero__headline {
    align-items: center;
    text-align: center;
  }
  .hero--split .hero__headline-tag {
    align-self: center;
  }
  .hero--split .hero__actions {
    justify-content: center;
  }
  .hero__support {
    text-align: center;
    max-width: 40ch;
  }
  .hero__mark img {
    width: clamp(260px, 70vw, 380px);
    transform: translate(0, 0);
    opacity: 0.07;
  }
}

@media (max-width: 600px) {
  .hero--split .hero__portrait {
    width: min(70vw, 280px);
  }
  .hero--split .hero__portrait-caption {
    bottom: -1.4rem;
  }
  .hero--split .hero__actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .hero--split .hero__actions > .btn { justify-content: center; }
  .hero--split .hero__secondary { justify-content: center; }
}

/* ──────────────────────────────────────────
   8. METRICS — Maison Metrics inside the hero
   Horizontal stat strip integrated under the
   portrait: undulating wave, materialize blur,
   etched rules, vertical dividers, shimmer hover.
────────────────────────────────────────── */
.metrics {
  width: 100%;
  margin-block: clamp(0.75rem, 2vh, 1.5rem) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.metrics__item {
  position: relative;
  flex: 1 1 0;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  padding: 0.5rem 0.25rem;
  isolation: isolate;
  transition: transform 0.55s var(--ease-luxury);
}

/* Undulating wave — odd up, even down (gentler inside the hero column) */
.metrics__item--up       { --base-y: -1.6rem; transform: translateY(var(--base-y)); }
.metrics__item--down     { --base-y:  1.6rem; transform: translateY(var(--base-y)); }
.metrics__item--featured { --base-y: 0;       transform: translateY(var(--base-y)); }
.metrics__item:hover     { transform: translateY(calc(var(--base-y, 0px) - 3px)); }

/* Featured (centerpiece) — slightly bigger number + wider rule */
.metrics__item--featured .metrics__stat { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.metrics__item--featured .metrics__rule { max-width: clamp(55px, 7.5vw, 90px); }
.metrics__item--featured.is-visible .metrics__rule { width: clamp(55px, 7.5vw, 90px); }

/* Hover halo bloom */
.metrics__item::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 140%;
  aspect-ratio: 1.5;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.18) 0%, rgba(201, 169, 110, 0) 70%);
  opacity: 0;
  transition: opacity 0.7s var(--ease-luxury);
  pointer-events: none;
  z-index: -1;
}
.metrics__item:hover::before { opacity: 1; }

/* Vertical divider between stats — scaleY in after reveals */
.metrics__divider {
  display: block;
  width: 1px;
  height: clamp(42px, 6.5vh, 64px);
  flex-shrink: 0;
  background: linear-gradient(180deg, transparent 0%, var(--color-gold-dim) 18%, var(--color-gold-dim) 82%, transparent 100%);
  opacity: 0.7;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.9s var(--ease-luxury);
}
/* Stagger divider reveal between adjacent stats — each divider follows its preceding stat */
.metrics__divider:nth-of-type(1) { transition-delay: 0.25s; }
.metrics__divider:nth-of-type(2) { transition-delay: 0.42s; }
.metrics__divider:nth-of-type(3) { transition-delay: 0.59s; }
.metrics__item.is-visible + .metrics__divider { transform: scaleY(1); }

/* Big number — sized to fit hero's 760px content column */
.metrics__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.04em;
  line-height: 0.92;
  font-family: var(--font-display);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.metrics__minus {
  color: var(--color-gold);
  font-weight: 300;
  margin-right: 0.05em;
  font-variant-numeric: tabular-nums;
}

/* Gradient-fill number with shimmer-on-hover */
.metrics__number {
  display: inline-block;
  background: linear-gradient(
    100deg,
    var(--color-gold)        0%,
    var(--color-champagne)  20%,
    var(--color-blush)      45%,
    #fdf6e9                 50%,
    var(--color-blush)      55%,
    var(--color-champagne)  80%,
    var(--color-gold)      100%
  );
  background-size: 250% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 1.4s var(--ease-luxury);
}
.metrics__item:hover .metrics__number { background-position: 0% 50%; }

.metrics__suffix {
  font-family: var(--font-display);
  font-size: 0.4em;
  font-weight: 300;
  color: var(--color-gold);
  align-self: flex-start;
  margin-top: 0.32em;
  margin-left: 0.05em;
}
/* Wide text suffix ("anos") needs different sizing */
.metrics__suffix--text {
  font-size: 0.32em;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  margin-left: 0.08em;
  align-self: flex-end;
  margin-bottom: 0.22em;
  margin-top: 0;
}

/* Etched gold rule under number */
.metrics__rule {
  display: block;
  height: 1px;
  width: 0;
  max-width: clamp(45px, 6vw, 70px);
  background: linear-gradient(90deg, transparent, var(--color-gold-dim) 18%, var(--color-gold) 50%, var(--color-gold-dim) 82%, transparent);
  transition: width 1.3s var(--ease-reveal);
  transition-delay: calc(var(--delay, 0s) + 0.55s);
}
.metrics__item.is-visible .metrics__rule {
  width: clamp(45px, 6vw, 70px);
}

.metrics__label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.85;
  line-height: 1.6;
}

/* Materialize blur reveal — 26px → 0 over 1s, with the per-item stagger delay */
.metrics__item .metrics__stat {
  filter: blur(26px);
  opacity: 0;
  transition:
    filter 1s var(--ease-luxury),
    opacity 1s var(--ease-luxury);
  transition-delay: var(--delay, 0s);
}
.metrics__item.is-visible .metrics__stat {
  filter: blur(0);
  opacity: 1;
}

.metrics__item .metrics__label {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.7s var(--ease-luxury),
    transform 0.7s var(--ease-luxury);
  transition-delay: calc(var(--delay, 0s) + 0.85s);
}
.metrics__item.is-visible .metrics__label {
  opacity: 0.85;
  transform: translateY(0);
}

/* Tablet — flatten wave a touch, slightly smaller numbers */
@media (max-width: 1024px) {
  .metrics__item--up   { --base-y: -1rem; }
  .metrics__item--down { --base-y:  1rem; }
  .metrics__stat       { font-size: clamp(1.8rem, 4vw, 2.6rem); }
  .metrics__item--featured .metrics__stat { font-size: clamp(2.1rem, 4.6vw, 3.1rem); }
  .metrics__divider    { height: clamp(36px, 5.5vh, 54px); }
}

/* Mobile — wave flattens, strip stacks vertically (3 items don't fit 2x2 cleanly) */
@media (max-width: 700px) {
  .metrics {
    flex-direction: column;
    gap: 1.25rem;
    margin-block: 1rem 0;
  }

  .metrics__item,
  .metrics__item--up,
  .metrics__item--down,
  .metrics__item--featured {
    --base-y: 0;
    transform: none;
    width: 100%;
    max-width: 280px;
  }
  .metrics__item:hover { transform: translateY(-3px); }

  /* Hide vertical dividers on mobile — the column rhythm reads on its own */
  .metrics__divider { display: none; }

  .metrics__stat  { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .metrics__item--featured .metrics__stat { font-size: clamp(2.2rem, 9vw, 3rem); }
  .metrics__label { font-size: 0.5rem; letter-spacing: 0.26em; }
}

/* ──────────────────────────────────────────
   8b. TRUST STRIP — metrics relocated below the hero.
   Thin band with gold hairlines top + bottom, sits
   between the hero and the antes/depois gallery.
────────────────────────────────────────── */
.trust-strip {
  padding: clamp(2.25rem, 5vw, 3.75rem) 0;
  background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
  border-top: 1px solid var(--color-gold-dim);
  border-bottom: 1px solid var(--color-gold-dim);
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.trust-strip .metrics {
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ──────────────────────────────────────────
   9. GALLERY
────────────────────────────────────────── */
.gallery {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 800px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

/* Each card */
.gallery__card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  cursor: pointer;
}

/* Wrapper holds both faces and clips the slide animation */
.gallery__card-inner {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  overflow: hidden;
  transition: border-color 0.4s;
}

@media (hover: hover) {
  .gallery__card:hover .gallery__card-inner {
    border-color: rgba(201, 169, 110, 0.35);
  }
}

/* Two faces — both flat, swapped via slide + fade (no 3D, no mirror risk) */
.gallery__before,
.gallery__after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition:
    opacity 0.65s var(--ease-luxury),
    transform 0.65s var(--ease-luxury);
}

/* Before — resting state */
.gallery__before {
  background: linear-gradient(
    155deg,
    #2b2621 0%,
    #1d1814 45%,
    #111111 100%
  );
  opacity: 1;
  transform: translateX(0);
}

/* Different subtle shade per card */
.gallery__card:nth-child(2) .gallery__before {
  background: linear-gradient(155deg, #252420 0%, #191613 45%, #111 100%);
}
.gallery__card:nth-child(3) .gallery__before {
  background: linear-gradient(155deg, #252220 0%, #181514 45%, #0f0f0f 100%);
}

/* After — starts off-screen right, slides in on reveal */
.gallery__after {
  background: linear-gradient(
    155deg,
    #3e2e18 0%,
    #281d0c 50%,
    #1a1208 100%
  );
  opacity: 0;
  transform: translateX(22%);
}

.gallery__card:nth-child(2) .gallery__after {
  background: linear-gradient(155deg, #3a2b15 0%, #251a0a 50%, #171006 100%);
}
.gallery__card:nth-child(3) .gallery__after {
  background: linear-gradient(155deg, #3c2e19 0%, #271e0d 50%, #191208 100%);
}

/* Toggled state — before slides out left, after slides in to centre */
.gallery__card.is-revealed .gallery__before {
  opacity: 0;
  transform: translateX(-12%);
}
.gallery__card.is-revealed .gallery__after {
  opacity: 1;
  transform: translateX(0);
}

/* Real image fills the before/after panel, sits behind the label */
.gallery__img,
.gallery__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Placeholder labels inside each state */
.gallery__placeholder-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 190, 175, 0.35);
  font-style: italic;
}

.gallery__placeholder-label--after {
  color: rgba(201, 169, 110, 0.55);
}

/* Hint row at bottom of card */
.gallery__hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s;
}

.gallery__card.is-revealed .gallery__hint {
  opacity: 0;
}

.gallery__hint-before { color: rgba(226, 226, 226, 0.5); }
.gallery__hint-sep    { color: var(--color-gold); }
.gallery__hint-after  { color: var(--color-gold); }

/* Card-level interaction primitives — audit-driven */
.gallery__card {
  touch-action: manipulation;             /* tap-delay: kill 300ms iOS delay */
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.gallery__card:active { transform: scale(0.985); transition: transform 0.1s ease-out; }
.gallery__card:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

/* Toggle indicator — 44x44 to meet touch-target-size */
.gallery__toggle {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.7);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border: 1px solid var(--color-gold-dim);
  color: var(--color-gold);
  pointer-events: none;
  transition:
    background 0.4s var(--ease-luxury),
    border-color 0.4s var(--ease-luxury),
    transform 0.5s var(--ease-luxury),
    color 0.4s var(--ease-luxury);
}
.gallery__toggle svg { width: 20px; height: 20px; }

/* Revealed / hover: rotate + brighten — clear state-clarity */
.gallery__card.is-revealed .gallery__toggle,
.gallery__card:hover .gallery__toggle {
  background: rgba(201, 169, 110, 0.18);
  border-color: var(--color-gold);
  color: var(--color-champagne);
  transform: rotate(180deg);
}

.gallery__cta {
  text-align: center;
  margin-top: 0.5rem;
}

/* ──────────────────────────────────────────
   10. ABOUT
────────────────────────────────────────── */
.about {
  padding: var(--space-section) 0;
  background: var(--color-bg-alt);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about__grid            { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual          { order: -1; }
  .about__visual          { max-width: 420px; margin-inline: auto; }
}

/* Visual / portrait side */
.about__visual {
  position: relative;
}

.about__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background-image: url('JP-photo.png');
  background-size: cover;
  background-position: center top;
}

/* Decorative offset border */
.about__portrait-frame {
  position: absolute;
  inset: -1.25rem 1.25rem 1.25rem -1.25rem;
  border: 1px solid rgba(201, 169, 110, 0.25);
  pointer-events: none;
  z-index: -1;
}

/* Floating badge */
.about__visual-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--color-gold);
  color: #0e0c08;
  padding: 1rem 1.25rem;
  text-align: center;
  line-height: 1.2;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.about__badge-txt {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Copy side */
.about__text {
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.85;
}

.about__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.about__features li::before {
  content: '';
  flex-shrink: 0;
  width: 1.5rem;
  height: 1px;
  background: var(--color-gold);
}

/* ──────────────────────────────────────────
   11. CTA BANNER
────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: var(--space-section) 0;
  background: var(--color-bg);
  overflow: hidden;
  text-align: center;
}

/* Ambient gold glow */
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 55% at 50% 50%,
    rgba(201, 169, 110, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Decorative diagonal lines */
.cta-banner__line {
  position: absolute;
  pointer-events: none;
  background: linear-gradient(to right, transparent, var(--color-gold-dim), transparent);
  height: 1px;
  width: 100%;
}

.cta-banner__line--1 { top: 20%; transform: rotate(-2deg); }
.cta-banner__line--2 { bottom: 20%; transform: rotate(2deg); }

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.cta-banner__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--color-champagne);
  margin-bottom: 1.5rem;
}

.cta-banner__headline em {
  font-style: italic;
  color: var(--color-gold);
}

.cta-banner__sub {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

/* ──────────────────────────────────────────
   11b. CTA BANNER — MERGED VARIANT
   Bridge cards + final CTA share one section,
   stitched by a centered "ou fale direto" divider,
   stamped by a single ambient JP monogram watermark.
────────────────────────────────────────── */
.cta-banner--merged {
  text-align: center;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

/* Ambient brand watermark — JP monogram, very subtle, behind everything */
.cta-banner__mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-banner__mark img {
  width: clamp(420px, 56vw, 760px);
  height: auto;
  opacity: 0.045;
  filter:
    saturate(1.3)
    drop-shadow(0 0 80px rgba(201, 169, 110, 0.5));
}

/* Top half — bridge cards block */
.cta-banner__bridge {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner--merged .bridge {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: left;
}

/* Centered "ou fale direto" divider between bridge and final CTA */
.cta-banner__divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin: clamp(3.5rem, 7vw, 5.5rem) auto;
  max-width: 540px;
}

.cta-banner__divider-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-dim) 30%, var(--color-gold-dim) 70%, transparent);
}

.cta-banner__divider-text {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
}

/* Bottom half — final CTA */
.cta-banner__final {
  position: relative;
  z-index: 1;
}

/* Slight tightening of the inner spacing now that the section is taller */
.cta-banner--merged .cta-banner__eyebrow {
  margin-bottom: 1.25rem;
}
.cta-banner--merged .cta-banner__headline {
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5.8vw, 4.8rem);
}
.cta-banner--merged .cta-banner__sub {
  margin-bottom: 2.5rem;
}

@media (max-width: 700px) {
  .cta-banner__mark img {
    width: clamp(320px, 90vw, 480px);
    opacity: 0.05;
  }
  .cta-banner__divider {
    margin-block: clamp(2.5rem, 7vh, 4rem);
  }
  .cta-banner__divider-rule {
    /* Compress the rules on narrow viewports so the label has room */
    max-width: 60px;
  }
}

/* ──────────────────────────────────────────
   12. FLOATING WHATSAPP
────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--color-wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  /* Hidden until hero exits viewport */
  opacity: 0;
  transform: scale(0.6) translateY(12px);
  pointer-events: none;
  transition:
    opacity  0.45s var(--ease-bounce),
    transform 0.45s var(--ease-bounce),
    box-shadow 0.3s;
}

.whatsapp-float.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__icon {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
}

/* Pulse ring */
.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-wa);
  opacity: 0;
  animation: waPulse 2.8s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ──────────────────────────────────────────
   13. FOOTER
────────────────────────────────────────── */
.footer {
  background: #090909;
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-champagne);
  letter-spacing: 0.03em;
}

.footer__tagline {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--color-champagne); }

.footer__legal {
  font-size: 0.68rem;
  color: rgba(136, 136, 136, 0.45);
  text-align: right;
}

@media (max-width: 700px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .footer__links    { justify-content: center; flex-wrap: wrap; }
  .footer__legal    { text-align: center; }
}

/* ──────────────────────────────────────────
   14. REDUCED MOTION
────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__grain          { animation: none; }
  .hero__halo           { animation: none; }
  .hero__portrait-img   { animation: none; }
  .whatsapp-float__pulse { animation: none; }
  .gallery__before,
  .gallery__after       { transition: none !important; }

  .metrics__item,
  .metrics__item--up,
  .metrics__item--down { transform: none !important; }
  .metrics__item .metrics__stat,
  .metrics__item .metrics__label,
  .metrics__item .metrics__rule,
  .metrics__divider { transition-duration: 0.01ms !important; }
  .metrics__item .metrics__stat { filter: none !important; opacity: 1 !important; }

  .reveal {
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE SITE EXTENSIONS — added for the 6-page architecture
   Sections 15+ extend the design system without modifying the
   single-page demo styles above.
   ═══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   15. NAVBAR — ACTIVE STATE + MOBILE DRAWER
────────────────────────────────────────── */
.navbar__links a.is-active,
.navbar__mobile  a.is-active {
  color: var(--color-champagne);
  opacity: 1;
}

.navbar__links a.is-active::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  margin-top: 0.35rem;
}

.navbar__toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-champagne);
  transition: transform 0.3s var(--ease-luxury), opacity 0.3s;
  margin-left: auto;
}

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

.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem var(--container-pad) 2rem;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-gold-dim);
}

.navbar__mobile a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--color-text);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.navbar__mobile a:last-of-type {
  border-bottom: none;
}

.navbar__mobile-cta {
  margin-top: 1rem;
  justify-content: center;
}

.navbar.is-open .navbar__mobile {
  display: flex;
}

@media (max-width: 768px) {
  .navbar__toggle { display: flex; }
}

@media (min-width: 769px) {
  .navbar__mobile,
  .navbar__toggle { display: none !important; }
}

/* ──────────────────────────────────────────
   16. SECTION UTILITY
────────────────────────────────────────── */
.section {
  padding: var(--space-section) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--tight {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

/* ──────────────────────────────────────────
   17. PAGE HERO (inner pages — shorter than .hero)
────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(3.5rem, 8vw, 6rem);
  background: var(--color-bg);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 70% at 80% 0%,
    rgba(201, 169, 110, 0.10) 0%,
    transparent 60%
  );
  z-index: -1;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold-dim), transparent);
}

.page-hero__inner {
  max-width: 880px;
}

.page-hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-gold-dim);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.page-hero__location::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.18);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-champagne);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  max-width: 18ch;
}

.page-hero__title em {
  font-style: italic;
  color: var(--color-gold);
}

.page-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(226, 226, 226, 0.75);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 56ch;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ──────────────────────────────────────────
   18. BREADCRUMB
────────────────────────────────────────── */
.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.breadcrumb__list a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb__list a:hover {
  color: var(--color-champagne);
}

.breadcrumb__list li[aria-current="page"] {
  color: var(--color-gold);
}

.breadcrumb__list li + li::before {
  content: '/';
  color: var(--color-gold);
  margin-right: 0.5rem;
  opacity: 0.6;
}

/* ──────────────────────────────────────────
   19. ABOUT-Q — single Q&A bio block on the homepage.
   Replaces both the legacy founder card and the
   off-page FAQ teaser. One question ("Quem é Junior
   Pereira?") with the bio as its answer + action stack.
────────────────────────────────────────── */
.about-q {
  position: relative;
  max-width: 820px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: clamp(2rem, 4.5vw, 3.5rem) clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--color-gold-dim);
  border-left: 3px solid var(--color-gold);
  background: linear-gradient(
    180deg,
    rgba(28, 28, 28, 0.55) 0%,
    rgba(18, 18, 18, 0.55) 100%
  );
  box-shadow:
    0 30px 70px -30px rgba(0, 0, 0, 0.7),
    0 12px 30px -12px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.about-q__q {
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  line-height: 1.25;
  color: var(--color-champagne);
  letter-spacing: -0.005em;
}

.about-q__q-mark {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.62em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  transform: translateY(-0.15em);
}

.about-q__a {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.4rem);
}

.about-q__lede {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.85;
  color: var(--color-text);
}

.about-q__lede strong {
  color: var(--color-champagne);
  font-weight: 500;
}

.about-q__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.about-q__facts li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.about-q__facts li::before {
  content: '✦';
  flex-shrink: 0;
  color: var(--color-gold);
  font-size: 0.7em;
  line-height: 1.4;
}

.about-q__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--color-gold-dim);
}

@media (max-width: 600px) {
  .about-q {
    padding: clamp(1.5rem, 5vw, 2rem) clamp(1.25rem, 4vw, 1.75rem);
  }
  .about-q__q {
    font-size: clamp(1.3rem, 5.5vw, 1.7rem);
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }
  .about-q__q-mark {
    transform: none;
  }
  .about-q__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .about-q__actions .btn { justify-content: center; }
  .about-q__actions .hero__secondary {
    justify-content: center;
    text-align: center;
  }
}

/* ──────────────────────────────────────────
   19b. FAQ BLOCK (baked into Próximos passos)
────────────────────────────────────────── */
.faq-block {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2.25rem, 5vw, 3.25rem);
  border-top: 1px solid var(--color-gold-dim);
}

.faq-block__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.faq-block__eyebrow-rule {
  display: block;
  width: clamp(2rem, 5vw, 3rem);
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}
.faq-block__eyebrow-rule:last-child {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.faq-block__cta {
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

/* ──────────────────────────────────────────
   20. STEPS CARD (Como funciona — homepage)
   Timeline-card port: connecting line + dots
   + badges + step copy.
────────────────────────────────────────── */
.steps-card {
  position: relative;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--color-gold-dim);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(28, 28, 28, 0.92) 0%,
    rgba(18, 18, 18, 0.92) 100%
  );
  box-shadow:
    0 30px 70px -25px rgba(0, 0, 0, 0.6),
    0 12px 30px -12px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    box-shadow 0.45s var(--ease-luxury),
    transform  0.45s var(--ease-luxury);
}

.steps-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 40px 90px -25px rgba(0, 0, 0, 0.7),
    0 16px 36px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Subtle hairline rule across top of card */
.steps-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(70px, 11vw, 130px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 50%, transparent);
}

.steps-card__timeline {
  position: relative;
}

/* Horizontal connecting line behind dots */
.steps-card__line {
  position: absolute;
  top: 0.5rem;          /* aligns with vertical center of 16px dot */
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-gold-dim) 8%,
    var(--color-gold-dim) 92%,
    transparent 100%
  );
  z-index: 0;
}

.steps-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  position: relative;
  z-index: 1;
}

.steps-card__item {
  position: relative;
  padding-top: 2.75rem;   /* room above for dot */
  text-align: center;
}

/* Timeline dot */
.steps-card__dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-gold);
  transform: translateX(-50%);
  box-shadow:
    0 0 0 5px var(--color-bg-alt),                 /* mask the line at the dot */
    0 0 0 6px var(--color-gold-dim),               /* outer ring */
    0 0 22px rgba(201, 169, 110, 0.45);            /* glow */
  transition:
    transform  0.4s var(--ease-luxury),
    box-shadow 0.4s var(--ease-luxury);
}

.steps-card__dot::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #0d0d0d;
}

.steps-card__item:hover .steps-card__dot {
  transform: translateX(-50%) scale(1.25);
  box-shadow:
    0 0 0 5px var(--color-bg-alt),
    0 0 0 6px var(--color-gold),
    0 0 28px rgba(201, 169, 110, 0.7);
}

/* Badge — quarter-style pill above the title */
.steps-card__badge {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: 0.4rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--color-gold-dim);
  border-radius: 999px;
}

.steps-card__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--color-champagne);
}

.steps-card__body {
  margin: 0 auto;
  max-width: 32ch;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(226, 226, 226, 0.7);
}

/* Mobile — vertical timeline (line runs top-to-bottom on left edge) */
@media (max-width: 800px) {
  .steps-card { padding: 1.75rem 1.5rem; }

  .steps-card__line {
    top: 1.5rem;
    bottom: 1.5rem;
    left: 11px;          /* aligns with dot center */
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      transparent 0%,
      var(--color-gold-dim) 6%,
      var(--color-gold-dim) 94%,
      transparent 100%
    );
  }

  .steps-card__list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .steps-card__item {
    text-align: left;
    padding: 0.5rem 0 2.25rem 2.5rem;
  }
  .steps-card__item:last-child { padding-bottom: 0; }

  .steps-card__dot {
    top: 1.05rem;
    left: 11px;
  }

  .steps-card__badge { margin: 0 0 0.65rem; }
  .steps-card__title { margin: 0 0 0.5rem; }
  .steps-card__body  { max-width: none; margin: 0; }
}

/* ──────────────────────────────────────────
   21. PROCESS TIMELINE (pillar)
────────────────────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold-dim) 15%, var(--color-gold-dim) 85%, transparent);
  z-index: 0;
}

.timeline__step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.timeline__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-champagne);
  margin-bottom: 0.5rem;
}

.timeline__body {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 800px) {
  .timeline { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .timeline::before { display: none; }
}
@media (max-width: 480px) {
  .timeline { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────
   22. STICKY TOC (pillar only)
────────────────────────────────────────── */
.pillar-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.toc {
  position: sticky;
  top: 100px;
  font-size: 0.75rem;
  line-height: 1.8;
  padding: 1.5rem 0 1.5rem 1rem;
  border-left: 1px solid var(--color-gold-dim);
}

.toc__heading {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc__list a {
  text-decoration: none;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  transition: color 0.3s, padding 0.3s;
}

.toc__list a:hover {
  color: var(--color-champagne);
}

.toc__list a.is-active {
  color: var(--color-champagne);
  padding-left: 0.6rem;
  position: relative;
}

.toc__list a.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 12px;
  background: var(--color-gold);
}

@media (max-width: 1000px) {
  .pillar-layout { grid-template-columns: 1fr; }
  .toc { display: none; }
}

/* ──────────────────────────────────────────
   23. RICH PROSE BLOCK (long-form pillar copy)
────────────────────────────────────────── */
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-champagne);
  margin: 3rem 0 1.25rem;
  scroll-margin-top: 90px;
}

.prose h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-champagne);
  margin: 2rem 0 0.75rem;
}

.prose p {
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  max-width: 68ch;
}

.prose ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.prose ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.prose ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--color-gold);
  font-size: 0.85em;
}

.prose strong {
  color: var(--color-champagne);
  font-weight: 500;
}

.prose a {
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold-dim);
  transition: border-color 0.3s, color 0.3s;
}

.prose a:hover {
  color: var(--color-champagne);
  border-color: var(--color-champagne);
}

/* Pull-quote */
.prose blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--color-champagne);
  border-left: 2px solid var(--color-gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
  max-width: 56ch;
}

/* ──────────────────────────────────────────
   24. TESTIMONIALS
────────────────────────────────────────── */
/* Wall-of-love: 3 stacked columns */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}

.testimonials__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-gold-dim);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.4s, transform 0.4s var(--ease-luxury);
}

.testimonial:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-2px);
}

/* Header row: avatar initial + name + stars */
.testimonial__header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--color-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  flex-shrink: 0;
}

.testimonial__name {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-champagne);
  line-height: 1.2;
}

.testimonial__stars {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-top: 0.2rem;
}

/* Quote body */
.testimonial__quote {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: normal;
  color: var(--color-text);
  line-height: 1.7;
  border-top: 1px solid var(--color-gold-dim);
  padding-top: 0.85rem;
  margin: 0;
}

@media (max-width: 900px) {
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .testimonials { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ──────────────────────────────────────────
   25. REELS GRID (self-hosted MP4)
────────────────────────────────────────── */
.reels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.reels--3 { grid-template-columns: repeat(3, 1fr); }
.reels--2 { grid-template-columns: repeat(2, 1fr); max-width: 640px; }

.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--color-gold-dim);
  background: var(--color-bg-alt);
  cursor: pointer;
  isolation: isolate;
  transition: border-color 0.4s, transform 0.4s var(--ease-luxury);
}

.reel:hover {
  border-color: rgba(201, 169, 110, 0.5);
  transform: translateY(-3px);
}

.reel__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.5s;
}

.reel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: none;
}

.reel.is-playing .reel__poster {
  opacity: 0;
}

.reel.is-playing .reel__video {
  display: block;
}

.reel.is-playing .reel__overlay,
.reel.is-playing .reel__play {
  opacity: 0;
}

.reel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s;
}

.reel__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.95);
  color: #0e0c08;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-luxury);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.reel:hover .reel__play {
  transform: translate(-50%, -50%) scale(1.1);
}

.reel__play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.reel__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1rem;
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(232, 208, 169, 0.9);
  pointer-events: none;
  transition: opacity 0.3s;
}

.reel.is-playing .reel__caption {
  opacity: 0;
}

@media (max-width: 900px) {
  .reels { grid-template-columns: repeat(2, 1fr); }
  .reels--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .reels,
  .reels--2,
  .reels--3 { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
}

/* ──────────────────────────────────────────
   26. FAQ ACCORDION (native <details>)
────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
}

.faq__group + .faq__group {
  margin-top: 2.5rem;
}

.faq__group-title {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

details.faq__item {
  border-top: 1px solid var(--color-gold-dim);
}

details.faq__item:last-child {
  border-bottom: 1px solid var(--color-gold-dim);
}

details.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 2.5rem 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-champagne);
  position: relative;
  line-height: 1.4;
  transition: color 0.3s;
}

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

details.faq__item summary::after {
  content: '';
  position: absolute;
  right: 0.4rem;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.3s var(--ease-luxury);
}

details.faq__item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

details.faq__item summary:hover {
  color: var(--color-gold);
}

.faq__answer {
  padding: 0 0 1.75rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  max-width: 65ch;
}

.faq__answer p + p {
  margin-top: 0.85rem;
}

.faq__answer a {
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold-dim);
}

/* ──────────────────────────────────────────
   27. SERVICE AREA (location list)
────────────────────────────────────────── */
.service-area {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.service-area__cities {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.5rem;
}

.service-area__cities li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.service-area__cities li::before {
  content: '⟶';
  color: var(--color-gold);
  margin-right: 0.6rem;
  font-size: 0.75em;
  opacity: 0.7;
}

.service-area__cities li strong {
  color: var(--color-champagne);
  font-weight: 500;
  margin-right: auto;
}

.service-area__cities .km {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.service-area__map {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1f1c17 0%, #161310 60%, #0e0c0a 100%);
  border: 1px solid var(--color-gold-dim);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  overflow: hidden;
}

.service-area__map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.18) 0%, transparent 5%),
    radial-gradient(circle at 50% 50%, transparent 5%, rgba(201, 169, 110, 0.06) 6%, transparent 7%),
    radial-gradient(circle at 50% 50%, transparent 12%, rgba(201, 169, 110, 0.04) 13%, transparent 14%),
    radial-gradient(circle at 50% 50%, transparent 22%, rgba(201, 169, 110, 0.03) 23%, transparent 24%);
}

.service-area__pin {
  position: relative;
  z-index: 1;
  text-align: center;
}

.service-area__pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-gold);
  margin: 0 auto 0.75rem;
  box-shadow: 0 0 0 6px rgba(201, 169, 110, 0.18), 0 0 20px rgba(201, 169, 110, 0.4);
}

.service-area__pin-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-champagne);
}

.service-area__pin-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.3rem;
  font-style: normal;
}

@media (max-width: 800px) {
  .service-area { grid-template-columns: 1fr; }
  .service-area__cities { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────
   28. PRICE / QUANTO-CUSTA PAGE
────────────────────────────────────────── */
.price-answer {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  border: 1px solid var(--color-gold-dim);
  border-left: 3px solid var(--color-gold);
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  border-radius: 2px;
  max-width: 760px;
}

.price-answer__label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.price-answer__body {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--color-champagne);
  font-style: italic;
}

.price-factors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.price-factor {
  padding: 1.5rem 1.5rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-gold-dim);
  border-radius: 2px;
}

.price-factor__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-gold);
  font-style: italic;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-factor__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-champagne);
  margin-bottom: 0.5rem;
}

.price-factor__body {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-gold-dim);
  color: var(--color-text-muted);
  vertical-align: top;
}

.compare-table th {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-champagne);
  text-transform: none;
  letter-spacing: 0;
  background: var(--color-bg-alt);
}

.compare-table th:first-child {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

.compare-table td:first-child {
  color: var(--color-champagne);
  font-weight: 500;
}

.compare-table tr:last-child td { border-bottom: none; }

@media (max-width: 720px) {
  .compare-table thead { display: none; }
  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td { display: block; width: 100%; }
  .compare-table tr {
    margin-bottom: 1rem;
    border: 1px solid var(--color-gold-dim);
    padding: 0.5rem 1rem;
  }
  .compare-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
  }
}

/* ──────────────────────────────────────────
   29. PROFILES (masculina page — perfis típicos)
────────────────────────────────────────── */
.profiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.profile-card {
  padding: 2rem 1.75rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-gold-dim);
  border-radius: 2px;
  position: relative;
  transition: border-color 0.4s, transform 0.4s var(--ease-luxury);
}

.profile-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-3px);
}

.profile-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
}

.profile-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-champagne);
  margin-bottom: 0.65rem;
}

.profile-card__body {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

@media (max-width: 800px) {
  .profiles { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ──────────────────────────────────────────
   30. BRIDGE CARDS (homepage → service pages)
────────────────────────────────────────── */
.bridge {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.bridge-card {
  display: block;
  padding: 2.5rem 2rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-gold-dim);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-luxury);
  isolation: isolate;
}

.bridge-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(201, 169, 110, 0.1) 0%, transparent 60%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.bridge-card:hover {
  border-color: rgba(201, 169, 110, 0.5);
  transform: translateY(-3px);
}

.bridge-card:hover::before { opacity: 1; }

.bridge-card__label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.bridge-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--color-champagne);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.bridge-card__title em {
  font-style: italic;
  color: var(--color-gold);
}

.bridge-card__body {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.bridge-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

.bridge-card__arrow::after {
  content: '→';
  transition: transform 0.3s var(--ease-luxury);
  font-size: 1.1em;
}

.bridge-card:hover .bridge-card__arrow::after {
  transform: translateX(4px);
}

.bridge-card__links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.bridge-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s, gap 0.3s var(--ease-luxury);
}

.bridge-card__link::after {
  content: '→';
  font-size: 1.1em;
  transition: transform 0.3s var(--ease-luxury);
}

.bridge-card__link:hover {
  color: var(--color-champagne);
  gap: 0.9em;
}

.bridge-card__link:hover::after {
  transform: translateX(4px);
}

@media (max-width: 700px) {
  .bridge { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────
   32. GALLERY VARIANT — page-level (extends .gallery from §9)
────────────────────────────────────────── */
.gallery--inline {
  padding: 0;
}
.gallery--inline .gallery__grid {
  margin-bottom: 0;
}

/* ──────────────────────────────────────────
   33. FOOTER — extended 4-column grid
────────────────────────────────────────── */
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer__pitch {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 0.85rem;
  max-width: 38ch;
}

.footer__heading {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.88rem;
}

.footer__list a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__list a:hover {
  color: var(--color-champagne);
}

.footer__list address {
  font-style: normal;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer__hours {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  font-size: 0.7rem;
  color: rgba(136, 136, 136, 0.55);
  letter-spacing: 0.04em;
}

.footer__credit {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.65rem;
  color: var(--color-gold);
  opacity: 0.7;
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ──────────────────────────────────────────
   34. PRINT (premium touch)
────────────────────────────────────────── */
@media print {
  .navbar,
  .whatsapp-float,
  .hero__scroll-hint,
  .reel,
  .toc,
  .navbar__toggle,
  .navbar__mobile,
  .cta-banner { display: none !important; }

  body { background: #fff; color: #111; font-size: 12pt; line-height: 1.55; }
  a { color: #111; text-decoration: underline; }
  .section-title,
  .page-hero__title,
  .prose h2,
  .prose h3 { color: #111 !important; -webkit-text-fill-color: #111 !important; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ──────────────────────────────────────────
   35. REDUCED MOTION (additions)
────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .steps-card,
  .steps-card__dot,
  .testimonial,
  .reel,
  .profile-card,
  .bridge-card { transition: none !important; }

  .steps-card:hover,
  .steps-card__item:hover .steps-card__dot,
  .testimonial:hover,
  .reel:hover,
  .profile-card:hover,
  .bridge-card:hover { transform: none !important; }

  details.faq__item summary::after { transition: none; }
}
