:root {
  --navy-deep:   #0B1428;
  --navy-mid:    #152042;
  --navy-soft:   #1F2B4D;
  --navy-glass:  rgba(11, 20, 40, 0.72);
  --ivory:       #F5EFE3;
  --bone:        #FAF7F2;
  --white:       #FFFFFF;
  --gold:        #C9A961;
  --gold-soft:   #E8C77A;
  --gold-deep:   #A88A4A;
  --ink:         #1A1A1A;
  --ink-soft:    #2D3142;
  --muted:       #6B6F7A;
  --ivory-text:  #F5EFE3;
  --whatsapp:    #1B7A47;
  --whatsapp-dk: #135C36;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans:    "Inter", system-ui, -apple-system, sans-serif;

  --container:    1240px;
  --container-narrow: 760px;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:    cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--navy-deep); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* ==================== TYPE ==================== */
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow.on-light { color: var(--gold-deep); }
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.no-flank::before, .eyebrow.no-flank::after { display: none; }

.gold-divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 24px auto;
  position: relative;
}
.gold-divider::before, .gold-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.gold-divider::before { left: -12px; }
.gold-divider::after { right: -12px; }

/* ==================== BUTTONS ==================== */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 18px 30px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 52px;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn:hover::before { transform: translateX(100%); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--navy-deep);
  color: var(--ivory-text);
  border: 1px solid var(--navy-deep);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 20, 40, 0.25);
}
.btn-primary.on-navy {
  background: transparent;
  border: 1px solid rgba(201, 169, 97, 0.5);
  color: var(--ivory-text);
}
.btn-primary.on-navy:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--ivory); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27, 122, 71, 0.3);
}

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(11, 20, 40, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
  transition: padding 0.3s var(--ease-soft);
}
.nav.scrolled { padding: 12px 0; background: rgba(11, 20, 40, 0.95); }
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ivory-text);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo .gold { color: var(--gold); font-style: italic; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 239, 227, 0.8);
  transition: color 0.2s;
  letter-spacing: 0.02em;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 11px 22px;
  font-size: 13px;
  background: var(--gold);
  color: var(--navy-deep) !important;
  font-weight: 600;
  border-radius: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-soft); }

@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 100px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--navy-mid) 0%, var(--navy-deep) 70%),
    var(--navy-deep);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.10) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.07) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(11, 20, 40, 0.6) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800' fill='none' stroke='%23C9A961' stroke-width='0.5'%3E%3Ccircle cx='200' cy='180' r='3' fill='%23C9A961'/%3E%3Ccircle cx='340' cy='240' r='3' fill='%23C9A961'/%3E%3Ccircle cx='280' cy='340' r='3' fill='%23C9A961'/%3E%3Ccircle cx='480' cy='200' r='3' fill='%23C9A961'/%3E%3Ccircle cx='580' cy='320' r='3' fill='%23C9A961'/%3E%3Ccircle cx='720' cy='180' r='3' fill='%23C9A961'/%3E%3Ccircle cx='860' cy='280' r='3' fill='%23C9A961'/%3E%3Ccircle cx='1000' cy='220' r='3' fill='%23C9A961'/%3E%3Ccircle cx='980' cy='400' r='3' fill='%23C9A961'/%3E%3Ccircle cx='820' cy='480' r='3' fill='%23C9A961'/%3E%3Ccircle cx='640' cy='560' r='3' fill='%23C9A961'/%3E%3Ccircle cx='460' cy='480' r='3' fill='%23C9A961'/%3E%3Ccircle cx='320' cy='560' r='3' fill='%23C9A961'/%3E%3Ccircle cx='180' cy='460' r='3' fill='%23C9A961'/%3E%3Ccircle cx='160' cy='620' r='3' fill='%23C9A961'/%3E%3Ccircle cx='400' cy='680' r='3' fill='%23C9A961'/%3E%3Ccircle cx='720' cy='680' r='3' fill='%23C9A961'/%3E%3Ccircle cx='1040' cy='580' r='3' fill='%23C9A961'/%3E%3Cpath d='M200 180 L340 240 L280 340 L480 200 L580 320 L720 180 L860 280 L1000 220'/%3E%3Cpath d='M280 340 L460 480 L320 560'/%3E%3Cpath d='M580 320 L640 560 L820 480 L1000 220'/%3E%3Cpath d='M860 280 L980 400 L820 480'/%3E%3Cpath d='M180 460 L160 620 L400 680 L720 680 L1040 580 L980 400'/%3E%3Cpath d='M460 480 L640 560'/%3E%3Cpath d='M340 240 L480 200'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-aurora {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: 720px; height: 720px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 169, 97, 0.10) 0%, rgba(201, 169, 97, 0.04) 30%, transparent 60%);
  filter: blur(40px);
  animation: auroraDrift 12s ease-in-out infinite;
}
@keyframes auroraDrift {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-48%, -52%) scale(1.05); opacity: 1; }
}
.hero-inner { position: relative; max-width: 920px; margin: 0 auto; padding: 0 24px; color: var(--ivory-text); }
.hero .eyebrow {
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s var(--ease-out) forwards;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5.8vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  color: var(--ivory-text);
  opacity: 0;
  animation: fadeUp 0.9s 0.25s var(--ease-out) forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  display: inline-block;
  position: relative;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 400;
  color: rgba(245, 239, 227, 0.85);
  margin: 0 auto 44px;
  max-width: 660px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s var(--ease-out) forwards;
}
.hero-credentials {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245, 239, 227, 0.65);
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s var(--ease-out) forwards;
}
.hero-credentials .stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  margin-right: 4px;
}
.hero-credentials .dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease-out) forwards;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1.2s 1.4s var(--ease-out) forwards;
}
.hero-scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.4s infinite;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero-credentials { font-size: 11px; gap: 12px; letter-spacing: 0.04em; }
  .hero-credentials .stat-num { font-size: 17px; }
  .hero-scroll-hint { display: none; }
}

/* ==================== MEDIA BAR ==================== */
.media-bar {
  background: var(--navy-deep);
  padding: 36px 0;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  position: relative;
}
.media-bar::before, .media-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.media-bar::before { left: 0; }
.media-bar::after { right: 0; }
.media-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.media-bar-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  position: relative;
  padding-right: 24px;
}
.media-logos {
  display: flex;
  gap: 44px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.media-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: rgba(245, 239, 227, 0.55);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s, opacity 0.3s;
  white-space: nowrap;
}
.media-logo.bold {
  font-family: var(--font-sans);
  font-weight: 700;
  font-style: normal;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.media-logo:hover { color: var(--gold); }
@media (max-width: 768px) {
  .media-bar-inner { gap: 24px; }
  .media-logos { gap: 24px; }
  .media-logo { font-size: 17px; }
  .media-logo.bold { font-size: 14px; }
  .media-bar::before, .media-bar::after { display: none; }
}

/* ==================== SECTION BASE ==================== */
section { padding: 100px 0; position: relative; }
section.compact { padding: 64px 0; }
section.ivory { background: var(--ivory); }
section.bone { background: var(--bone); }
section.white { background: var(--bone); }
section.navy { background: var(--navy-deep); color: var(--ivory-text); position: relative; isolation: isolate; }
section.navy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
}

.section-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-header .eyebrow { margin-bottom: 20px; }
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
section.navy .section-header h2 { color: var(--ivory-text); }
.section-header h2 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
section.navy .section-header h2 em { color: var(--gold); }
.section-header p {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 400;
  max-width: 660px;
  margin: 0 auto;
  opacity: 0.85;
}
section.navy .section-header p { color: rgba(245, 239, 227, 0.72); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

/* ==================== DORES (BENTO) ==================== */
.dores-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.dor-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid rgba(11, 20, 40, 0.06);
  border-radius: 4px;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  transform-style: preserve-3d;
  perspective: 1000px;
  --mx: 50%;
  --my: 50%;
}
.dor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx) var(--my), rgba(201, 169, 97, 0.10), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}
.dor-card:hover::before { opacity: 1; }
.dor-card > * { position: relative; z-index: 1; }
.dor-card.featured {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  color: var(--ivory-text);
  border-color: rgba(201, 169, 97, 0.2);
}
.dor-card.featured.large {
  grid-column: span 6;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201, 169, 97, 0.10) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.dor-card.featured.large::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' fill='none' stroke='%23C9A961' stroke-width='0.6' opacity='0.5'%3E%3Ccircle cx='200' cy='200' r='180'/%3E%3Ccircle cx='200' cy='200' r='140'/%3E%3Ccircle cx='200' cy='200' r='100'/%3E%3Ccircle cx='200' cy='200' r='60'/%3E%3Ccircle cx='200' cy='200' r='4' fill='%23C9A961' stroke='none'/%3E%3Cline x1='20' y1='200' x2='380' y2='200'/%3E%3Cline x1='200' y1='20' x2='200' y2='380'/%3E%3Cline x1='65' y1='65' x2='335' y2='335'/%3E%3Cline x1='335' y1='65' x2='65' y2='335'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.dor-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 40px; height: 40px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0;
  transition: opacity 0.4s, top 0.4s, right 0.4s;
}
.dor-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 20, 40, 0.1);
}
.dor-card:hover::after { opacity: 1; top: 12px; right: 12px; }
.dor-card.featured.large:hover { transform: translateY(-2px); }
.dor-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 0.02em;
  transition: transform 0.5s var(--ease-out), color 0.3s;
  transform-origin: left center;
}
.dor-card:hover .num { transform: scale(1.15) translateY(-2px); }
.dor-card.featured .num { color: var(--gold); }
.dor-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.dor-card.featured h3 { color: var(--ivory-text); }
.dor-card.featured.large h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  max-width: 640px;
}
.dor-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}
.dor-card.featured p { color: rgba(245, 239, 227, 0.85); }
.dor-card.featured.large p {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 600px;
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.55;
  color: rgba(245, 239, 227, 0.92);
}

@media (max-width: 900px) {
  .dores-bento { grid-template-columns: repeat(2, 1fr); }
  .dor-card, .dor-card.featured { grid-column: span 1; }
  .dor-card.featured.large { grid-column: span 2; padding: 40px 28px; }
}
@media (max-width: 600px) {
  .dores-bento { grid-template-columns: 1fr; }
  .dor-card, .dor-card.featured, .dor-card.featured.large { grid-column: span 1; }
}

.dores-bottom {
  text-align: center;
  margin-top: 56px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--ink-soft);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.dores-bottom strong { color: var(--gold-deep); font-weight: 500; }

/* ==================== SOBRE ==================== */
.sobre-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
}
.sobre-photo-wrap {
  position: relative;
}
.sobre-photo-wrap::before {
  content: "";
  position: absolute;
  top: -16px; left: -16px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: 0;
  opacity: 0.7;
}
.sobre-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy-deep);
  border-radius: 4px;
  overflow: hidden;
  z-index: 1;
}
.sobre-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.8s var(--ease-out);
}
.sobre-photo:hover img { transform: scale(1.03); }
.sobre-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(11,20,40,0.25));
  pointer-events: none;
}
.sobre-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--ivory);
  padding: 16px 22px;
  border-radius: 2px;
  z-index: 2;
  text-align: center;
  border-left: 2px solid var(--gold);
}
.sobre-badge .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--navy-deep);
  line-height: 1;
  font-weight: 500;
}
.sobre-badge .l {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

.sobre-text .eyebrow { margin-bottom: 24px; }
.sobre-text h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
}
.sobre-text h2 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.sobre-text > p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.sobre-bullets {
  list-style: none;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(11, 20, 40, 0.08);
  border-bottom: 1px solid rgba(11, 20, 40, 0.08);
  display: grid;
  gap: 16px;
}
.sobre-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.sobre-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ==================== TRATAMENTOS BENTO ==================== */
.trat-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.trat-card {
  background: var(--white);
  padding: 36px 30px;
  border: 1px solid rgba(11, 20, 40, 0.06);
  border-radius: 4px;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  --mx: 50%;
  --my: 50%;
}
.trat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--mx) var(--my), rgba(201, 169, 97, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}
.trat-card:hover::after { opacity: 1; }
.trat-card > * { position: relative; z-index: 1; }
.trat-card .icon { transition: transform 0.5s var(--ease-out), background 0.3s; }
.trat-card:hover .icon { transform: rotate(-8deg) scale(1.1); background: rgba(201, 169, 97, 0.18); }
.trat-card.large {
  grid-column: span 3;
  grid-row: span 2;
  padding: 40px 36px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
    var(--white);
  position: relative;
  overflow: hidden;
}
.trat-card.large::before {
  content: "";
  position: absolute;
  bottom: -40px; right: -40px;
  width: 240px; height: 240px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none' stroke='%23C9A961' stroke-width='0.5' opacity='0.6'%3E%3Ccircle cx='100' cy='100' r='90'/%3E%3Ccircle cx='100' cy='100' r='70'/%3E%3Ccircle cx='100' cy='100' r='50'/%3E%3Ccircle cx='100' cy='100' r='30'/%3E%3Ccircle cx='100' cy='100' r='3' fill='%23C9A961' stroke='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  pointer-events: none;
}
.trat-card.medium {
  grid-column: span 3;
}
.trat-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(11, 20, 40, 0.08);
}
.trat-card .icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  background: rgba(201, 169, 97, 0.08);
  border-radius: 2px;
}
.trat-card.large .icon {
  width: 56px; height: 56px;
}
.trat-card .icon svg { width: 24px; height: 24px; }
.trat-card.large .icon svg { width: 30px; height: 30px; }
.trat-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.trat-card.large h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.trat-card.large h3 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.trat-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.trat-card.large p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 400px;
}
.trat-card .arrow {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  transition: gap 0.3s;
}
.trat-card:hover .arrow { gap: 14px; }
.trat-card .arrow svg { width: 14px; height: 14px; }

@media (max-width: 1000px) {
  .trat-bento { grid-template-columns: repeat(2, 1fr); }
  .trat-card, .trat-card.medium { grid-column: span 1; }
  .trat-card.large { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
  .trat-bento { grid-template-columns: 1fr; }
  .trat-card, .trat-card.medium, .trat-card.large { grid-column: span 1; grid-row: auto; }
}

/* ==================== COMO FUNCIONA — TIMELINE ==================== */
.passos-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.passos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.passos::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.5), rgba(201, 169, 97, 0.5), transparent);
  z-index: 0;
}
@media (max-width: 900px) {
  .passos { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .passos::before { display: none; }
}
@media (max-width: 500px) {
  .passos { grid-template-columns: 1fr; }
}

.passo {
  text-align: left;
  position: relative;
  z-index: 1;
}
.passo {
  cursor: default;
}
.passo .num-wrap {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--navy-deep);
  position: relative;
  transition: transform 0.5s var(--ease-out), background 0.3s, box-shadow 0.4s;
}
.passo .num-wrap::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: inset 0.5s var(--ease-out), opacity 0.4s;
}
.passo:hover .num-wrap {
  transform: scale(1.1);
  background: var(--gold);
  box-shadow: 0 0 32px rgba(201, 169, 97, 0.35);
}
.passo:hover .num-wrap .num { color: var(--navy-deep); }
.passo:hover .num-wrap::before { inset: -10px; opacity: 0.6; }
.passo .num { transition: color 0.3s; }
.passo .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.passo h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--ivory-text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.passo p {
  font-size: 16px;
  color: rgba(245, 239, 227, 0.78);
  line-height: 1.65;
}

.passos-cta {
  text-align: center;
  margin-top: 56px;
}

/* ==================== DEPOIMENTOS ==================== */
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 900px) { .depo-grid { grid-template-columns: 1fr; max-width: 600px; } }

.depo-card {
  background: var(--white);
  padding: 44px 36px;
  border-radius: 4px;
  border: 1px solid rgba(11, 20, 40, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s, border-color 0.4s;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
}
.depo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(201, 169, 97, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}
.depo-card:hover::before { opacity: 1; }
.depo-card > * { position: relative; z-index: 1; }
.depo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(11, 20, 40, 0.1);
  border-color: var(--gold);
}
.depo-card .quote-mark { transition: transform 0.5s var(--ease-out), opacity 0.4s; }
.depo-card:hover .quote-mark { transform: scale(1.2) translateY(-4px); opacity: 0.6; }
.depo-author::before { transition: width 0.5s var(--ease-out); }
.depo-card:hover .depo-author::before { width: 80px; }
.depo-card .quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 32px; left: 28px;
}
.depo-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 32px 0 24px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.depo-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-top: 1px solid rgba(11, 20, 40, 0.08);
  padding-top: 20px;
  position: relative;
}
.depo-author::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 32px; height: 1px;
  background: var(--gold);
}
.depo-info { display: flex; flex-direction: column; }
.depo-info .name { font-weight: 600; color: var(--ink); }
.depo-info .meta {
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ==================== FAQ ==================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(11, 20, 40, 0.1);
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 28px 48px 28px 0;
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  letter-spacing: -0.005em;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-q .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-q .icon::before, .faq-q .icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s var(--ease-soft);
}
.faq-q .icon::before { width: 14px; height: 1px; }
.faq-q .icon::after { width: 1px; height: 14px; }
.faq-item.open .faq-q .icon::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-soft), padding 0.4s var(--ease-soft);
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 28px; padding-right: 48px; }

/* ==================== CTA FINAL ==================== */
.cta-final-wrap {
  position: relative;
  isolation: isolate;
}
.cta-final-wrap {
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, var(--navy-mid) 0%, var(--navy-deep) 70%),
    var(--navy-deep);
}
.cta-final-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 25% 40%, rgba(201, 169, 97, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 75% 60%, rgba(201, 169, 97, 0.06) 0%, transparent 40%);
}
.cta-final-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-final {
  text-align: center;
  padding: 100px 0;
}
.cta-final .eyebrow { margin-bottom: 24px; }
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ivory-text);
  margin-bottom: 20px;
  max-width: 780px;
  margin-left: auto; margin-right: auto;
}
.cta-final h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.cta-final p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  color: rgba(245, 239, 227, 0.85);
  margin-bottom: 56px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.cta-final .gold-divider { background: var(--gold); }

.endereco-info {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media (max-width: 700px) { .endereco-info { grid-template-columns: 1fr; gap: 32px; text-align: center; } }
.endereco-info > div { color: rgba(245, 239, 227, 0.85); }
.endereco-info .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.endereco-info strong { font-weight: 600; color: var(--ivory-text); display: block; margin-bottom: 6px; font-size: 18px; }
.endereco-info p { font-size: 15px; line-height: 1.65; color: rgba(245, 239, 227, 0.78); }

/* ==================== FOOTER ==================== */
footer {
  background: #060B19;
  color: rgba(245, 239, 227, 0.6);
  padding: 64px 0 32px;
  font-size: 13px;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
footer .footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ivory-text);
  font-weight: 500;
  letter-spacing: 0.01em;
}
footer .footer-logo .gold { color: var(--gold); font-style: italic; }
footer .social {
  display: flex;
  gap: 12px;
}
footer .social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s var(--ease-out);
}
footer .social a:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
}
footer .legal {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 239, 227, 0.06);
  font-size: 11px;
  color: rgba(245, 239, 227, 0.35);
  letter-spacing: 0.04em;
}

/* ==================== WHATSAPP FLOAT ==================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(27, 122, 71, 0.35);
  transition: transform 0.3s var(--ease-out), background 0.3s;
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--whatsapp);
  opacity: 0.4;
  animation: ping 2.4s infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.4; }
  75%, 100% { transform: scale(1.4); opacity: 0; }
}
.wa-float:hover { transform: scale(1.08); background: var(--whatsapp-dk); }
.wa-float svg { width: 30px; height: 30px; color: #fff; position: relative; z-index: 1; }

/* ==================== MOTION REDUCE ==================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-bg { background-attachment: scroll; }
  .cta-final-wrap::before { background-attachment: scroll; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
