:root {
  --gold: #c6a300;
  --gold-soft: #e5d17a;
  --dark: #161616;
  --sand: #f6f4ee;
  --stone: #8a836d;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.alt { background: linear-gradient(180deg, #fbfaf7 0%, #f4f1e8 100%); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
}
.section-head { max-width: 760px; margin-bottom: 32px; }
.section-head.center { text-align: center; margin-inline: auto auto; }
h1, h2, h3 { line-height: 1.1; margin: 0 0 16px; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-family: 'Playfair Display', serif; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-family: 'Playfair Display', serif; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 14px; color: #383838; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(15, 15, 15, 0.7);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; color: var(--white); }
.brand img { width: 56px; height: 56px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,.06); padding: 4px; }
.brand span { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.7); }
.brand strong { font-size: 1.2rem; letter-spacing: .06em; }
.site-nav { display: flex; gap: 26px; }
.site-nav a { color: var(--white); font-weight: 500; opacity: .9; }
.site-nav a:hover { color: var(--gold-soft); }
.menu-toggle { display: none; background: none; border: 0; padding: 0; }
.menu-toggle span { display: block; width: 28px; height: 2px; background: #fff; margin: 6px 0; }

.hero { position: relative; min-height: 96vh; display: grid; align-items: center; overflow: hidden; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(100deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.15) 100%); }
.hero-content { position: relative; z-index: 1; padding: 120px 0 80px; }
.hero-copy { max-width: 720px; color: var(--white); }
.hero-copy p { color: rgba(255,255,255,.86); font-size: 1.08rem; max-width: 620px; }
.hero-copy span.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(198,163,0,.18);
  border: 1px solid rgba(229,209,122,.3);
  color: #fff2b0;
  font-weight: 700;
}
.hero-copy h1 span { color: #f3d861; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold) 0%, #dfc24e 100%); color: var(--dark); box-shadow: var(--shadow); }
.btn-secondary { border: 1px solid rgba(255,255,255,.3); color: var(--white); background: rgba(255,255,255,.08); }
.hero-highlights { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 20px; }
.hero-highlights li {
  padding-left: 18px;
  position: relative;
  color: rgba(255,255,255,.92);
}
.hero-highlights li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold-soft);
  position: absolute; left: 0; top: 10px;
}

.intro-grid { align-items: start; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat-card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf6 0%, #f7f2df 100%);
  box-shadow: var(--shadow);
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.stat-card strong { font-size: 2rem; color: var(--gold); }
.stat-card span { color: var(--stone); font-weight: 600; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(198,163,0,.12);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.6rem;
  background: linear-gradient(135deg, #fff4bc 0%, #f0df89 100%);
  margin-bottom: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  min-height: 240px;
  box-shadow: var(--shadow);
  background: #ddd;
}
.gallery-item.wide { grid-column: span 2; grid-row: span 2; min-height: 496px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item::after {
  content: 'Ampliar';
  position: absolute; inset: auto 18px 18px auto;
  padding: 8px 14px; border-radius: 999px; background: rgba(0,0,0,.6); color: #fff; font-size: .85rem;
}
.gallery-item:hover img { transform: scale(1.06); }

.video-frame, .map-frame, .embed-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.video-frame iframe, .map-frame iframe, .embed-wrap iframe {
  width: 100%;
  display: block;
  border: 0;
}
.video-frame iframe { aspect-ratio: 16/9; }
.map-frame iframe { min-height: 420px; }
.embed-wrap iframe { min-height: 520px; background: #fff; }

.social-link-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  margin-top: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.social-link-card img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; }
.social-link-card span { display: block; color: var(--stone); }

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, #161616 0%, #2a2a2a 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}
.contact-copy p, .contact-copy .contact-data span { color: rgba(255,255,255,.82); }
.contact-data { display: grid; gap: 12px; margin-top: 24px; }
.contact-data a, .contact-data span { font-size: 1.05rem; }
.contact-form {
  background: rgba(255,255,255,.06);
  padding: 24px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}
.form-group { display: grid; gap: 8px; margin-bottom: 14px; }
.form-group label { font-weight: 600; }
.form-group input, .form-group textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.1);
  color: var(--white);
  padding: 14px 16px;
  border-radius: 14px;
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.55); }

.site-footer { background: #0f0f0f; color: rgba(255,255,255,.8); padding: 28px 0; }
.footer-wrap { display: flex; justify-content: space-between; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.site-footer a { color: #f0d870; }

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
}
.float-btn {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 16px 30px rgba(0,0,0,.22);
}
.float-btn svg { width: 34px; height: 34px; fill: #fff; }
.whatsapp { background: #25D366; }

.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.88); display: none;
  place-items: center; z-index: 100; padding: 28px;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 78vh; border-radius: 20px; }
.lightbox-caption { color: #fff; margin-top: 14px; text-align: center; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.15); color: #fff; font-size: 2rem; cursor: pointer;
}

@media (max-width: 1024px) {
  .features-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute; left: 16px; right: 16px; top: 84px; display: none; flex-direction: column;
    padding: 18px; background: rgba(20,20,20,.96); border-radius: 20px; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .grid-2, .contact-box { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding-top: 120px; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .container { width: min(100% - 24px, 1180px); }
  .hero-highlights, .stats-grid, .features-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; grid-row: span 1; min-height: 280px; }
  .gallery-item { min-height: 220px; }
  .contact-box { padding: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .footer-wrap { align-items: flex-start; }
}
