/* ═══════════════════════════════════════════════
   RAPHAELA LEME — OLD MONEY · AUTORIDADE · SAÚDE
   Paleta: Preto quente + Creme + Ouro envelhecido
   Fonte: Cormorant Garamond + DM Sans
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --blk:    #0c0b09;
  --blk2:   #171512;
  --blk3:   #1e1b16;
  --cream:  #f4efe5;
  --cream2: #e9e2d5;
  --cream3: #d8cfc0;
  --gold:   #c8a96e;
  --goldd:  #a8863e;
  --goldl:  #e2cc9a;
  --white:  #faf8f4;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:  68px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--blk);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
body.loading { overflow: hidden; }
img, video { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--blk); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ══ LOADER ══ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--blk);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo-svg {
  width: 72px; height: 72px;
  animation: loaderPulse 1.2s ease-in-out;
}
@keyframes loaderPulse {
  0%   { opacity: 0; transform: translateY(12px); }
  40%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; }
}
.loader-line {
  display: block;
  height: 1px; width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderLine 1.4s 0.3s var(--ease) forwards;
}
@keyframes loaderLine {
  to { width: 120px; }
}

/* ══ CUSTOM CURSOR ══ */
#c-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
#c-ring {
  position: fixed;
  width: 28px; height: 28px;
  border: 1px solid rgba(200,169,110,0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.3s, border-color 0.3s;
}
#c-ring.big {
  width: 56px; height: 56px;
  border-color: rgba(200,169,110,0.85);
}
#c-ring.hidden { opacity: 0; }

@media (hover: none) {
  #c-dot, #c-ring { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}

/* ══ PROMO BAR ══ */
#promo-bar {
  position: relative;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 52px;
  flex-wrap: wrap;
}
#promo-bar .promo-pill {
  background: var(--blk);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
#promo-bar p {
  font-size: 0.82rem;
  color: var(--blk);
  font-weight: 500;
}
#promo-bar a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--blk);
}
#promo-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  font-size: 0.9rem; color: rgba(12,11,9,0.6);
  transition: color 0.2s;
}
#promo-close:hover { color: var(--blk); }

/* ══ NAVBAR ══ */
#nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(12,11,9,0.9);
  backdrop-filter: blur(16px);
  transition: background 0.4s;
}
#nav.light {
  background: rgba(244,239,229,0.96);
  border-bottom-color: rgba(0,0,0,0.08);
}

.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo-svg {
  width: 44px; height: 44px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-brand:hover .nav-logo-svg { opacity: 0.8; }
.nav-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
}
#nav.light .nav-name { color: var(--blk); }

.nav-links {
  display: flex; gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,239,229,0.55);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
#nav.light .nav-links a { color: rgba(12,11,9,0.5); }
#nav.light .nav-links a:hover { color: var(--goldd); }

.nav-cta {
  display: inline-block;
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.25s, color 0.25s;
  position: relative;
}
.nav-cta:hover { background: var(--gold); color: var(--blk); }

.burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* ══ HERO ══ */
#hero {
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeIn 0.8s 1.6s var(--ease) forwards;
}
.hero-eyebrow .sep { color: rgba(200,169,110,0.4); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 28px;
}
.ht-line {
  display: block;
  overflow: hidden;
}
.ht-line > * { display: block; }
.ht-line.italic { font-style: italic; }
.ht-line.gold { color: var(--gold); }

/* Animate each line */
.ht-line:nth-child(1) { animation: lineUp 0.9s 1.7s var(--ease) both; }
.ht-line:nth-child(2) { animation: lineUp 0.9s 1.85s var(--ease) both; }
.ht-line:nth-child(3) { animation: lineUp 0.9s 2.0s var(--ease) both; }
.ht-line:nth-child(4) { animation: lineUp 0.9s 2.15s var(--ease) both; }

@keyframes lineUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(244,239,229,0.6);
  max-width: 420px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeIn 0.8s 2.4s var(--ease) forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 32px;
  opacity: 0;
  animation: fadeIn 0.8s 2.6s var(--ease) forwards;
}

/* Magnetic CTA */
.btn-mag {
  display: inline-block;
  padding: 15px 38px;
  background: var(--gold);
  color: var(--blk);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  position: relative;
  box-shadow: 0 4px 20px rgba(200,169,110,0.25);
  will-change: transform;
}
.btn-mag:hover { background: var(--goldl); box-shadow: 0 8px 32px rgba(200,169,110,0.4); }
.btn-mag.light {
  background: var(--cream);
  color: var(--blk);
  box-shadow: 0 4px 20px rgba(244,239,229,0.2);
}
.btn-mag.light:hover { background: var(--white); }

.link-arr {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(244,239,229,0.5);
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s, gap 0.2s;
}
.link-arr:hover { color: var(--gold); gap: 10px; }

.hero-col-img {
  position: relative;
  overflow: hidden;
}
.hero-img-frame {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-img-frame img,
.hero-img-frame video {
  width: 100%; height: 115%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.1s linear;
  filter: brightness(0.75) contrast(1.05);
}
.hero-img-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--blk) 0%, transparent 30%),
              linear-gradient(to top, rgba(12,11,9,0.4) 0%, transparent 40%);
}
.hero-img-tag {
  position: absolute;
  bottom: 36px; right: 32px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,229,0.45);
  writing-mode: vertical-rl;
}

/* ══ MARQUEE ══ */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blk);
}
.marquee-track em {
  font-style: normal;
  color: rgba(12,11,9,0.4);
  font-size: 0.6rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══ MANIFESTO ══ */
#manifesto {
  background: var(--cream);
  padding: 130px 80px;
  text-align: center;
}
.mani-inner { max-width: 820px; margin: 0 auto; }
.mani-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--goldd);
  margin-bottom: 36px;
}
.mani-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--blk);
  margin-bottom: 36px;
}
.mani-title em { font-style: italic; color: var(--goldd); }
.mani-body {
  font-size: 1rem;
  color: rgba(12,11,9,0.55);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ══ PILARES ══ */
#pilares {
  background: var(--cream);
  padding: 0 80px 130px;
  border-top: 1px solid rgba(12,11,9,0.08);
}
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(12,11,9,0.08);
  border-top: 1px solid rgba(12,11,9,0.08);
}
.pilar-item {
  background: var(--cream);
  padding: 52px 40px;
  transition: background 0.35s;
}
.pilar-item:hover { background: var(--white); }
.pilar-num {
  display: block;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(168,134,62,0.25);
  line-height: 1;
  margin-bottom: 20px;
}
.pilar-item h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blk);
  margin-bottom: 12px;
}
.pilar-item p {
  font-size: 0.88rem;
  color: rgba(12,11,9,0.55);
  line-height: 1.75;
}

/* ══ SERVIÇOS ══ */
#servicos {
  background: var(--blk);
  padding: 120px 80px;
}
.servicos-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sec-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
}
.sec-title em { font-style: italic; color: var(--gold); }
.sec-title.light { color: var(--blk); }
.sec-label.light { color: var(--goldd); }

.servicos-list { display: flex; flex-direction: column; }
.srv-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  cursor: default;
}
.srv-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.srv-top {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  transition: padding 0.35s var(--ease);
}
.srv-item:hover .srv-top { padding: 36px 0 8px; }

.srv-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(200,169,110,0.35);
  letter-spacing: 0.1em;
  transition: color 0.3s;
  align-self: flex-start;
  padding-top: 6px;
}
.srv-item:hover .srv-num { color: var(--gold); }

.srv-title-wrap { display: flex; flex-direction: column; gap: 6px; }

.srv-top h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  transition: color 0.3s;
}
.srv-item:hover .srv-top h3 { color: var(--gold); }

.srv-tag {
  font-size: 0.82rem;
  color: rgba(244,239,229,0.38);
  font-style: italic;
  line-height: 1.4;
  transition: color 0.3s;
}
.srv-item:hover .srv-tag { color: rgba(244,239,229,0.6); }

.srv-arrow {
  font-size: 1.4rem;
  color: rgba(244,239,229,0.12);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease), color 0.3s;
  align-self: flex-start;
  padding-top: 8px;
}
.srv-item:hover .srv-arrow { transform: rotate(0deg); color: var(--gold); }

.srv-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.srv-item:hover .srv-body { grid-template-rows: 1fr; }
.srv-body > div { overflow: hidden; }
.srv-body > div { padding: 0 0 32px 104px; display: flex; align-items: flex-start; gap: 48px; flex-wrap: wrap; }

.srv-body ul {
  display: flex; flex-direction: column; gap: 10px;
  min-width: 220px;
}
.srv-body ul li {
  font-size: 0.83rem;
  color: rgba(244,239,229,0.52);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.srv-body ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold); font-size: 0.75rem;
}
.srv-cta {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,169,110,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  align-self: flex-end;
  margin-bottom: 4px;
}
.srv-cta:hover { color: var(--goldl); border-color: var(--gold); }

/* ══ PORTFÓLIO ══ */
#portfolio {
  background: var(--blk2);
  padding: 120px 80px;
}
.port-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 52px;
}
.port-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.f-btn {
  padding: 7px 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(244,239,229,0.4);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s;
}
.f-btn:hover { border-color: var(--gold); color: var(--gold); }
.f-btn.active { background: var(--gold); border-color: var(--gold); color: var(--blk); font-weight: 500; }

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gi {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--blk3);
}
.gi.wide { grid-column: span 2; aspect-ratio: 8/3; }
.gi.tall { grid-row: span 2; aspect-ratio: unset; }

.gi img, .gi video {
  transition: transform 0.7s var(--ease), filter 0.5s;
  filter: brightness(0.7) saturate(0.8);
}
.gi:hover img, .gi:hover video {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1);
}
.gi-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 52px 20px 20px;
  background: linear-gradient(to top, rgba(12,11,9,0.9) 0%, transparent 100%);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}
.gi:hover .gi-info { opacity: 1; transform: none; }
.gi-info h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}
.gi-info p {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.gi.video::after {
  content: '▶';
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  background: rgba(200,169,110,0.88);
  color: var(--blk);
  border-radius: 50%;
  font-size: 0.6rem;
  display: grid; place-items: center;
  padding-left: 2px;
}
.gi.hidden { display: none; }

/* ══ NÚMEROS ══ */
#nums {
  background: var(--cream);
  padding: 80px;
  border-top: 1px solid rgba(12,11,9,0.08);
}
.nums-inner {
  display: flex; align-items: center; justify-content: center;
  max-width: 1000px; margin: 0 auto;
}
.num-block {
  flex: 1; text-align: center; padding: 24px 16px;
}
.num-block strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--goldd);
  line-height: 1;
  margin-bottom: 8px;
}
.num-block span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(12,11,9,0.45);
  line-height: 1.5;
}
.num-sep {
  width: 1px; height: 60px;
  background: rgba(12,11,9,0.12);
}

/* ══ PROCESSO ══ */
#processo {
  background: var(--cream);
  padding: 80px 80px 130px;
  border-top: 1px solid rgba(12,11,9,0.08);
}
.proc-header {
  max-width: 480px;
  margin-bottom: 72px;
}
.proc-header .sec-label { color: var(--goldd); }
.proc-header .sec-title { color: var(--blk); }
.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(12,11,9,0.08);
  border: 1px solid rgba(12,11,9,0.08);
}
.proc-step {
  background: var(--cream);
  padding: 40px 32px;
  transition: background 0.3s;
}
.proc-step:hover { background: var(--white); }
.ps-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(168,134,62,0.2);
  line-height: 1;
  margin-bottom: 24px;
}
.proc-step:hover .ps-num { color: rgba(168,134,62,0.5); }
.ps-content h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blk);
  margin-bottom: 10px;
}
.ps-content p {
  font-size: 0.86rem;
  color: rgba(12,11,9,0.52);
  line-height: 1.75;
}

/* ══ PROMOÇÃO ══ */
#promocao {
  background: var(--blk);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}
#promocao::before {
  content: '2026';
  position: absolute;
  right: -40px; bottom: -60px;
  font-family: var(--serif);
  font-size: 20rem;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.promo-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.promo-pill-lg {
  display: inline-block;
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.promo-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 28px;
}
.promo-title em { font-style: italic; color: var(--gold); }
.promo-aviso {
  font-size: 0.88rem;
  color: rgba(244,239,229,0.45);
  line-height: 1.75;
  margin-bottom: 40px;
}

.promo-right {
  display: flex; flex-direction: column; gap: 16px;
}
.promo-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}
.promo-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  transform: translateX(6px);
}
.promo-card.featured {
  background: rgba(200,169,110,0.07);
  border-color: rgba(200,169,110,0.3);
}
.promo-card.featured:hover { border-color: var(--gold); }

.pc-top {
  position: absolute; top: -11px; left: 24px;
  background: var(--gold);
  color: var(--blk);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 8px;
}
.pc-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.6);
  border: 1px solid rgba(200,169,110,0.25);
  padding: 2px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.pc-tag.gold { color: var(--gold); border-color: rgba(200,169,110,0.5); }

.promo-card h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.promo-card > p {
  font-size: 0.83rem;
  color: rgba(244,239,229,0.5);
  line-height: 1.7;
  margin-bottom: 16px;
}
.promo-card ul {
  display: flex; flex-wrap: wrap; gap: 6px 16px;
  margin-bottom: 20px;
}
.promo-card ul li {
  font-size: 0.78rem;
  color: rgba(244,239,229,0.6);
}
.pc-cta {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: rgba(244,239,229,0.35);
  transition: color 0.2s;
}
.pc-cta:hover { color: var(--cream); }
.pc-cta.gold { color: var(--gold); }
.pc-cta.gold:hover { color: var(--goldl); }

/* ══ CADASTRO ══ */
#cadastro {
  background: var(--cream);
  padding: 120px 80px;
}
.cad-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.cad-left .sec-label { color: var(--goldd); margin-bottom: 12px; }
.cad-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--blk);
  margin-bottom: 20px;
}
.cad-title em { font-style: italic; color: var(--goldd); }
.cad-left > p {
  font-size: 0.88rem;
  color: rgba(12,11,9,0.5);
  line-height: 1.8;
  margin-bottom: 32px;
}
.cad-infos { display: flex; flex-direction: column; gap: 12px; }
.cad-infos span {
  font-size: 0.82rem;
  color: rgba(12,11,9,0.45);
}

/* FORM */
.cad-form-wrap {
  background: var(--blk);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(12,11,9,0.25);
}
form#lead-form { display: flex; flex-direction: column; gap: 0; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.fg label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,239,229,0.4);
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold);
  background: rgba(200,169,110,0.05);
}
.fg input::placeholder, .fg textarea::placeholder {
  color: rgba(244,239,229,0.2);
}
.fg select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a96e' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.fg select option { background: var(--blk2); color: var(--cream); }
.fg select optgroup { color: var(--gold); font-style: normal; }
.fg textarea { resize: vertical; min-height: 88px; line-height: 1.6; }

.fg-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 22px;
}
.fg-row .fg { margin-bottom: 0; }

.checks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px;
}
.chk {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.82rem;
  color: rgba(244,239,229,0.55);
}
.chk:hover { border-color: rgba(200,169,110,0.4); background: rgba(200,169,110,0.05); }
.chk input[type="checkbox"] {
  width: 15px; height: 15px; flex-shrink: 0;
  accent-color: var(--gold); cursor: pointer;
}
.chk:has(input:checked) {
  border-color: var(--gold);
  background: rgba(200,169,110,0.08);
  color: var(--cream);
}

.btn-submit {
  width: 100%; padding: 16px;
  background: var(--gold);
  color: var(--blk);
  border: none;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.25s, transform 0.15s;
  will-change: transform;
}
.btn-submit:hover { background: var(--goldl); }

.form-fine {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(244,239,229,0.2);
  margin-top: 14px;
}

.form-ok {
  text-align: center;
  padding: 48px 24px;
}
.form-ok.hidden { display: none; }
.form-ok > span { font-size: 2.5rem; display: block; margin-bottom: 20px; color: var(--gold); }
.form-ok h3 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.form-ok p { font-size: 0.9rem; color: rgba(244,239,229,0.5); }

/* ══ SOBRE ══ */
#sobre {
  background: var(--blk);
  padding: 120px 80px;
}
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sobre-img-col {
  position: relative;
}
.sobre-img-col > img,
.sobre-img-col > .sobre-video {
  aspect-ratio: 9/16;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(15%) brightness(0.88);
  transition: filter 0.5s;
  display: block;
}
.sobre-img-col:hover > img,
.sobre-img-col:hover > .sobre-video { filter: grayscale(0%) brightness(1); }
.sobre-img-tag {
  position: absolute;
  bottom: 20px; right: -16px;
  background: var(--gold);
  color: var(--blk);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  border-radius: 4px;
}

.sobre-text-col .sec-label { color: var(--gold); margin-bottom: 12px; }
.sobre-text-col .sec-title { margin-bottom: 28px; }
.sobre-text-col > p {
  font-size: 0.9rem;
  color: rgba(244,239,229,0.55);
  line-height: 1.85;
  margin-bottom: 16px;
}
.tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 28px 0 32px;
}
.tags span {
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  color: rgba(244,239,229,0.45);
  border-radius: 20px;
  transition: border-color 0.2s, color 0.2s;
}
.tags span:hover { border-color: var(--gold); color: var(--gold); }
/* ── Título do Sobre (fundo escuro) ── */
.sobre-title {
  color: var(--cream) !important;
}
.sobre-title em { color: var(--gold) !important; }

.sobre-ig {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,169,110,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.sobre-ig:hover { color: var(--goldl); border-color: var(--goldd); }

/* ══ FOOTER ══ */
footer {
  background: var(--blk2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 52px 80px;
}
.ft-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 28px;
}
.ft-brand { display: flex; align-items: center; gap: 14px; }
.ft-brand strong { display: block; font-size: 0.9rem; color: var(--cream); }
.ft-brand p { font-size: 0.72rem; color: rgba(244,239,229,0.35); margin: 0; letter-spacing: 0.04em; }

.ft-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.ft-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(244,239,229,0.35);
  transition: color 0.2s;
}
.ft-nav a:hover { color: var(--gold); }

.ft-copy {
  width: 100%;
  text-align: center;
  font-size: 0.68rem;
  color: rgba(244,239,229,0.18);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 8px;
}

/* ══ CARD INSTAGRAM ══ */
.ig-card {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1117 40%, #1a0a0a 100%);
  padding: 24px;
  text-align: center;
  transition: background 0.4s;
}
.gi:hover .ig-card {
  background: linear-gradient(135deg, #2a1040 0%, #111827 40%, #2a0f0f 100%);
}

.ig-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  flex-shrink: 0;
}
.gi:hover .ig-icon-wrap {
  transform: scale(1.12);
  box-shadow: 0 0 28px rgba(238,42,123,0.45);
}
.ig-icon-wrap svg {
  width: 26px; height: 26px;
  color: #fff;
}

.ig-label {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
  max-width: 200px;
}
.ig-handle {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(244,239,229,0.35);
}

/* lightbox Instagram */
#lb-body .ig-frame {
  width: min(480px, 90vw);
  height: min(780px, 85vh);
  border: none;
  border-radius: 12px;
  background: #000;
}

/* ══ LIGHTBOX ══ */
.lb {
  position: fixed; inset: 0; z-index: 9990;
  background: rgba(12,11,9,0.96);
  display: grid; place-items: center;
  padding: 40px;
  animation: lbFade 0.25s ease;
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lb.hidden { display: none; }
.lb-x {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none;
  color: rgba(244,239,229,0.4);
  font-size: 1.6rem; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.lb-x:hover { color: var(--cream); }
#lb-body img {
  max-width: 88vw; max-height: 82vh;
  object-fit: contain;
  width: auto; height: auto;
  border-radius: 4px;
}
#lb-body iframe {
  width: min(900px, 85vw);
  height: min(506px, 48vw);
  min-height: 260px;
  border: none; border-radius: 4px;
}
#lb-body video {
  max-width: 88vw; max-height: 82vh;
  width: auto; height: auto;
  border-radius: 4px; outline: none;
}

/* ══ REVEAL ANIMATIONS ══ */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-up.in {
  opacity: 1;
  transform: none;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  #hero { grid-template-columns: 1.1fr 0.9fr; }
  .hero-col-text { padding: 60px 40px 60px 56px; }
  .servicos-header { grid-template-columns: 1fr; }
  .promo-inner { grid-template-columns: 1fr; gap: 56px; }
  .promo-title { font-size: 5rem; }
}

@media (max-width: 900px) {
  section, #portfolio, #promocao, #nums, #processo, #pilares, #manifesto { padding: 80px 40px; }
  footer { padding: 48px 40px; }
  #nav { padding: 0 28px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  #hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-col-text { padding: 80px 40px 60px; }
  .hero-col-img {
    position: absolute; inset: 0; z-index: 0;
  }
  .hero-col-text { position: relative; z-index: 1; background: rgba(12,11,9,0.6); backdrop-filter: blur(2px); }
  .hero-img-frame::after {
    background: linear-gradient(to top, rgba(12,11,9,0.85) 0%, rgba(12,11,9,0.4) 100%);
  }

  .pilares-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .proc-steps { grid-template-columns: 1fr 1fr; }
  .port-grid { grid-template-columns: 1fr 1fr; }
  .gi.wide { grid-column: span 2; }
  .gi.tall { aspect-ratio: 4/3; grid-row: auto; }
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-img-col > img,
  .sobre-img-col > .sobre-video { aspect-ratio: 4/3; }
  .sobre-img-tag { right: 0; }
  .cad-inner { grid-template-columns: 1fr; }
  .cad-form-wrap { padding: 32px 24px; }
  .nums-inner { flex-wrap: wrap; }
  .num-block { flex: 0 0 50%; }
  .num-sep { display: none; }
  .srv-body > div { padding-left: 40px; flex-direction: column; gap: 20px; }
  .srv-cta { align-self: flex-start; }
}

@media (max-width: 600px) {
  section, #portfolio, #promocao, #nums, #processo, #pilares, #manifesto { padding: 64px 24px; }
  footer { padding: 40px 24px; }
  #nav { padding: 0 20px; }
  .hero-col-text { padding: 72px 24px 48px; }
  .hero-title { font-size: 2.4rem; }
  .port-grid { grid-template-columns: 1fr; }
  .gi.wide { grid-column: span 1; }
  .proc-steps { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .promo-inner { gap: 40px; }
  .promo-title { font-size: 3.5rem; }
  .ft-inner { flex-direction: column; text-align: center; }
  .ft-brand { justify-content: center; }
  .ft-nav { justify-content: center; }
}

/* Mobile nav open */
#nav.open .nav-links {
  display: flex; flex-direction: column;
  position: fixed; inset: 0;
  background: var(--blk); z-index: 99;
  align-items: center; justify-content: center;
  gap: 40px;
}
#nav.open .nav-links a { font-size: 1.5rem; letter-spacing: 0.12em; opacity: 1; color: var(--cream); }
#nav.open .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#nav.open .burger span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }
