:root {
  --bg: #24113b;
  --bg-soft: #35135a;
  --panel: rgba(255,255,255,0.1);
  --panel-strong: rgba(255,255,255,0.15);
  --text: #faf6ff;
  --muted: #dfd6ea;
  --accent: #a9c800;
  --accent-dark: #8faf00;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #210f36 0%, #2e1450 55%, #1f1231 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; position: relative; }
.center { text-align: center; }
.section-tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 12px;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
  margin: 0 0 16px;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: 1.8rem; }
p { color: var(--muted); line-height: 1.75; margin: 0 0 14px; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 8, 33, 0.65);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 84px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img, .footer-brand img { width: 58px; height: 58px; border-radius: 18px; object-fit: cover; box-shadow: var(--shadow); }
.brand strong, .footer-brand strong { display: block; font-size: 1rem; }
.brand span, .footer-brand span { color: var(--muted); font-size: .9rem; }
.nav { display: flex; gap: 24px; align-items: center; }
.nav a { color: #f5edff; font-weight: 500; }
.nav a:hover { color: var(--accent); }
.menu-toggle {
  display: none; background: rgba(255,255,255,0.08); color: white; border: none; width: 46px; height: 46px;
  border-radius: 14px; cursor: pointer; font-size: 1.25rem;
}
.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: clip;
}
.hero-image, .hero-overlay {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-image { object-fit: cover; object-position: center; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(20, 8, 33, 0.84) 10%, rgba(39, 12, 60, 0.58) 45%, rgba(26, 10, 40, 0.7) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-copy { max-width: 650px; padding: 36px; }
.glass-card {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(32, 9, 54, 0.45);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; font-size: .82rem;
}
.hero-copy p { max-width: 60ch; }
.hero-actions, .contact-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0 24px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #25133d; }
.btn-primary:hover { background: #bfdc28; }
.btn-secondary { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: white; }
.hero-highlights {
  list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px;
}
.hero-highlights li {
  padding-left: 24px; position: relative; color: #f1e9fb;
}
.hero-highlights li::before {
  content: '•'; color: var(--accent); position: absolute; left: 8px; top: 0;
}
.grid-2, .video-grid, .contact-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; align-items: center;
}
.info-card, .contact-form, .contact-panel, .video-frame, .map-card {
  background: var(--panel); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); box-shadow: var(--shadow);
}
.info-card { padding: 28px; display: grid; gap: 18px; }
.info-item { padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.info-item:last-child { border-bottom: 0; padding-bottom: 0; }
.info-item span { display: block; color: var(--accent); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 8px; }
.info-item strong { font-size: 1.03rem; line-height: 1.5; }
.card-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin-top: 36px;
}
.feature-card, .social-card {
  padding: 28px; border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow);
}
.feature-card p { margin-bottom: 0; }
.social-links {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 34px;
}
.social-card { text-align: center; }
.social-card span { display: block; color: var(--accent); text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; margin-bottom: 10px; }
.social-card strong { font-size: 1.12rem; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 34px;
}
.gallery-item {
  border: none; padding: 0; background: transparent; border-radius: 20px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.video-frame { padding: 12px; }
.video-frame iframe, .map-card iframe {
  width: 100%; border: 0; border-radius: 20px; min-height: 360px;
}
.contact-panel { padding: 32px; }
.contact-form { padding: 28px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; border-radius: 16px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06); color: white; padding: 16px 18px; margin-bottom: 14px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #cdbfdf; }
.full { width: 100%; border: 0; cursor: pointer; }
.mini-list { display: grid; gap: 14px; color: var(--muted); line-height: 1.7; }
.map-card { overflow: hidden; }
.footer {
  padding: 24px 0 36px; border-top: 1px solid rgba(255,255,255,0.08); background: rgba(18, 8, 29, 0.7);
}
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer p { margin: 0; }
.footer a { color: var(--accent); }
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; width: 64px; height: 64px; border-radius: 50%; z-index: 70;
  display: grid; place-items: center; background: #25D366; box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.floating-whatsapp svg { width: 32px; fill: white; }
.lightbox {
  position: fixed; inset: 0; background: rgba(8, 5, 16, 0.88); display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: .25s ease; z-index: 100;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 980px); max-height: 84vh; border-radius: 24px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px; width: 52px; height: 52px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: white; font-size: 2rem; cursor: pointer;
}

@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .social-links { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav {
    position: absolute; left: 16px; right: 16px; top: 84px; display: none; flex-direction: column; align-items: flex-start;
    padding: 20px; border-radius: 24px; background: rgba(20, 8, 33, .95); border: 1px solid rgba(255,255,255,.08);
  }
  .nav.active { display: flex; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .grid-2, .video-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 84px 0 72px; }
  .hero-copy { padding: 28px; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .brand img, .footer-brand img { width: 50px; height: 50px; }
  h1 { font-size: clamp(2.3rem, 10vw, 3.6rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
}
