/* ============================================================
   GRUPO GENNESIS · Hoja de estilos
   Paleta: negro · plata/cromo · blanco · acento rojo (del logo)
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --bg: #060608;
  --bg-alt: #0d0d10;
  --surface: #141418;
  --surface-2: #1d1d22;
  --text: #f4f5f7;
  --muted: #a7a9b0;

  /* Plata / cromo (rol de acento principal) */
  --silver: #c9ccd2;
  --silver-soft: #f2f4f7;
  --silver-deep: #7f838b;
  --chrome-hi: #ffffff;

  /* Rojo del logo (acento secundario, uso moderado) */
  --red: #e0362b;
  --red-soft: #ff5a4d;

  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9);
  --glow-silver: 0 0 40px -8px rgba(210, 214, 220, 0.35);
  --serif: "Poppins", system-ui, sans-serif;
  --sans: "Montserrat", system-ui, sans-serif;
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--silver); color: #0a0a0c; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 26px; }

/* ===== BARRA DE PROGRESO ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--silver-deep), var(--silver-soft), var(--chrome-hi));
  z-index: 200; box-shadow: 0 0 12px rgba(230, 233, 238, 0.55);
}

/* ===== BOTONES ===== */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(135deg, #8f939b 0%, #e9ecf0 45%, #ffffff 55%, #b9bdc4 100%);
  color: #101013; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.2px;
  padding: 15px 30px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 14px 34px -16px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255,255,255,0.7);
  cursor: pointer; overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.85), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn:hover { transform: translateY(-3px); filter: brightness(1.05); box-shadow: 0 20px 44px -16px rgba(0,0,0,0.95), inset 0 1px 0 rgba(255,255,255,0.8); }
.btn:hover::after { left: 130%; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03); color: var(--text);
  border: 1px solid var(--border-strong); box-shadow: none; backdrop-filter: blur(4px);
}
.btn-ghost::after { display: none; }
.btn-ghost:hover { border-color: var(--silver); color: var(--chrome-hi); background: rgba(255, 255, 255, 0.06); }
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.wa-dot { width: 9px; height: 9px; border-radius: 50%; background: #25d366; box-shadow: 0 0 10px #25d366; }

.text-link { color: var(--silver-soft); font-weight: 500; font-size: 0.9rem; transition: 0.2s; }
.text-link:hover { color: var(--chrome-hi); }

.eyebrow {
  text-transform: uppercase; letter-spacing: 3.5px; font-size: 0.72rem;
  color: var(--silver); font-weight: 600; margin-bottom: 16px;
}
.eyebrow::first-letter { color: var(--red); }
.accent {
  font-style: italic;
  background: linear-gradient(120deg, #ffffff, #c9ccd2 40%, #ffffff 60%, #9a9ea6);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

h1, h2, h3 { font-family: var(--serif); line-height: 1.12; font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 6, 8, 0.85); backdrop-filter: blur(14px) saturate(1.2);
  border-color: var(--border); box-shadow: 0 10px 30px -20px rgba(0,0,0,0.9);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 46px; width: auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6)); transition: transform 0.3s; }
.brand:hover .brand-logo { transform: scale(1.04); }
.footer-logo { height: 56px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { position: relative; font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--silver), var(--chrome-hi)); transition: width 0.3s ease;
}
.nav a:not(.nav-cta):hover { color: var(--text); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { color: #101013 !important; }
/* Iconos sociales en el header */
.header-socials { display: inline-flex; gap: 8px; align-items: center; }
.header-socials a { width: 34px; height: 34px; }
.nav .header-socials a::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; isolation: isolate;
  background: var(--bg); overflow: hidden;
}

/* Galería de fondo con transición cruzada + zoom Ken Burns */
.hero-slideshow { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.8s ease-in-out;
  will-change: opacity, transform;
}
.hero-slide.is-active { opacity: 1; animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1.0); } }

/* Capa oscura para legibilidad del texto */
.hero-scrim {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,6,8,0.92) 0%, rgba(6,6,8,0.72) 42%, rgba(6,6,8,0.45) 100%),
    linear-gradient(180deg, rgba(6,6,8,0.55) 0%, transparent 35%, rgba(6,6,8,0.85) 100%),
    radial-gradient(circle at 70% 40%, rgba(224,54,43,0.10), transparent 55%);
}

/* Partículas */
.hero-particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; background: var(--silver-soft); opacity: 0; animation: floatUp linear infinite; }
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-110vh) scale(1.3); opacity: 0; }
}

.hero-content { position: relative; padding-top: 100px; max-width: 820px; }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 800; margin-bottom: 24px; }
.hero-sub { font-size: clamp(1.02rem, 2vw, 1.28rem); color: var(--muted); max-width: 600px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }
.hero-stats { list-style: none; display: flex; flex-wrap: wrap; gap: 48px; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3rem); line-height: 1; font-weight: 800;
  background: linear-gradient(120deg, #ffffff, #c9ccd2 55%, #8f939b);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stats span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.6px; margin-top: 8px; }

.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 26px; height: 44px; border: 2px solid var(--border-strong); border-radius: 14px; display: grid; place-items: start center; padding-top: 8px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 2px; background: var(--silver-soft); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ===== MARQUEE ===== */
.marquee { background: linear-gradient(90deg, var(--bg-alt), var(--surface), var(--bg-alt)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; align-items: center; gap: 26px; width: max-content; animation: scrollX 32s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 1.35rem; color: var(--text); white-space: nowrap; opacity: 0.82; }
.marquee-track i { color: var(--silver); font-style: normal; font-size: 0.9rem; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECCIONES ===== */
.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 66px; padding: 0 24px; }
.section-lead { color: var(--muted); margin-top: 16px; }

/* ===== ACERCA ===== */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 66px; align-items: center; }
.about-text p { color: var(--muted); margin: 20px 0; }
.about-text h2 { margin-bottom: 6px; }
.about-cta { display: flex; align-items: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.feature-list { list-style: none; display: grid; gap: 18px; }
.feature-list li {
  display: flex; gap: 18px; align-items: flex-start;
  background: linear-gradient(180deg, var(--surface), rgba(20,20,24,0.6));
  border: 1px solid var(--border); padding: 22px; border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature-list li:hover { transform: translateX(6px); border-color: rgba(201,204,210,0.35); box-shadow: var(--glow-silver); }
.feature-icon {
  font-size: 1.4rem; width: 48px; height: 48px; flex: none; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px;
}
.feature-list h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 600; margin-bottom: 4px; letter-spacing: 0; }
.feature-list p { color: var(--muted); font-size: 0.9rem; }

/* ===== PAQUETES ===== */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.package {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--surface), rgba(20,20,24,0.5));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 38px 30px; box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.package:hover { transform: translateY(-8px); border-color: rgba(201,204,210,0.4); }
.package.featured {
  border-color: rgba(201, 204, 210, 0.45);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow), var(--glow-silver);
}
.package.featured::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.package-tag {
  position: absolute; top: -14px; left: 30px;
  background: linear-gradient(135deg, #8f939b, #f2f4f7 55%, #b9bdc4); color: #101013;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 6px 16px; border-radius: 999px; box-shadow: 0 8px 20px -8px rgba(0,0,0,0.9);
}
.package-head { min-height: 128px; }
.package h3 { font-size: 1.6rem; margin-bottom: 12px; color: var(--silver-soft); }
.package-desc { color: var(--muted); font-size: 0.92rem; }
.package-list { list-style: none; margin: 24px 0 30px; display: grid; gap: 13px; flex: 1; }
.package-list li { position: relative; padding-left: 28px; font-size: 0.9rem; color: var(--text); }
.package-list li::before { content: "♪"; position: absolute; left: 0; top: 0; color: var(--silver); font-size: 1rem; }
.packages-note { text-align: center; color: var(--muted); margin-top: 30px; font-size: 0.95rem; }

/* ===== EXTRAS ===== */
.extras {
  margin-top: 40px; text-align: center;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 38px 28px;
  box-shadow: var(--shadow);
}
.extras-title { font-size: 1.5rem; color: var(--silver-soft); }
.extras-lead { color: var(--muted); margin-top: 8px; font-size: 0.95rem; }
.extras-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 24px 0 28px; }
.extras-list li {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-strong);
  padding: 12px 22px; border-radius: 999px; font-weight: 500; font-size: 0.95rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.extras-list li:hover { transform: translateY(-3px); border-color: var(--red); box-shadow: 0 12px 26px -12px rgba(224,54,43,0.5); }
.extra-ic { font-size: 1.2rem; }

/* ===== GALERÍA / INSTAGRAM ===== */
.ig-card {
  max-width: 900px; margin: 0 auto;
  background: linear-gradient(180deg, var(--surface), rgba(20,20,24,0.6));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.ig-header { display: flex; align-items: center; gap: 16px; padding: 6px 6px 20px; border-bottom: 1px solid var(--border); }
.ig-avatar {
  width: 60px; height: 60px; flex: none; border-radius: 50%; padding: 3px;
  background: conic-gradient(from 45deg, #f9ce34, #ee2a7b, #6228d7, #f9ce34);
  display: grid; place-items: center;
}
.ig-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; background: #0a0a0c; border: 2px solid var(--bg); }
.ig-meta { display: flex; flex-direction: column; margin-right: auto; }
.ig-meta strong { font-family: var(--sans); font-size: 1.05rem; }
.ig-meta small { color: var(--muted); font-size: 0.82rem; }
.ig-follow {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  background: linear-gradient(90deg, #f9ce34, #ee2a7b 45%, #6228d7);
  color: #fff; font-weight: 600; font-size: 0.85rem; padding: 9px 18px; border-radius: 999px;
  transition: transform 0.2s, filter 0.2s;
}
.ig-follow:hover { transform: translateY(-2px); filter: brightness(1.08); }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.ig-tile {
  position: relative; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden;
  background-size: cover; background-position: center; cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ig-tile:hover { transform: scale(1.02); box-shadow: var(--shadow); z-index: 2; }
.ig-tile::after { content: ""; position: absolute; inset: 0; background: rgba(6,6,8,0); transition: background 0.3s; }
.ig-tile:hover::after { background: rgba(6,6,8,0.35); }
.ig-ic {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center;
  opacity: 0; transition: opacity 0.3s; color: #fff;
}
.ig-ic::before {
  content: ""; width: 34px; height: 34px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.2c3.2 0 3.6 0 4.9.07 1.17.05 1.8.25 2.23.42.56.22.96.48 1.38.9.42.42.68.82.9 1.38.17.42.37 1.06.42 2.23.06 1.3.07 1.69.07 4.9s0 3.6-.07 4.9c-.05 1.17-.25 1.8-.42 2.23-.22.56-.48.96-.9 1.38-.42.42-.82.68-1.38.9-.42.17-1.06.37-2.23.42-1.3.06-1.69.07-4.9.07s-3.6 0-4.9-.07c-1.17-.05-1.8-.25-2.23-.42a3.7 3.7 0 0 1-1.38-.9 3.7 3.7 0 0 1-.9-1.38c-.17-.42-.37-1.06-.42-2.23C2.21 15.6 2.2 15.2 2.2 12s0-3.6.07-4.9c.05-1.17.25-1.8.42-2.23.22-.56.48-.96.9-1.38.42-.42.82-.68 1.38-.9.42-.17 1.06-.37 2.23-.42C8.4 2.21 8.8 2.2 12 2.2zm0 3.13A6.67 6.67 0 1 0 18.67 12 6.67 6.67 0 0 0 12 5.33zm0 11A4.33 4.33 0 1 1 16.33 12 4.33 4.33 0 0 1 12 16.33zm6.9-11.6a1.56 1.56 0 1 0 1.56 1.56 1.56 1.56 0 0 0-1.56-1.56z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.2c3.2 0 3.6 0 4.9.07 1.17.05 1.8.25 2.23.42.56.22.96.48 1.38.9.42.42.68.82.9 1.38.17.42.37 1.06.42 2.23.06 1.3.07 1.69.07 4.9s0 3.6-.07 4.9c-.05 1.17-.25 1.8-.42 2.23-.22.56-.48.96-.9 1.38-.42.42-.82.68-1.38.9-.42.17-1.06.37-2.23.42-1.3.06-1.69.07-4.9.07s-3.6 0-4.9-.07c-1.17-.05-1.8-.25-2.23-.42a3.7 3.7 0 0 1-1.38-.9 3.7 3.7 0 0 1-.9-1.38c-.17-.42-.37-1.06-.42-2.23C2.21 15.6 2.2 15.2 2.2 12s0-3.6.07-4.9c.05-1.17.25-1.8.42-2.23.22-.56.48-.96.9-1.38.42-.42.82-.68 1.38-.9.42-.17 1.06-.37 2.23-.42C8.4 2.21 8.8 2.2 12 2.2zm0 3.13A6.67 6.67 0 1 0 18.67 12 6.67 6.67 0 0 0 12 5.33zm0 11A4.33 4.33 0 1 1 16.33 12 4.33 4.33 0 0 1 12 16.33zm6.9-11.6a1.56 1.56 0 1 0 1.56 1.56 1.56 1.56 0 0 0-1.56-1.56z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ig-tile:hover .ig-ic { opacity: 1; }
.ig-tile { border: none; padding: 0; font: inherit; }
.video-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 46px; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(4, 4, 6, 0.9); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-figure {
  position: relative; margin: 0; max-width: min(1000px, 92vw); max-height: 86vh;
  display: flex; flex-direction: column; transform: scale(0.96); transition: transform 0.3s ease;
}
.lightbox.open .lb-figure { transform: scale(1); }
.lb-figure img {
  max-width: 100%; max-height: 78vh; width: auto; height: auto; margin: 0 auto;
  border-radius: 14px 14px 0 0; object-fit: contain; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.9);
}
.lb-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--surface); border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 14px 14px; padding: 12px 16px;
}
.lb-counter { color: var(--muted); font-size: 0.85rem; letter-spacing: 1px; }
.lb-ig {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: linear-gradient(90deg, #f9ce34, #ee2a7b 45%, #6228d7);
  color: #fff; font-weight: 600; font-size: 0.85rem; padding: 9px 18px; border-radius: 999px;
  transition: transform 0.2s, filter 0.2s;
}
.lb-ig:hover { transform: translateY(-2px); filter: brightness(1.08); }
.lb-close {
  position: absolute; top: 18px; right: 22px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border-strong);
  background: rgba(20,20,24,0.7); color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background 0.2s, transform 0.2s;
}
.lb-close:hover { background: var(--red); transform: rotate(90deg); border-color: var(--red); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--border-strong);
  background: rgba(20,20,24,0.6); color: #fff; font-size: 1.3rem; cursor: pointer;
  display: grid; place-items: center; transition: background 0.2s, transform 0.2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.14); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }
@media (max-width: 560px) {
  .lb-nav { width: 44px; height: 44px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-bar { flex-direction: column; gap: 10px; }
}

/* ===== CTA BANDA ===== */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  background-color: var(--surface); background-size: cover; background-position: center 35%;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(6,6,8,0.9) 0%, rgba(6,6,8,0.66) 55%, rgba(6,6,8,0.4) 100%),
    radial-gradient(circle at 85% 50%, rgba(224,54,43,0.18), transparent 50%);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 78px 26px; flex-wrap: wrap; }
.cta-inner h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.cta-inner p { color: var(--muted); margin-top: 10px; }

/* ===== CONTACTO ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 66px; align-items: start; }
.contact-list { list-style: none; margin: 32px 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 18px; align-items: flex-start; }
.c-icon { font-size: 1.2rem; width: 46px; height: 46px; flex: none; display: grid; place-items: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; }
.c-label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.6px; color: var(--silver); margin-bottom: 3px; }
.contact-list a:hover { color: var(--chrome-hi); }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--border-strong); color: var(--muted);
  transition: transform 0.25s, color 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.socials a:hover { transform: translateY(-3px); color: #fff; }
.socials a[data-net="fb"]:hover { background: #1877f2; border-color: #1877f2; box-shadow: 0 10px 24px -10px #1877f2; }
.socials a[data-net="ig"]:hover { background: linear-gradient(45deg, #f9ce34, #ee2a7b 45%, #6228d7); border-color: transparent; box-shadow: 0 10px 24px -10px #ee2a7b; }
.socials a[data-net="tt"]:hover { background: #000; border-color: #69C9D0; box-shadow: 0 0 0 1px #69C9D0, 0 10px 24px -10px #69C9D0; }
.socials a[data-net="yt"]:hover { background: #ff0000; border-color: #ff0000; box-shadow: 0 10px 24px -10px #ff0000; }
.footer-socials { gap: 10px; }
.footer-socials a { width: 40px; height: 40px; }

.contact-form { background: linear-gradient(180deg, var(--surface), rgba(20,20,24,0.6)); border: 1px solid var(--border); padding: 38px; border-radius: var(--radius); box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 14px 16px; color: var(--text); font-family: var(--sans); font-size: 0.92rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--silver); box-shadow: 0 0 0 3px rgba(201,204,210,0.18); }
.field textarea { resize: vertical; }
.form-note { margin-top: 16px; font-size: 0.85rem; color: var(--silver-soft); min-height: 20px; text-align: center; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 46px 0 30px; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand strong { display: block; font-family: var(--serif); font-size: 1.05rem; }
.footer-brand span { font-size: 0.8rem; color: var(--muted); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { color: var(--muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--chrome-hi); }
.footer-copy { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border); max-width: var(--max); margin-left: auto; margin-right: auto; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.75);
  transition: transform 0.25s; animation: pulseWa 2.6s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulseWa { 0% { box-shadow: 0 12px 32px -8px rgba(37,211,102,0.75), 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 12px 32px -8px rgba(37,211,102,0.75), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 12px 32px -8px rgba(37,211,102,0.75), 0 0 0 0 rgba(37,211,102,0); } }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .beam, .particle, .marquee-track, .whatsapp-float, .scroll-cue span { animation: none !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .packages { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .package-head { min-height: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    flex-direction: column; align-items: stretch; justify-content: center; gap: 6px;
    background: var(--bg-alt); border-left: 1px solid var(--border);
    padding: 40px 32px; transform: translateX(105%); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,0.85);
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 16px 0; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
  .nav .header-socials { justify-content: center; margin-top: 20px; gap: 14px; }
  .nav .header-socials a { width: 46px; height: 46px; }
  .nav-cta { margin-top: 18px; text-align: center; border-bottom: none !important; }
  .nav-toggle { display: flex; }
  .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); }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
}
@media (max-width: 520px) {
  .section { padding: 76px 0; }
  .hero-stats { gap: 30px; }
  .gallery { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; }
}
