
:root {
  --bg: #06070b;
  --bg-soft: #0b1019;
  --gold: #c6a86a;
  --gold-2: #f1d8a4;
  --white: #f6f7fb;
  --muted: #b4bccb;
  --line: rgba(255,255,255,0.10);
  --card: rgba(255,255,255,0.04);
  --shadow: 0 24px 80px rgba(0,0,0,.42);
  --radius: 24px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: linear-gradient(180deg, #040507 0%, #090b10 36%, #0b1019 72%, #0b1220 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(4, 6, 10, .45);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.topbar.is-scrolled {
  background: rgba(4, 6, 10, .88);
  border-bottom: 1px solid rgba(198,168,106,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .92rem;
}
.brand-mark {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.20), 0 0 0 1px rgba(198,168,106,.08);
  padding: 8px;
  transition: transform .35s ease, box-shadow .35s ease, width .35s ease, height .35s ease;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 0 16px rgba(198,168,106,.28)) drop-shadow(0 0 28px rgba(198,168,106,.10));
}
.topbar.is-scrolled .brand-mark {
  width: 108px;
  height: 108px;
}
.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: .95rem;
}
.menu a:hover { color: var(--white); }

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  display: block;
  border-radius: 999px;
}
.mobile-panel {
  position: fixed;
  top: 88px;
  right: 16px;
  left: 16px;
  z-index: 999;
  background: rgba(8,12,18,.96);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  backdrop-filter: blur(20px);
}
.mobile-panel.is-open { display: grid; gap: 10px; }
.mobile-panel a {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.mobile-panel a:hover { border-color: rgba(198,168,106,.24); color: var(--gold-2); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .3s ease;
  font: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, #f2ddb0, #b98c46 72%);
  color: #121212;
  box-shadow: 0 14px 34px rgba(198,168,106,.22);
}
.btn-dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.btn-audio {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: var(--white);
}
.btn-audio.is-playing {
  background: rgba(198,168,106,.16);
  border-color: rgba(198,168,106,.30);
  color: var(--gold-2);
}

.page-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  padding-top: 100px;
}
.page-hero video,
.page-hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: brightness(.42) contrast(1.08) saturate(.92);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.44) 45%, rgba(0,0,0,.68) 100%),
    linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.72));
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 32px, 980px);
  text-align: center;
  margin: 0 auto;
  padding: 120px 16px 60px;
}
.hero-brand-logo {
  width: 220px;
  max-width: 56vw;
  margin: 0 auto 18px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(198,168,106,.24)) drop-shadow(0 0 42px rgba(198,168,106,.18));
  animation: heroLogoGlow 3s ease-in-out infinite alternate;
}
.hero-kicker {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: var(--gold-2);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .76rem;
  margin-bottom: 22px;
}
.hero-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: -.03em;
  color: #f7f3eb;
}
.hero-title span {
  display: block;
  color: var(--gold-2);
}
.hero-text {
  width: min(100%, 760px);
  margin: 22px auto 0;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

section { padding: 92px 0; }
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.section-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: -.03em;
}
.section-text { max-width: 58ch; color: var(--muted); margin: 0; }

.grid-3, .grid-2 {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(198,168,106,.10);
  border: 1px solid rgba(198,168,106,.18);
}
.card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.card p, .card li { color: var(--muted); }

.contact-box {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.contact-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.contact-item strong {
  display: block;
  color: var(--gold-2);
  margin-bottom: 6px;
}

.footer {
  padding: 34px 0 54px;
  color: var(--muted);
}
.footer-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2ddb0, #b98c46);
  color: #111;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroLogoGlow {
  0% { filter: drop-shadow(0 0 20px rgba(198,168,106,.25)) drop-shadow(0 0 40px rgba(198,168,106,.12)); }
  100% { filter: drop-shadow(0 0 40px rgba(198,168,106,.45)) drop-shadow(0 0 80px rgba(198,168,106,.25)); }
}

@media (max-width: 1024px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .menu, .nav .btn-gold { display: none; }
  .mobile-toggle { display: inline-flex; }
}
@media (max-width: 768px) {
  .nav { min-height: 76px; }
  .brand-mark { width: 78px; height: 78px; }
  .topbar.is-scrolled .brand-mark { width: 88px; height: 88px; }
  .hero-brand-logo { width: 150px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 4rem); }
  .hero-text { font-size: .98rem; }
  .hero-content { padding-top: 150px; }
  .whatsapp-float { left: 16px; right: 16px; text-align: center; }
}
