:root {
  --bg: #0e0e10;
  --bg-soft: #18181c;
  --card: rgba(255,255,255,0.06);
  --text: #f6f2eb;
  --muted: #c5beb5;
  --line: rgba(255,255,255,0.12);
  --accent: #f26a21;
  --accent-2: #ffcc33;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0,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, #0b0b0d 0%, #141418 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% - 2rem)); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section-tag, .eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: .8rem;
}
h1, h2, h3 { font-family: 'Oswald', sans-serif; line-height: 1; margin: 0 0 1rem; text-transform: uppercase; }
h1 { font-size: clamp(3rem, 8vw, 6.3rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.5rem; }
p { color: var(--muted); line-height: 1.7; margin: 0; }
.lead { font-size: 1.05rem; max-width: 650px; }
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: start;
}
.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand { display: flex; align-items: center; gap: .8rem; font-family: 'Oswald', sans-serif; font-size: 1.5rem; }
.brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.2); }
.nav-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.nav-links a { color: var(--white); font-weight: 600; opacity: .9; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.1); }
.hero-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.52) 45%, rgba(0,0,0,.66) 100%),
              linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: end;
  min-height: calc(100svh - 90px);
  padding: 3rem 0 5rem;
}
.hero-copy strong { color: var(--white); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 1.5rem; 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(--accent), #ff8a34); color: #fff; box-shadow: 0 14px 30px rgba(242,106,33,.25); }
.btn-secondary { border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; }
.hero-card-inner, .card, .highlight-card, .promo-card, .social-card, .contact-form, .contact-info {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-card-inner { padding: 2rem; }
.hero-card ul { margin: 0; padding-left: 1.1rem; color: var(--text); display: grid; gap: .75rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card { padding: 2rem; }
.icon { font-size: 2rem; display: inline-block; margin-bottom: 1rem; }
.dark-band { background: radial-gradient(circle at top left, rgba(242,106,33,.16), transparent 35%), var(--bg); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.chips span {
  padding: .8rem 1rem; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid var(--line); color: var(--text); font-weight: 600;
}
.highlight-card { padding: 2rem; }
.contact-mini { margin-top: 1.5rem; display: grid; gap: .8rem; }
.contact-mini a { color: var(--accent-2); font-weight: 700; }
.section-head { margin-bottom: 2rem; max-width: 760px; }
.promo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.promo-card { overflow: hidden; }
.promo-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.promo-card div { padding: 1rem; }
.gallery-section { background: linear-gradient(180deg, #0f1013 0%, #18191d 100%); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.gallery-item {
  border: 0; padding: 0; background: transparent; cursor: pointer; overflow: hidden; border-radius: 22px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.social-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.social-card { padding: 1.25rem; }
.social-card strong { display: block; color: var(--white); margin-bottom: .4rem; }
.video-wrap { position: relative; overflow: hidden; border-radius: 28px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.video-wrap iframe { width: 100%; min-height: 360px; border: 0; display: block; }
.contact-info, .contact-form { padding: 2rem; }
.info-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.info-list a { color: var(--text); }
.contact-form { display: grid; gap: 1rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 1rem 1.1rem; border-radius: 16px; border: 1px solid var(--line);
  background: rgba(255,255,255,.06); color: var(--white);
}
.form-note { font-size: .92rem; }
.footer { border-top: 1px solid var(--line); padding: 1.2rem 0 2rem; background: #0b0b0d; }
.footer-inner { text-align: center; }
.footer p, .footer a { color: #ddd5cb; }
.whatsapp-float {
  position: fixed; right: 1rem; bottom: 1rem; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: #25D366; color: #fff; z-index: 50;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.86); display: none; align-items: center; justify-content: center;
  padding: 1rem; z-index: 100;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(100%, 1100px); max-height: 90vh; border-radius: 18px; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.15); color: #fff; font-size: 2rem; cursor: pointer;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
@media (max-width: 980px) {
  .hero-content, .two-col, .grid-3, .promo-grid, .gallery-grid, .social-cards { grid-template-columns: 1fr 1fr; }
  .hero-content { align-items: center; }
}
@media (max-width: 720px) {
  .nav { flex-direction: column; gap: 1rem; }
  .nav-links { justify-content: center; }
  .hero-content, .two-col, .grid-3, .promo-grid, .gallery-grid, .social-cards { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  h1 { font-size: clamp(2.6rem, 15vw, 4.2rem); }
  .hero-content { min-height: auto; padding-top: 2rem; }
  .hero-card { margin-top: 1rem; }
  .video-wrap iframe { min-height: 260px; }
}
