/* ============================================================
   S&L PRODUCTIONS — Premium event landing
   Author: S&L Productions
   ============================================================ */

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- TOKENS ---------- */
:root {
  --black: #050505;
  --black-2: #0b0b0d;
  --black-3: #111114;
  --card: #121215;
  --line: rgba(212, 175, 55, 0.18);
  --line-2: rgba(255,255,255,.06);

  --gold: #D4AF37;
  --gold-2: #F5D77E;
  --gold-dark: #9C7424;
  --purple: #8A00FF;
  --purple-2: #B45BFF;
  --cyan: #00E5FF;

  --white: #F5F5F5;
  --text: #B8B8B8;
  --muted: #7a7a7a;

  --radius: 16px;
  --radius-lg: 22px;
  --container: 1240px;

  --t-fast: .25s ease;
  --t: .4s cubic-bezier(.2,.7,.2,1);

  --shadow-gold: 0 12px 40px rgba(212,175,55,.18);
  --shadow-soft: 0 18px 50px rgba(0,0,0,.55);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Cinzel', 'Inter', serif;
  color: var(--white);
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1.15;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 5vw + .5rem, 4rem); }
h2 { font-size: clamp(1.7rem, 3vw + .5rem, 2.8rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.text-gradient {
  background: linear-gradient(120deg, var(--gold-2) 0%, var(--gold) 35%, var(--purple-2) 75%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-title { margin-bottom: 16px; }
.section-sub { color: var(--text); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(212,175,55,.06);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .3px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-sm { padding: 9px 18px; font-size: .88rem; }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-dark));
  color: #1a1200;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(212,175,55,.4); }
.btn-gold::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  transition: left .7s ease;
}
.btn-gold:hover::after { left: 130%; }

.btn-outline {
  background: rgba(255,255,255,.02);
  color: var(--white);
  border: 1px solid var(--line);
}
.btn-outline:hover { background: rgba(212,175,55,.08); border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(5,5,5,.55);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), padding var(--t);
}

.navbar-logo-img {
  display: block;
  width: auto;
  height: 60px;
  object-fit: contain;
}

.logo-image-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.navbar-logo-sub {
  font-family: 'Cinzel', serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--gold);
  line-height: 1;
  padding-left: 6px;
  margin-top: -10px;
}
.navbar.scrolled {
  padding: 8px 0;
  background: rgba(5,5,5,.85);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: inline-flex; flex-direction: column; line-height: 1;
}
.logo-mark {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--white);
}
.logo-mark .amp {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0 2px;
}
.logo-sub {
  font-size: .62rem;
  letter-spacing: 6px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a:not(.btn) {
  font-size: .92rem;
  color: var(--text);
  font-weight: 500;
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--gold-2); }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  transition: width var(--t);
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border: 1px solid var(--line); border-radius: 10px;
}
.nav-toggle span {
  width: 20px; height: 2px; background: var(--gold);
  transition: transform var(--t), opacity var(--t-fast);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg #particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  opacity: .6;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .6;
  animation: floatGlow 14s ease-in-out infinite;
}
.glow-purple { width: 480px; height: 480px; top: -120px; left: -100px; background: var(--purple); opacity: .35; }
.glow-cyan   { width: 460px; height: 460px; bottom: -160px; right: -80px; background: var(--cyan); opacity: .25; animation-delay: -5s; }
.glow-gold   { width: 380px; height: 380px; top: 40%; left: 45%; background: var(--gold); opacity: .15; animation-delay: -9s; }

@keyframes floatGlow {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(40px, -30px); }
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem; color: var(--text);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 12px var(--gold);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1}50%{opacity:.4} }

.hero-title { font-weight: 700; }
.hero-sub {
  font-size: 1.08rem; color: var(--text);
  max-width: 580px; margin: 0 0 36px;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 16px 22px;
  padding-top: 26px;
  border-top: 1px solid var(--line-2);
}
.hero-badges li {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
  font-size: .92rem;
  font-weight: 500;
}
.badge-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(138,0,255,.15));
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--gold-2);
  flex-shrink: 0;
}

/* ----- Hero visual stage ----- */
.hero-visual { position: relative; }
.visual-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(160deg, var(--gold), transparent 35%, var(--purple) 70%, transparent);
  box-shadow: var(--shadow-soft);
  animation: borderShift 8s linear infinite;
}
@keyframes borderShift {
  0%, 100% { background: linear-gradient(160deg, var(--gold), transparent 35%, var(--purple) 70%, transparent); }
  50% { background: linear-gradient(160deg, var(--purple), transparent 35%, var(--cyan) 70%, transparent); }
}
.visual-card {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #0a0a0d, #050505);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.vc-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120%; height: 80%;
  background: radial-gradient(ellipse at top, rgba(138,0,255,.5), transparent 60%);
  pointer-events: none;
}
.vc-stage {
  position: relative; flex: 1; overflow: hidden;
}
.stage-light {
  position: absolute; top: -10px; width: 0; height: 0;
  border-left: 60px solid transparent; border-right: 60px solid transparent;
  border-top: 280px solid rgba(255,255,255,.0);
  filter: blur(8px);
  transform-origin: top center;
  animation: sweep 5s ease-in-out infinite alternate;
}
.l1 { left: 15%; border-top-color: rgba(0,229,255,.35); animation-delay: -1s; }
.l2 { left: 45%; border-top-color: rgba(212,175,55,.4); }
.l3 { left: 70%; border-top-color: rgba(138,0,255,.45); animation-delay: -2s; }

@keyframes sweep {
  0% { transform: rotate(-20deg); }
  100% { transform: rotate(20deg); }
}

.stage-laser {
  position: absolute; top: 8%; left: 50%;
  width: 2px; height: 70%;
  background: linear-gradient(180deg, rgba(0,229,255,.9), transparent);
  transform-origin: top;
  animation: laser 3s ease-in-out infinite;
  box-shadow: 0 0 10px var(--cyan);
}
@keyframes laser {
  0%,100% { transform: rotate(-25deg); opacity: .7; }
  50% { transform: rotate(25deg); opacity: 1; }
}

.stage-platform {
  position: absolute; bottom: 60px; left: 10%; right: 10%;
  height: 90px;
  perspective: 600px;
}
.led-floor {
  width: 100%; height: 100%;
  background:
    linear-gradient(180deg, rgba(212,175,55,.4), rgba(138,0,255,.4)),
    repeating-linear-gradient(90deg, transparent 0, transparent 14px, rgba(0,0,0,.7) 14px, rgba(0,0,0,.7) 16px),
    repeating-linear-gradient(0deg, transparent 0, transparent 14px, rgba(0,0,0,.7) 14px, rgba(0,0,0,.7) 16px);
  transform: rotateX(60deg);
  box-shadow: 0 -20px 50px rgba(138,0,255,.4), 0 -10px 30px rgba(212,175,55,.3);
  animation: floorPulse 3s ease-in-out infinite;
}
@keyframes floorPulse { 0%,100%{filter:hue-rotate(0deg)}50%{filter:hue-rotate(40deg)} }

.co2-jet {
  position: absolute; bottom: 50px;
  width: 6px; height: 0;
  background: linear-gradient(0deg, rgba(255,255,255,.9), transparent);
  filter: blur(6px);
  animation: co2 4s ease-out infinite;
  border-radius: 50%;
}
.jet-l { left: 18%; animation-delay: -1s; }
.jet-r { right: 18%; animation-delay: -2.5s; }
@keyframes co2 {
  0% { height: 0; opacity: 0; }
  20% { opacity: 1; }
  100% { height: 240px; opacity: 0; }
}

.sparks { position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.sparks span {
  width: 3px; height: 3px; background: var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: spark 2.5s ease-out infinite;
}
.sparks span:nth-child(1){ animation-delay: 0s; }
.sparks span:nth-child(2){ animation-delay: .3s; }
.sparks span:nth-child(3){ animation-delay: .6s; }
.sparks span:nth-child(4){ animation-delay: .9s; }
.sparks span:nth-child(5){ animation-delay: 1.2s; }
@keyframes spark {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-160px); opacity: 0; }
}

.vc-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-top: 1px solid var(--line-2);
  font-size: .75rem; color: var(--muted); letter-spacing: 1.5px;
  background: rgba(0,0,0,.4);
}
.vc-tag { color: var(--gold); font-weight: 600; }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px; border: 1px solid var(--gold);
  border-radius: 14px; opacity: .6;
  display: flex; justify-content: center; padding-top: 6px;
  z-index: 3;
}
.scroll-cue span {
  width: 3px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(8px);opacity:.3} }

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 18px 0;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(212,175,55,.04), rgba(138,0,255,.04));
}
.marquee-track {
  display: inline-flex; gap: 60px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: 'Cinzel', serif;
  font-size: .9rem;
  letter-spacing: 4px;
  color: var(--gold);
}
.marquee-track span { opacity: .8; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SERVICES ---------- */
.services { background: linear-gradient(180deg, var(--black) 0%, var(--black-2), 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  padding: 28px 24px;
  background: linear-gradient(160deg, var(--card), #08080a);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: transform var(--t), border-color var(--t), background var(--t);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(212,175,55,.12), transparent 60%);
  opacity: 0; transition: opacity var(--t);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: linear-gradient(160deg, #15151a, #08080a);
}
.service-card:hover::before { opacity: 1; }
.service-card h3 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: .3px; }
.service-card p { font-size: .9rem; color: var(--text); margin-bottom: 18px; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(138,0,255,.1));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2);
  margin-bottom: 18px;
  transition: transform var(--t);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); color: var(--gold); }

.service-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .88rem; font-weight: 600; letter-spacing: .5px;
  color: var(--gold-2);
  transition: gap var(--t-fast), color var(--t-fast);
}
.service-cta:hover { gap: 12px; color: var(--gold); }

.service-card.featured {
  background: linear-gradient(160deg, rgba(212,175,55,.12), rgba(138,0,255,.08) 60%, #08080a);
  border-color: var(--gold);
  grid-row: span 1;
}
.service-flag {
  position: absolute; top: 14px; right: 14px;
  padding: 5px 12px;
  font-size: .68rem; font-weight: 700; letter-spacing: 1.5px;
  background: var(--gold);
  color: #000;
  border-radius: 999px;
}

.service-card.combo {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(138,0,255,.08), rgba(0,229,255,.06));
  border-color: rgba(138,0,255,.3);
}
.combo-tag {
  position: absolute; top: 14px; right: 14px;
  padding: 5px 12px;
  font-size: .68rem; font-weight: 700; letter-spacing: 1.5px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  color: #fff;
  border-radius: 999px;
}
.combo-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center;
  margin-bottom: 18px;
}
.combo-half h3 { margin-bottom: 6px; }
.combo-half p { margin-bottom: 0; font-size: .85rem; }
.combo-divider {
  width: 1px; height: 100%; min-height: 80px;
  background: linear-gradient(180deg, transparent, var(--purple), transparent);
}

/* ---------- PACKAGES ---------- */
.packages { background: var(--black); position: relative; }
.packages::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.pkg {
  position: relative;
  background: linear-gradient(180deg, var(--card), #08080a);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform var(--t), border-color var(--t);
  display: flex; flex-direction: column;
}
.pkg:hover { transform: translateY(-8px); border-color: var(--gold); }

.pkg-header { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px dashed var(--line); }
.pkg-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: .85rem; letter-spacing: 4px;
  color: var(--gold);
  display: block; margin-bottom: 10px;
}
.pkg h3 { font-size: 1.5rem; font-family: 'Cinzel', serif; }
.pkg-header p { color: var(--text); font-size: .92rem; margin: 0; }

.pkg-list { flex: 1; margin-bottom: 26px; }
.pkg-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0;
  color: var(--text); font-size: .94rem;
}
.pkg-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: .9rem;
  margin-top: 2px;
}

.pkg-pop {
  background: linear-gradient(180deg, rgba(212,175,55,.1), rgba(138,0,255,.06) 60%, #08080a);
  border-color: var(--gold);
  transform: scale(1.04);
  z-index: 1;
  box-shadow: 0 30px 70px rgba(212,175,55,.18);
}
.pkg-pop:hover { transform: scale(1.04) translateY(-8px); }
.pkg-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 18px;
  font-size: .72rem; font-weight: 700; letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
  color: #1a1200;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ---------- WHY ---------- */
.why { background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.why-item {
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: transform var(--t), border-color var(--t);
}
.why-item:hover { transform: translateY(-4px); border-color: var(--gold); }
.why-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a1200;
  border-radius: 12px;
  margin-bottom: 18px;
}
.why-item h3 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; }
.why-item p { color: var(--text); font-size: .92rem; margin: 0; }

/* ---------- GALLERY ---------- */
.gallery { background: var(--black); }
.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 40px;
}
.filter {
  padding: 8px 18px;
  font-size: .85rem; font-weight: 500;
  color: var(--text);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: all var(--t-fast);
}
.filter:hover { color: var(--gold-2); border-color: var(--gold); }
.filter.active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
  color: #1a1200; border-color: transparent; font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-2);
  cursor: pointer;
  transition: transform var(--t), border-color var(--t);
}
.g-item:hover { transform: scale(1.02); border-color: var(--gold); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.g-item.hidden { display: none; }

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
  background:
    radial-gradient(circle at 30% 30%, rgba(212,175,55,.3), transparent 50%),
    linear-gradient(135deg, #1a1a1a, #08080a);
}
.g-item:hover img { transform: scale(1.06); }

.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .3px;
  transform: translateY(20%);
  opacity: 0;
  transition: transform var(--t), opacity var(--t);
}
.g-item:hover figcaption { transform: translateY(0); opacity: 1; }

/* ---------- PROCESS ---------- */
.process { background: linear-gradient(180deg, var(--black) 0%, var(--black-3) 100%); }
.steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 20px; align-items: stretch;
  max-width: 1100px; margin: 0 auto;
}
.step {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  transition: transform var(--t), border-color var(--t);
}
.step:hover { transform: translateY(-6px); border-color: var(--gold); }
.step-num {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-2), var(--purple-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.step h3 { font-family: 'Inter', sans-serif; font-size: 1.15rem; }
.step p { font-size: .92rem; color: var(--text); margin: 0; }
.step-connector {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  align-self: center;
  position: relative;
}
.step-connector::after {
  content: "›";
  position: absolute; right: -4px; top: 50%; transform: translateY(-55%);
  color: var(--gold); font-size: 1.5rem;
}

/* ---------- ESPECIALIDADES (testimonials block) ---------- */
.testimonials { background: var(--black); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi {
  background: linear-gradient(180deg, var(--card), #08080a);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.testi:hover { transform: translateY(-6px); border-color: var(--gold); }
.testi-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a1200;
  border-radius: 14px;
  margin-bottom: 20px;
}
.testi p {
  font-size: 1.05rem;
  color: var(--white);
  margin: 0;
  line-height: 1.5;
}
.testi p strong { color: var(--gold-2); font-weight: 600; }

/* ---------- FLYER ---------- */
.flyer-section { background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%); }
.flyer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.flyer-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(160deg, var(--gold), transparent 35%, var(--purple) 70%, transparent);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  width: 100%;
}
.flyer-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.flyer-fallback {
  position: absolute; inset: 1px;
  z-index: 1;
  border-radius: calc(var(--radius-lg) - 2px);
  background:
    radial-gradient(circle at 30% 20%, rgba(212,175,55,.3), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(138,0,255,.3), transparent 50%),
    linear-gradient(160deg, #0a0a0d, #050505);
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  text-align: center; padding: 30px;
}
.flyer-frame.no-image img { display: none; }
.flyer-fallback-mark {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 4px;
}
.flyer-fallback-text { color: var(--text); font-size: .95rem; }
.flyer-fallback-text code {
  background: rgba(212,175,55,.1);
  padding: 2px 6px; border-radius: 4px;
  font-size: .82rem; color: var(--gold-2);
}
.flyer-side h3 { font-family: 'Cinzel', serif; font-size: 1.5rem; margin-bottom: 14px; }
.flyer-side p { color: var(--text); margin-bottom: 24px; font-size: 1.02rem; }

/* ---------- QUOTE FORM ---------- */
.quote { background: var(--black); }
.quote-form {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--card), #08080a);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
.quote-field { display: flex; flex-direction: column; gap: 8px; }
.qf-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-2);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.qf-input {
  position: relative;
  display: flex; align-items: center;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.qf-input:focus-within {
  border-color: var(--gold);
  background: rgba(212,175,55,.05);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}
.qf-input svg { color: var(--gold-2); flex-shrink: 0; }
.qf-input input,
.qf-input select {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 10px;
  font-family: inherit;
  font-size: .98rem;
  color: var(--white);
  width: 100%;
}
.qf-input input::placeholder { color: var(--muted); }
.qf-input select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14'%3E%3Cpath fill='%23D4AF37' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}
.qf-input select option { background: var(--black-3); color: var(--white); }
.qf-input input[type="date"] { color-scheme: dark; }

.quote-submit { width: 100%; }
.quote-note {
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ---------- CTA FINAL ---------- */
.cta-final { padding: 0 0 120px; }
.cta-box {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  text-align: center;
  background: linear-gradient(160deg, rgba(212,175,55,.12), rgba(138,0,255,.1) 60%, #08080a);
  border: 1px solid var(--gold);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.cta-bg { position: absolute; inset: 0; }
.cta-glow { position: absolute; border-radius: 50%; filter: blur(70px); }
.g1 { width: 360px; height: 360px; top: -100px; left: -80px; background: var(--gold); opacity: .25; }
.g2 { width: 360px; height: 360px; bottom: -120px; right: -100px; background: var(--purple); opacity: .35; }

.cta-content { position: relative; z-index: 2; }
.cta-content h2 { margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; color: var(--text); margin-bottom: 32px; }

/* ---------- FOOTER ---------- */
.footer {
  background: linear-gradient(180deg, var(--black-2), var(--black));
  border-top: 1px solid var(--line);
  padding-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--gold-2);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col p { color: var(--text); font-size: .92rem; }
.logo-footer { margin-bottom: 18px; }
.footer-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  font-size: .92rem;
  color: var(--text);
}
.footer-list a:hover { color: var(--gold-2); }
.footer-list svg { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--line-2);
  padding: 22px 0;
  background: rgba(0,0,0,.4);
}
.footer-bottom .container {
  display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  font-size: .82rem; color: var(--muted);
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: transform var(--t-fast);
}
.wa-float:hover { transform: scale(1.08); }
.wa-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.5);
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ---------- S&L ASSISTANT ---------- */
.sl-assist-toggle {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 91;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-dark));
  color: #050505;
  border: 1px solid var(--gold);
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
  font-weight: 600;
  font-size: .88rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  animation: slAssistFloat 3.2s ease-in-out infinite;
}
.sl-assist-toggle:hover { transform: translateY(-2px) scale(1.03); }
.sl-assist-toggle.is-active { animation: none; }
@keyframes slAssistFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.sl-assist-panel {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 92;
  width: 370px;
  max-width: calc(100vw - 24px);
  max-height: min(560px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.98);
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t), visibility 0s linear .4s;
}
.sl-assist-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
  transition: opacity var(--t), transform var(--t);
}

.sl-assist-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line-2);
  background: linear-gradient(180deg, var(--black-2), transparent);
}
.sl-assist-header h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold-2);
  font-size: 1.05rem;
  margin: 0;
}
.sl-assist-header p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .78rem;
}
.sl-assist-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--text);
  transition: color var(--t-fast), background var(--t-fast);
  flex-shrink: 0;
}
.sl-assist-close:hover { color: var(--gold-2); background: rgba(212,175,55,.1); }

.sl-assist-body {
  padding: 16px 18px 20px;
  overflow-y: auto;
}

.sl-msg {
  color: var(--text);
  font-size: .92rem;
  line-height: 1.5;
  margin: 0 0 14px;
}

.sl-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sl-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 11px 14px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  transition: border-color var(--t-fast), transform var(--t-fast), color var(--t-fast);
}
.sl-btn:hover { border-color: var(--gold); color: var(--gold-2); transform: translateX(2px); }
.sl-btn-wa { border-color: rgba(37,211,102,.4); }
.sl-btn-wa:hover { border-color: #25D366; color: #25D366; }

.sl-link {
  display: block;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: .8rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sl-link:hover { color: var(--gold-2); }

.sl-view-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.sl-back {
  color: var(--gold-2);
  font-size: .8rem;
  font-weight: 600;
}
.sl-back:hover { color: var(--gold); }

.sl-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sl-list li {
  position: relative;
  padding-left: 16px;
  color: var(--text);
  font-size: .86rem;
}
.sl-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 720px) {
  .sl-assist-toggle {
    left: 16px;
    right: auto;
    bottom: 16px;
    padding: 10px 14px;
    font-size: .82rem;
  }

  .sl-assist-panel {
    left: 12px;
    right: auto;
    bottom: 72px;
    width: calc(100vw - 24px);
  }
}
@media (max-width: 380px) {
  .sl-assist-toggle {
    padding: 7px 9px !important;
    font-size: 0.68rem !important;
    gap: 5px;
  }

  .sl-assist-toggle svg {
    width: 16px;
    height: 16px;
  }
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pkg-pop { transform: none; }
  .pkg-pop:hover { transform: translateY(-8px); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-card.combo { grid-column: span 1; }
  .combo-grid { grid-template-columns: 1fr; }
  .combo-divider { width: 100%; height: 1px; min-height: 0; background: linear-gradient(90deg, transparent, var(--purple), transparent); }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .flyer-wrap { grid-template-columns: 0.75fr 1fr; max-width: 520px; gap: 30px; }
  .flyer-frame { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 16px; right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(8,8,10,.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--t);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a:not(.btn) {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line-2);
  }
  .nav-links a:not(.btn):last-of-type { border-bottom: none; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-actions .btn { flex: 1; min-width: 160px; }
  .hero-badges { gap: 14px 22px; }
  .badge-num { font-size: 1.3rem; }

  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-tall { grid-row: span 2; }
  .g-wide { grid-column: span 2; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-box { padding: 50px 24px; }

  .quote-form { padding: 28px 20px; }
  .quote-grid { grid-template-columns: 1fr; gap: 16px; }

  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

@media (max-width: 420px) {
  h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .btn { padding: 12px 22px; font-size: .92rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .g-tall, .g-wide { grid-row: auto; grid-column: auto; }
}

/* ---------- A11Y ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

::selection { background: var(--gold); color: #000; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* =========================================
   VIDEO GALERÍA - S&L PRODUCTIONS
========================================= */

.g-video {
  position: relative;
  overflow: hidden;
}

.gallery-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Botón de sonido */

.video-sound-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 16px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;

  background: rgba(5, 5, 5, 0.72);
  color: #fff;

  font-family: inherit;
  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.video-sound-btn:hover {
  transform: translateY(-2px);
  background: rgba(5, 5, 5, 0.9);
  border-color: rgba(212, 175, 55, 0.7);
}

.video-sound-btn.sound-on {
  border-color: rgba(212, 175, 55, 0.8);
}

/* Celulares */

@media (max-width: 768px) {

  .video-sound-btn {
    top: 12px;
    right: 12px;

    padding: 9px 12px;
    font-size: 12px;
  }

}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-showcase {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* VIDEO */
.hero-showcase-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

/* OSCURECIDO CINEMÁTICO */
.hero-showcase-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.12) 40%,
      rgba(0, 0, 0, 0.85) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55),
      transparent 60%
    );
}

/* GLOW */
.hero-showcase-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
  border-radius: 50%;

  background: rgba(255, 70, 20, 0.32);
  filter: blur(90px);

  z-index: 2;

  animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from {
    opacity: 0.45;
    transform: scale(0.9);
  }

  to {
    opacity: 0.85;
    transform: scale(1.15);
  }
}

/* LIVE */
.hero-live {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 4;

  display: flex;
  align-items: center;
  gap: 9px;

  padding: 9px 14px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);

  color: #fff;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.live-dot {
  width: 8px;
  height: 8px;

  background: #ff3c20;
  border-radius: 50%;

  box-shadow: 0 0 12px #ff3c20;

  animation: livePulse 1.2s infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.7);
  }
}

/* CONTENIDO */
.hero-showcase-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 95px;

  z-index: 4;

  color: #fff;
}

.showcase-kicker {
  display: block;
  margin-bottom: 10px;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;

  opacity: 0.7;
}

.hero-showcase-content h3 {
  margin: 0;

  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.92;

  font-weight: 300;
  letter-spacing: -0.04em;
}

.hero-showcase-content h3 strong {
  display: block;

  font-weight: 800;
}

/* SERVICIOS */
.showcase-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 22px;
}

.showcase-services span {
  padding: 7px 11px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);

  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* FOOTER */
.hero-showcase-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 4;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.hero-showcase-footer small {
  display: block;

  margin-bottom: 3px;

  font-size: 8px;
  letter-spacing: 0.2em;

  color: rgba(255, 255, 255, 0.5);
}

.hero-showcase-footer strong {
  color: #fff;

  font-size: 11px;
  letter-spacing: 0.13em;
}

/* BARRAS DE SEÑAL */
.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;

  height: 22px;
}

.signal-bars span {
  display: block;

  width: 3px;

  border-radius: 3px;

  background: #fff;

  animation: signalMove 0.8s ease-in-out infinite alternate;
}

.signal-bars span:nth-child(1) {
  height: 7px;
}

.signal-bars span:nth-child(2) {
  height: 14px;
  animation-delay: 0.1s;
}

.signal-bars span:nth-child(3) {
  height: 20px;
  animation-delay: 0.2s;
}

.signal-bars span:nth-child(4) {
  height: 11px;
  animation-delay: 0.3s;
}

.signal-bars span:nth-child(5) {
  height: 17px;
  animation-delay: 0.4s;
}

@keyframes signalMove {
  from {
    transform: scaleY(0.45);
    opacity: 0.4;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* SCAN LINE */
.hero-scanline {
  position: absolute;
  left: 0;
  right: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.55),
      transparent
    );

  z-index: 5;
  opacity: 0.3;

  animation: scanHero 7s linear infinite;
}

@keyframes scanHero {
  from {
    top: 0;
  }

  to {
    top: 100%;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .hero-showcase {
    min-height: 470px;
    border-radius: 22px;
  }

  .hero-showcase-content {
    left: 22px;
    right: 22px;
    bottom: 88px;
  }

  .hero-showcase-footer {
    padding: 17px 22px;
  }

  .hero-live {
    top: 20px;
    left: 20px;
  }

}
/* ---------- FOOTER: REDES SOCIALES ---------- */
.social-title {
  margin: 22px 0 10px;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-2);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social-link {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  color: var(--muted);
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast),
              transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.social-link:hover,
.social-link:focus-visible {
  color: var(--gold-2);
  border-color: var(--gold);
  background: rgba(212,175,55,.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,175,55,.18);
}
.social-link:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

/* ---------- COLORES DE REDES SOCIALES ---------- */

/* Instagram */
.social-link[aria-label*="Instagram"] {
  color: #E4405F;
  border-color: rgba(228, 64, 95, .35);
}

.social-link[aria-label*="Instagram"]:hover,
.social-link[aria-label*="Instagram"]:focus-visible {
  color: #FFFFFF;
  border-color: #E4405F;
  background: linear-gradient(
    135deg,
    #833AB4,
    #C13584,
    #E1306C,
    #F77737
  );
  box-shadow: 0 8px 22px rgba(225, 48, 108, .30);
}


/* TikTok */
.social-link[aria-label*="TikTok"] {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, .25);
}

.social-link[aria-label*="TikTok"]:hover,
.social-link[aria-label*="TikTok"]:focus-visible {
  color: #FFFFFF;
  border-color: #25F4EE;
  background: #111111;
  box-shadow:
    -3px 0 12px rgba(37, 244, 238, .35),
     3px 0 12px rgba(254, 44, 85, .35);
}


/* Facebook */
.social-link[aria-label*="Facebook"] {
  color: #1877F2;
  border-color: rgba(24, 119, 242, .35);
}

.social-link[aria-label*="Facebook"]:hover,
.social-link[aria-label*="Facebook"]:focus-visible {
  color: #FFFFFF;
  border-color: #1877F2;
  background: #1877F2;
  box-shadow: 0 8px 22px rgba(24, 119, 242, .30);
}

/* ---------- MARCA DE AGUA GLOBAL (logo) ---------- */
/* z-index:-1 funciona porque el background del body se propaga al canvas,
   por lo que la capa queda por delante del fondo pero detrás de todo el contenido. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("assets/logo/logo-watermark.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(55vw, 620px) auto;
  opacity: .30;
}
/* Secciones con fondo negro opaco: se vuelven transparentes (mismo color que el
   canvas del body, sin cambio visual) para que la marca de agua sea perceptible. */
.packages, .gallery, .testimonials, .quote, .servicesm, .process, .why, .flyer-section, .footer { background: transparent; }

@media (max-width: 768px) {
  body::before { background-size: min(78vw, 360px) auto; opacity: .25; }
}
@media (max-width: 768px) {
  .flyer-side .btn {
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .flyer-side .btn + .btn {
    margin-top: 14px;
  }
}
/* Animación para llamar la atención sobre las redes sociales */
@keyframes socialAttention {
  0%, 70%, 100% {
    transform: translateY(0) scale(1);
  }

  75% {
    transform: translateY(-5px) scale(1.08);
  }

  80% {
    transform: translateY(0) scale(1);
  }

  85% {
    transform: translateY(-3px) scale(1.05);
  }

  90% {
    transform: translateY(0) scale(1);
  }
}

.social-link {
  animation: socialAttention 1.7s ease-in-out infinite;
}
.social-link:nth-child(1) {
  animation-delay: 0s;
}

.social-link:nth-child(2) {
  animation-delay: .35s;
}

.social-link:nth-child(3) {
  animation-delay: .70s;
}
@media (max-width: 768px) {
  .social-link {
    animation: socialAttention 2.7s ease-in-out infinite;
    will-change: transform;
  }

  .social-link:nth-child(1) {
    animation-delay: 0s;
  }

  .social-link:nth-child(2) {
    animation-delay: .25s;
  }

  .social-link:nth-child(3) {
    animation-delay: .50s;
  }
}

@media (max-width: 768px) {
  .navbar-logo-img {
    height: 55px;
  }

  .navbar-logo-sub {
    font-size: .50rem;
    letter-spacing: 4px;
    margin-top: -12px;
  }
}
/* Forzar asistente a la izquierda */
.sl-assist-toggle {
  left: 24px !important;
  right: auto !important;
  bottom: 24px !important;
}

.sl-assist-panel {
  left: 24px !important;
  right: auto !important;
  bottom: 78px !important;
}

@media (max-width: 720px) {
  .sl-assist-toggle {
    left: 12px !important;
    right: auto !important;
    bottom: 16px !important;

    padding: 8px 11px !important;
    font-size: 0.72rem !important;
    gap: 6px;
  }

  .sl-assist-toggle svg {
    width: 18px;
    height: 18px;
  }

  .sl-assist-panel {
    left: 12px !important;
    right: auto !important;
    bottom: 65px !important;
  }
}
.footer-description {
  margin-top: 14px;
  max-width: 340px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .footer-description {
    max-width: 100%;
    text-align: center;
    margin: 14px auto 0;
    padding: 0 12px;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .footer-social {
    text-align: center;
  }

  .footer-social .social-links {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-description {
    max-width: 420px;
    text-align: center;
    margin: 14px auto 0;
    padding: 0 12px;
    line-height: 1.6;
  }
}