:root {
  --bg: #060606;
  --bg-soft: #0d0d0d;
  --surface: rgba(255,255,255,.04);
  --surface-2: rgba(255,255,255,.06);
  --line: rgba(206, 180, 74, .28);
  --text: #f5f2df;
  --muted: #d3cea9;
  --primary: #b7d615;
  --gold: #d1ad45;
  --accent: #25d366;
  --shadow: 0 22px 60px rgba(0,0,0,.34);
  --radius: 24px;
  --container: min(1140px, calc(100vw - 32px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #050505 0%, #101010 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: var(--container); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 12px; top: 12px; z-index: 4000; background: #fff; color: #000; padding: 10px 14px; }
.site-header {
  position: sticky; top: 0; z-index: 1200;
  background: rgba(5,5,5,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img {
  width: 58px; height: 58px; object-fit: cover; border-radius: 50%;
  border: 2px solid rgba(209,173,69,.5);
}
.brand strong { display: block; font-size: 1.05rem; }
.brand span { display: block; color: var(--muted); font-size: .9rem; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a { font-weight: 700; color: #f1ecd3; }
.site-nav a:hover, .site-nav a:focus { color: var(--primary); }
.menu-toggle, .lang-toggle {
  border: 1px solid rgba(209,173,69,.34);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
}
.menu-toggle { display: none; padding: 10px 14px; font-size: 1.2rem; }
.lang-toggle { padding: 10px 14px; font-weight: 800; }
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.6) 44%, rgba(0,0,0,.2) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 96px 0 72px; }
.hero-card {
  max-width: 720px;
  background: rgba(9,9,9,.68);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 34px;
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 800;
  color: var(--gold);
}
h1, h2, h3 { line-height: 1.1; margin: 0 0 16px; }
h1 { font-size: clamp(2.2rem, 4.7vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: 1.2rem; }
.lead { font-size: 1.05rem; color: #f4efcf; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 22px; border-radius: 999px; font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  color: #0a0a0a;
  box-shadow: 0 16px 34px rgba(183,214,21,.24);
}
.btn-secondary {
  border: 1px solid rgba(209,173,69,.34);
  background: rgba(255,255,255,.04);
}
.hero-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-points li {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}
.highlights {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px 0;
}
.highlights-grid article {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.highlights-grid strong { display: block; color: var(--gold); margin-bottom: 6px; }
.section { padding: 84px 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)); }
.section-heading { max-width: 780px; margin: 0 auto 30px; text-align: center; }
.section-heading.left { text-align: left; margin-left: 0; }
.section-heading p:last-child { color: var(--muted); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.service-card p { margin: 0; color: var(--muted); }
.feature-card { background: linear-gradient(180deg, rgba(183,214,21,.16), rgba(209,173,69,.08)); }
.split-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}
.info-panel img {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-mini {
  margin-top: 16px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}
.contact-mini p { margin: 0 0 14px; }
.check-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.check-list div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #101010;
  box-shadow: 0 10px 26px rgba(0,0,0,.24);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .28s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.video-wrap, .map-wrap {
  position: relative; overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.video-wrap { aspect-ratio: 16 / 9; }
.map-wrap { aspect-ratio: 16 / 7; }
.video-wrap iframe, .map-wrap iframe {
  width: 100%; height: 100%; border: 0;
}
.social-grid { align-items: stretch; }
.facebook-card {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
}
.facebook-card img {
  width: 110px; height: 110px; object-fit: cover;
  border-radius: 50%; border: 2px solid rgba(209,173,69,.45);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.contact-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.contact-boxes article, .contact-form {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.contact-boxes article { padding: 18px; }
.contact-form { padding: 24px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(209,173,69,.24);
  background: #101010;
  color: var(--text);
  font: inherit;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  background: #080808;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.credits { color: var(--muted); }
.credits a { color: var(--gold); }
.floating-whatsapp,
.floating-call {
  position: fixed;
  right: 18px;
  z-index: 1100;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(0,0,0,.35);
}
.floating-call {
  bottom: 88px;
  background: linear-gradient(180deg, var(--gold), var(--primary));
  color: #0a0a0a;
  font-size: 1.5rem;
}
.floating-whatsapp {
  bottom: 18px;
  background: var(--accent);
  color: #fff;
}
.floating-whatsapp svg { width: 32px; height: 32px; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.9);
}
.lightbox.is-open { display: flex; }
.lightbox-figure {
  margin: 0;
  max-width: min(94vw, 1120px);
  max-height: 88vh;
  display: grid;
  gap: 10px;
  justify-items: center;
}
.lightbox img {
  max-width: 100%;
  max-height: calc(88vh - 40px);
  width: auto;
  height: auto;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 18px 45px rgba(0,0,0,.4);
}
#lightboxCaption { color: #fff; text-align: center; }
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
}
@media (max-width: 980px) {
  .highlights-grid, .cards-grid, .gallery-grid, .contact-boxes, .contact-grid, .split-grid { grid-template-columns: 1fr 1fr; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(7,7,7,.98);
  }
  .site-nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-content { padding: 112px 0 54px; }
  .hero-card { padding: 24px; }
  .highlights-grid, .cards-grid, .gallery-grid, .contact-boxes, .contact-grid, .split-grid { grid-template-columns: 1fr; }
  .brand strong { font-size: .98rem; }
  .brand span { font-size: .82rem; }
  .map-wrap { aspect-ratio: 1 / 1; }
}
