:root {
  --bg: #090909;
  --surface: #141414;
  --surface-2: #1d1d1d;
  --text: #f4f1eb;
  --muted: #cbc2b6;
  --line: rgba(255,255,255,.1);
  --accent: #d9822b;
  --accent-2: #f1c27b;
  --shadow: 0 20px 50px rgba(0,0,0,.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #090909 0%, #12100e 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(9,9,9,.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
}
.brand-title {
  display: block;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: .88rem;
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  color: var(--muted);
  font-weight: 500;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #16110c;
}
.btn-secondary,
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(241,194,123,.45);
}
.btn-block { width: 100%; }

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.6) 50%, rgba(9,9,9,.95) 100%), linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}
.eyebrow, .section-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(217,130,43,.18);
  color: var(--accent-2);
  border: 1px solid rgba(241,194,123,.2);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: .95;
  margin: 18px 0;
  max-width: 760px;
  text-wrap: balance;
}
.hero-text {
  max-width: 700px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #f7efe5;
  text-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.hero-badges, .hero-actions, .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-badges {
  margin: 28px 0;
}
.hero-badges span, .social-links a {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text);
}
.section {
  padding: 92px 0;
}
.section h2 {
  margin: 16px 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  text-wrap: balance;
}
.section p {
  color: var(--muted);
  line-height: 1.8;
}
.section-dark {
  background: radial-gradient(circle at top, rgba(217,130,43,.12) 0%, transparent 35%), #0e0d0c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.video-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}
.info-card,
.form-card,
.map-card,
.video-frame,
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card {
  padding: 28px;
}
.info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.info-item strong {
  display: block;
  margin-bottom: 8px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.card { overflow: hidden; }
.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.card-body {
  padding: 22px;
}
.card-body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.video-frame { overflow: hidden; }
.video-frame iframe,
.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
}
.contact-list a,
.contact-list p {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  margin: 0;
}
.form-card {
  padding: 28px;
}
form {
  display: grid;
  gap: 16px;
}
label span {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}
input:focus, textarea:focus {
  border-color: rgba(241,194,123,.65);
  box-shadow: 0 0 0 4px rgba(217,130,43,.13);
}
.form-note {
  margin: 0;
  font-size: .9rem;
}

.footer {
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  background: #080808;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer p {
  margin: 0;
  color: var(--muted);
}
.footer a { color: var(--accent-2); }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #1b130c;
  z-index: 30;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.whatsapp-float svg { width: 30px; height: 30px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: 22px;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav { flex-wrap: wrap; padding: 14px 0; }
  .nav-links { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; gap: 14px; }
  .intro-grid, .video-grid, .contact-grid, .cards-grid, .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav { justify-content: center; }
  .nav-actions { width: 100%; justify-content: center; }
  .hero-content { padding-top: 140px; }
  .intro-grid, .video-grid, .contact-grid, .cards-grid, .gallery-grid, .footer-content {
    grid-template-columns: 1fr;
  }
  .gallery-item img { height: 240px; }
  .video-frame iframe, .map-card iframe { min-height: 320px; }
  .section { padding: 72px 0; }
}
