:root {
  --black: #050507;
  --matte: #0d0d10;
  --charcoal: #15151a;
  --deep-blue: #061a2f;
  --deep-blue-2: #092542;
  --gold: #d7b46a;
  --gold-light: #ffe0a0;
  --ice: #f4f7f8;
  --muted: #aeb7c2;
  --border: rgba(215, 180, 106, 0.22);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ice);
  background: radial-gradient(circle at top left, rgba(9,37,66,.8), transparent 35%), var(--black);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #101010;
  font-weight: 800;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 5vw;
  transition: background .35s ease, padding .35s ease, border .35s ease;
}
.site-header.scrolled {
  padding: 10px 5vw;
  background: rgba(5, 5, 7, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--font-display);
  background: linear-gradient(145deg, rgba(215,180,106,.18), rgba(255,255,255,.03));
  box-shadow: inset 0 0 24px rgba(215,180,106,.12), 0 0 20px rgba(215,180,106,.08);
}
.brand-text { font-size: 1rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(244,247,248,.82);
  font-size: .9rem;
}
.nav-links a { transition: color .25s ease; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold-light) !important;
  background: rgba(215,180,106,.08);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ice);
  transition: transform .3s ease, opacity .3s ease;
}

.cinematic-section {
  position: relative;
  padding: 115px 5vw;
  overflow: hidden;
}
.hero-section {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 140px;
}
.hero-video, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video { transform: scale(1.05); filter: saturate(.88) contrast(1.06); }
.hero-overlay {
  background: linear-gradient(90deg, rgba(5,5,7,.92), rgba(5,5,7,.58) 42%, rgba(6,26,47,.36)), linear-gradient(180deg, rgba(5,5,7,.38), rgba(5,5,7,.9));
  z-index: 1;
}
.luxury-orbit {
  position: absolute;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(215,180,106,.18);
  border-radius: 50%;
  right: -160px;
  top: 18%;
  z-index: 2;
  animation: rotateOrbit 28s linear infinite;
}
.luxury-orbit::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-light);
  top: 76px;
  left: 88px;
  box-shadow: 0 0 35px var(--gold);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .76rem;
  font-weight: 800;
}
h1, h2, h3 { margin: 0; line-height: 1.06; }
h1, h2 { font-family: var(--font-display); font-weight: 700; }
h1 { font-size: clamp(3rem, 7.4vw, 7.8rem); max-width: 1120px; letter-spacing: -.06em; }
h2 { font-size: clamp(2.2rem, 4.5vw, 5.1rem); letter-spacing: -.045em; }
h3 { font-size: 1.25rem; }
p { color: rgba(244,247,248,.76); line-height: 1.78; }
.hero-subheadline {
  max-width: 780px;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 42px; }
.primary-button, .secondary-button, .giant-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .03em;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
}
.primary-button, .giant-cta {
  color: #101010;
  background: linear-gradient(135deg, #b88b37, #ffe0a0 45%, #c99d4f);
  box-shadow: 0 18px 48px rgba(215,180,106,.24);
}
.primary-button { padding: 18px 28px; }
.secondary-button {
  padding: 17px 26px;
  color: var(--ice);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
}
.glow-button::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255,224,160,.75), transparent);
  filter: blur(12px);
  opacity: .6;
  animation: goldSweep 2.8s ease-in-out infinite;
}
.primary-button:hover, .secondary-button:hover, .giant-cta:hover { transform: translateY(-3px) scale(1.015); }
.hero-proof-card {
  position: absolute;
  right: 5vw;
  bottom: 9vh;
  z-index: 3;
  max-width: 330px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(5,5,7,.42);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.hero-proof-card span { color: var(--gold-light); text-transform: uppercase; font-size: .72rem; letter-spacing: .18em; }
.hero-proof-card strong { display: block; margin-top: 10px; line-height: 1.5; }
.scroll-indicator {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 3;
  width: 24px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
}
.scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 8px auto;
  border-radius: 999px;
  background: var(--gold-light);
  animation: scrollDot 1.6s infinite;
}

.banner-carousel-section { padding: 22px 5vw; background: #050507; }
.banner-carousel {
  position: relative;
  max-width: 1240px;
  height: 410px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 5s ease;
  background: linear-gradient(180deg, transparent, rgba(5,5,7,.82)), var(--bg) center/cover;
}
.banner-slide.active { opacity: 1; transform: scale(1); }
.banner-slide span { color: var(--gold-light); text-transform: uppercase; letter-spacing: .22em; font-weight: 800; font-size: .78rem; }
.banner-slide strong { margin-top: 12px; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 4rem); }

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  max-width: 1240px;
  margin: 0 auto;
}
.image-frame {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.image-frame img { width: 100%; height: 620px; object-fit: cover; transition: transform 1.2s ease; }
.image-frame:hover img { transform: scale(1.06); }
.section-copy p { max-width: 650px; }
.luxury-list { display: grid; gap: 13px; padding: 0; margin: 30px 0 0; list-style: none; }
.luxury-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  color: rgba(244,247,248,.9);
}
.luxury-list i { color: #ff7d7d; }
.section-heading {
  max-width: 880px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-heading p { margin-left: auto; margin-right: auto; max-width: 720px; }

.transformation-section { background: linear-gradient(180deg, #050507, #081c32 52%, #050507); }
.premium-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.premium-card {
  min-height: 330px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018));
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.premium-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255,224,160,.56);
  background: linear-gradient(145deg, rgba(215,180,106,.14), rgba(255,255,255,.03));
}
.premium-card i { color: var(--gold-light); font-size: 2rem; margin-bottom: 25px; }
.premium-card h3 { margin-bottom: 16px; }

.social-proof-section { background: radial-gradient(circle at center, rgba(215,180,106,.1), transparent 38%), #050507; }
.testimonial-carousel {
  position: relative;
  max-width: 1050px;
  min-height: 520px;
  margin: 0 auto;
}
.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: rgba(255,255,255,.045);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(24px) scale(.98);
  pointer-events: none;
  transition: opacity .75s ease, transform .75s ease;
}
.testimonial-card.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.testimonial-card img { width: 100%; height: 460px; object-fit: cover; border-radius: 26px; filter: saturate(.92); }
.testimonial-card p { font-family: var(--font-display); font-size: clamp(1.45rem, 3vw, 2.5rem); line-height: 1.28; color: var(--ice); }
.testimonial-card strong { color: var(--gold-light); }

.urgency-section {
  min-height: 72vh;
  display: grid;
  place-items: center;
  background: linear-gradient(rgba(5,5,7,.88), rgba(5,5,7,.9)), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=82') center/cover fixed;
  text-align: center;
}
.urgency-glow {
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,180,106,.16), transparent 65%);
  filter: blur(10px);
}
.urgency-content { max-width: 1040px; z-index: 1; }
.giant-cta { margin-top: 42px; padding: 24px 36px; font-size: clamp(.95rem, 2vw, 1.25rem); }
.pulse-button { animation: pulseGold 2s ease-in-out infinite; }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 34px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(215,180,106,.08));
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 26px;
  padding: 0 0 32px;
}
.timeline-item span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #101010;
  font-weight: 900;
  background: linear-gradient(135deg, #b88b37, #ffe0a0);
  box-shadow: 0 0 32px rgba(215,180,106,.28);
}
.timeline-item div {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
}

.exclusivity-section { min-height: 760px; display: grid; place-items: center; }
.exclusivity-bg {
  position: absolute;
  inset: 0;
  margin: 0;
  background: linear-gradient(90deg, rgba(5,5,7,.95), rgba(5,5,7,.5)), url('https://images.unsplash.com/photo-1602002418082-a4443e081dd1?auto=format&fit=crop&w=1800&q=82') center/cover;
  transform: scale(1.08);
}
.exclusivity-card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--border);
  border-radius: 34px;
  background: rgba(5,5,7,.66);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.availability-meter {
  height: 12px;
  margin: 28px 0 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
}
.availability-meter span {
  display: block;
  width: var(--width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7a231e, #d7b46a);
  animation: meter 2.2s ease both;
}

.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  margin-bottom: 14px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--ice);
  text-align: left;
  font: 800 1rem var(--font-body);
  cursor: pointer;
}
.faq-question i { color: var(--gold-light); transition: transform .25s ease; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { margin: 0; padding: 0 26px 24px; }

.final-cta-section { padding-top: 40px; }
.final-cta-card {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 80px);
  border: 1px solid var(--border);
  border-radius: 38px;
  background: radial-gradient(circle at top right, rgba(215,180,106,.16), transparent 35%), linear-gradient(145deg, #092542, #050507);
  text-align: center;
  box-shadow: var(--shadow);
}
.final-cta-card .primary-button { margin-top: 30px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 46px 5vw;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #030304;
}
.footer-brand p { margin: 4px 0 0; font-size: .9rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links a { color: rgba(244,247,248,.78); transition: color .25s ease; }
.footer-links a:hover { color: var(--gold-light); }
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1001;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  background: #25d366;
  box-shadow: 0 18px 40px rgba(37,211,102,.35);
  animation: floatWhats 2.6s ease-in-out infinite;
}

.reveal-up, .reveal-left { opacity: 0; transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal-up { transform: translateY(42px); }
.reveal-left { transform: translateX(-42px); }
.reveal-up.visible, .reveal-left.visible { opacity: 1; transform: translate(0,0); }

@keyframes rotateOrbit { to { transform: rotate(360deg); } }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(15px); } }
@keyframes goldSweep { 0%,100% { opacity: .28; transform: translateX(-12px); } 50% { opacity: .8; transform: translateX(12px); } }
@keyframes pulseGold { 0%,100% { box-shadow: 0 18px 48px rgba(215,180,106,.24); } 50% { box-shadow: 0 0 0 14px rgba(215,180,106,.08), 0 28px 70px rgba(215,180,106,.36); } }
@keyframes meter { from { width: 0; } to { width: var(--width); } }
@keyframes floatWhats { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 1024px) {
  .premium-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-grid, .testimonial-card { grid-template-columns: 1fr; }
  .hero-proof-card { position: relative; right: auto; bottom: auto; margin-top: 40px; }
  .testimonial-carousel { min-height: 760px; }
  .testimonial-card img { height: 360px; }
  .site-footer { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 780px) {
  .site-header { padding: 12px 18px; }
  .menu-toggle { display: block; z-index: 1002; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: rgba(5,5,7,.96);
    backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .cinematic-section { padding: 86px 20px; }
  .hero-section { padding-top: 120px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .primary-button, .secondary-button, .giant-cta { width: 100%; text-align: center; padding-left: 18px; padding-right: 18px; }
  .banner-carousel { height: 320px; border-radius: 24px; }
  .banner-slide { padding: 26px; }
  .image-frame img { height: 420px; }
  .premium-card-grid { grid-template-columns: 1fr; }
  .testimonial-carousel { min-height: 710px; }
  .testimonial-card { padding: 18px; border-radius: 24px; }
  .testimonial-card img { height: 300px; border-radius: 18px; }
  .urgency-section { background-attachment: scroll; }
  .timeline::before { left: 25px; }
  .timeline-item { grid-template-columns: 50px 1fr; gap: 18px; }
  .timeline-item span { width: 50px; height: 50px; }
  .timeline-item div { padding: 22px; }
  .floating-whatsapp { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.85rem; }
  h2 { font-size: 2rem; }
  .brand-text { display: none; }
  .hero-subheadline { font-size: 1rem; }
  .testimonial-carousel { min-height: 760px; }
  .footer-links { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
