/* ============================================================
   PATRICK ENTERTAINMENT 593 — Hoja de Estilos Principal
   Sitio: patrickentertainment593.com
   ============================================================

   ÍNDICE:
   1. Variables (colores, fuentes)
   2. Reset & Base
   3. Scrollbar
   4. Navegación
   5. Hero
   6. Marquee Strip
   7. Stats
   8. Secciones (estilos compartidos)
   9. Scroll Reveal
   10. Servicios
   11. Paquetes
   12. Galería
   13. Proceso
   14. Testimonios
   15. Contacto & Formulario
   16. Footer
   17. WhatsApp Flotante
   18. Responsive (Tablet y Móvil)
   ============================================================ */


/* ============================================================
   1. VARIABLES — Edita aquí los colores y fuentes globales
   ============================================================ */
:root {
  /* Colores principales */
  --gold:        #D4A843;   /* Dorado principal */
  --gold-light:  #F2C96A;   /* Dorado claro (hover) */
  --gold-dark:   #A07820;   /* Dorado oscuro (scrollbar) */
  --black:       #080808;   /* Negro fondo principal */
  --dark:        #0E0E0E;   /* Secciones alternas oscuras */
  --dark2:       #141414;   /* Cards, paneles */
  --dark3:       #1A1A1A;   /* Hover states */
  --white:       #F5F0E8;   /* Blanco cálido para texto */
  --muted:       #888880;   /* Texto secundario / gris */
  --accent:      #E84545;   /* Rojo acento (lasers, detalles) */

  /* Tipografías — cargadas desde Google Fonts en index.html */
  --font-display: 'Bebas Neue', cursive;      /* Títulos grandes */
  --font-title:   'Rajdhani', sans-serif;     /* Subtítulos, etiquetas */
  --font-body:    'Inter', sans-serif;        /* Texto de cuerpo */
}

.lang-switcher-desktop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher-desktop .lang-link {
  font-size: 24px;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}

.lang-switcher-desktop .lang-link:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lang-switcher-desktop .lang-link.active {
  opacity: 1;
}

.lang-divider {
  color: rgba(212, 168, 67, 0.4);
  font-size: 18px;
}

@media (max-width: 900px) {
  .lang-switcher-desktop { display: none; }
}

@media (min-width: 901px) {
  .lang-switcher-mobile { display: none; }
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}


/* ============================================================
   3. SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }


/* ============================================================
   4. NAVEGACIÓN
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0) 100%);
  transition: background 0.3s;
}
nav.scrolled {
  background: rgba(8,8,8,0.97);
  border-bottom: 0.5px solid rgba(212,168,67,0.15);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
  text-decoration: none;
  line-height: 1;
}
.nav-logo span { color: var(--white); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-family: var(--font-title);
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: var(--font-title);
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  border: none; padding: 10px 22px;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Menú hamburguesa (móvil) */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú móvil desplegable */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; width: 100%;
  background: rgba(8,8,8,0.98);
  border-bottom: 1px solid rgba(212,168,67,0.15);
  padding: 24px; flex-direction: column; gap: 20px;
  z-index: 999;
  transform: translateY(-20px); opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu a {
  font-family: var(--font-title); font-size: 18px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); text-decoration: none;
}
.mobile-menu a:hover { color: var(--gold); }

/* Selector de idioma en menú móvil */
.lang-switcher-mobile {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(212,168,67,0.1);
}

.lang-link {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}

.lang-link.active,
.lang-link:hover {
  background-color: var(--gold);
  color: var(--black);
}


/* ============================================================
   5. HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 80px 24px 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(212,168,67,0.08) 0%, transparent 70%),
    radial-gradient(ellipse at 20% 20%, rgba(232,69,69,0.06) 0%, transparent 50%),
    var(--black);
}
/* Grilla animada de fondo */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,168,67,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-move 20s linear infinite;
}
@keyframes grid-move {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
/* Rayos láser decorativos */
.laser {
  position: absolute; width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(212,168,67,0.6), transparent);
  animation: laser-sweep var(--dur) ease-in-out infinite var(--delay);
  transform-origin: bottom center; bottom: 0;
}
@keyframes laser-sweep {
  0%, 100% { transform: rotate(var(--from)); opacity: 0.4; }
  50%       { transform: rotate(var(--to));   opacity: 1; }
}

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; }

.hero-eyebrow {
  font-family: var(--font-title); font-size: 12px; font-weight: 600;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  opacity: 0; animation: fade-up 0.8s 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 18vw, 160px);
  line-height: 0.88; color: var(--white); margin-bottom: 12px;
  opacity: 0; animation: fade-up 0.8s 0.4s forwards;
}
.hero-title .highlight { color: var(--gold); position: relative; display: inline-block; }
.hero-subtitle-line {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 72px);
  line-height: 1; color: var(--muted); letter-spacing: 8px; margin-bottom: 32px;
  opacity: 0; animation: fade-up 0.8s 0.6s forwards;
}
.hero-desc {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  max-width: 480px; margin: 0 auto 40px;
  opacity: 0; animation: fade-up 0.8s 0.8s forwards;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fade-up 0.8s 1s forwards;
}
/* Botones principales */
.btn-primary {
  font-family: var(--font-title); font-size: 14px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--black); background: var(--gold); border: none;
  padding: 16px 36px; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,168,67,0.3);
}
.btn-secondary {
  font-family: var(--font-title); font-size: 14px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); background: transparent;
  border: 1px solid rgba(212,168,67,0.4);
  padding: 15px 36px; cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-secondary:hover {
  border-color: var(--gold); background: rgba(212,168,67,0.06); transform: translateY(-2px);
}
/* Flecha scroll */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fade-up 0.8s 1.4s forwards;
}
.hero-scroll span {
  font-family: var(--font-title); font-size: 10px;
  letter-spacing: 4px; color: var(--muted); text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   6. MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden; background: var(--gold);
  padding: 14px 0; white-space: nowrap;
}
.marquee-content {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}
.marquee-content span {
  font-family: var(--font-display); font-size: 16px;
  color: var(--black); letter-spacing: 4px; text-transform: uppercase;
  padding: 0 40px;
}
.marquee-dot { color: rgba(8,8,8,0.3) !important; padding: 0 !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   7. STATS
   ============================================================ */
#stats {
  background: var(--dark2);
  border-top: 1px solid rgba(212,168,67,0.1);
  border-bottom: 1px solid rgba(212,168,67,0.1);
  padding: 40px 24px;
}
.stats-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center; padding: 0 20px;
  border-right: 1px solid rgba(212,168,67,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 52px;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-title); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--muted);
}


/* ============================================================
   8. SECCIONES — Estilos compartidos
   ============================================================ */
section { padding: 100px 24px; }
.section-label {
  font-family: var(--font-title); font-size: 11px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 10vw, 80px);
  line-height: 0.92; color: var(--white); margin-bottom: 24px;
}
.section-desc {
  font-size: 15px; line-height: 1.8; color: var(--muted); max-width: 500px;
}


/* ============================================================
   9. SCROLL REVEAL — Animaciones al hacer scroll
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
/* Delays escalonados */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* ============================================================
   10. SERVICIOS
   ============================================================ */
#servicios { background: var(--dark); }
.servicios-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.servicios-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 40px;
}
/* Card de servicio individual */
.servicio-card {
  position: relative; background: var(--dark2);
  padding: 32px 28px;
  border: 0.5px solid rgba(212,168,67,0.08);
  overflow: hidden; cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.servicio-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.4s;
}
.servicio-card:hover { border-color: rgba(212,168,67,0.25); background: var(--dark3); }
.servicio-card:hover::before { width: 100%; }
.servicio-icon { font-size: 32px; margin-bottom: 16px; display: block; filter: grayscale(0.3); }
.servicio-name {
  font-family: var(--font-title); font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 8px; letter-spacing: 1px;
}
.servicio-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.servicio-num {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-display); font-size: 40px;
  color: rgba(212,168,67,0.06); line-height: 1;
}
/* Panel visual del vinilo */
.servicios-visual {
  position: relative; aspect-ratio: 9/11;
  background: var(--dark2); border: 0.5px solid rgba(212,168,67,0.12);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.dj-graphic {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
/* Vinilo animado */
.vinyl { width: 240px; height: 240px; position: relative; }
.vinyl svg { width: 100%; height: 100%; animation: spin 8s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
/* Barras ecualizador */
.eq-bars {
  position: absolute; bottom: 40px; left: 0; right: 0;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 4px; height: 60px;
}
.eq-bar {
  width: 5px; background: var(--gold); border-radius: 2px;
  animation: eq-dance var(--eq-dur) ease-in-out infinite var(--eq-delay) alternate;
  opacity: 0.7;
}
@keyframes eq-dance {
  from { height: 8px; opacity: 0.4; }
  to   { height: var(--eq-h); opacity: 0.9; }
}
/* Anillos de brillo */
.glow-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.2);
  animation: pulse-ring 3s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.05); opacity: 1; }
}


/* ============================================================
   11. PAQUETES
   ============================================================ */
#paquetes { background: var(--black); }
.paquetes-inner { max-width: 1100px; margin: 0 auto; }
.paquetes-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px; flex-wrap: wrap; gap: 24px;
}
.paquetes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
/* Card de paquete */
.paquete-card {
  background: var(--dark2); padding: 48px 36px;
  border: 0.5px solid rgba(212,168,67,0.08);
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.paquete-card:hover { transform: translateY(-4px); border-color: rgba(212,168,67,0.2); }
.paquete-card.featured { background: var(--dark3); border-color: rgba(212,168,67,0.35); }
.paquete-card.featured::after {
  content: 'MÁS POPULAR'; position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--black);
  font-family: var(--font-title); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; padding: 6px 14px;
}
.pkg-tier {
  font-family: var(--font-title); font-size: 11px;
  letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 24px;
}
.pkg-name { font-family: var(--font-display); font-size: 48px; color: var(--white); line-height: 1; margin-bottom: 8px; }
.pkg-tagline { font-size: 13px; color: var(--muted); margin-bottom: 32px; line-height: 1.5; }
.pkg-divider { width: 100%; height: 1px; background: rgba(212,168,67,0.1); margin-bottom: 28px; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pkg-features li {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.4;
}
.pkg-features li::before { content: '→'; color: var(--gold); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.pkg-cta {
  display: block; width: 100%;
  font-family: var(--font-title); font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 14px; text-align: center; cursor: pointer; text-decoration: none;
  border: 1px solid rgba(212,168,67,0.3); color: var(--gold); background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pkg-cta:hover,
.paquete-card.featured .pkg-cta { background: var(--gold); color: var(--black); border-color: var(--gold); }
.paquete-card.featured .pkg-cta:hover { background: var(--gold-light); }


/* ============================================================
   12. GALERÍA
   ============================================================ */
#galeria { background: var(--dark); }
.galeria-inner { max-width: 1100px; margin: 0 auto; }
.gallery-header { margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4px;
}
.g-item {
  background: var(--dark2); border: 0.5px solid rgba(212,168,67,0.06);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  aspect-ratio: 1; /* Todos los items cuadrados por defecto */
}
.g-item:nth-child(7n + 1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1; /* El item grande también es cuadrado */
}

@media (max-width: 600px) {
  .g-item:nth-child(7n + 1) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Placeholders de galería */
.g-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; padding: 20px;
}
.g-icon { font-size: 40px; opacity: 0.4; }
.g-label {
  font-family: var(--font-title); font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted); opacity: 0.6; text-align: center;
}
/* Barras EQ al hover en galería */
.g-eq {
  position: absolute; bottom: 0; left: 0; right: 0; height: 30px;
  display: flex; align-items: flex-end; padding: 0 12px; gap: 3px;
  opacity: 0; transition: opacity 0.3s;
}
.g-item:hover .g-eq { opacity: 1; }
.g-eq-bar {
  flex: 1; background: var(--gold); opacity: 0.6; border-radius: 1px 1px 0 0;
  animation: geq var(--gd) ease-in-out infinite var(--gde) alternate;
}
@keyframes geq { from { height: 4px; } to { height: var(--gh); } }


/* ============================================================
   13. PROCESO
   ============================================================ */
#proceso { background: var(--black); }
.proceso-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.proceso-steps { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 0.5px solid rgba(212,168,67,0.08);
  position: relative; cursor: pointer;
  transition: padding-left 0.3s;
}
.step:hover { padding-left: 8px; }
.step:hover .step-num { color: var(--gold); }
.step-num {
  font-family: var(--font-display); font-size: 36px;
  color: rgba(212,168,67,0.2); line-height: 1; flex-shrink: 0; width: 48px;
  transition: color 0.3s;
}
.step-title { font-family: var(--font-title); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: 0.5px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
/* Panel timeline visual */
.proceso-visual { position: sticky; top: 100px; }
.timeline-visual {
  background: var(--dark2); border: 0.5px solid rgba(212,168,67,0.12);
  padding: 40px; position: relative; overflow: hidden;
}
.tl-title { font-family: var(--font-title); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; }
.tl-item { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.tl-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold);
  flex-shrink: 0; box-shadow: 0 0 12px rgba(212,168,67,0.4);
}
.tl-dot.dim { background: rgba(212,168,67,0.2); box-shadow: none; }
.tl-line { width: 1px; height: 20px; background: rgba(212,168,67,0.15); margin-left: 4.5px; }
.tl-text { font-family: var(--font-title); font-size: 14px; color: var(--white); }
.tl-sub { font-size: 12px; color: var(--muted); }


/* ============================================================
   14. TESTIMONIOS
   ============================================================ */
#testimonios { background: var(--dark); }
.testimonios-inner { max-width: 1100px; margin: 0 auto; }
.test-header { margin-bottom: 60px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.test-card {
  background: var(--dark2); padding: 40px 32px;
  border: 0.5px solid rgba(212,168,67,0.08);
  position: relative; overflow: hidden; transition: border-color 0.3s;
}
.test-card:hover { border-color: rgba(212,168,67,0.2); }
.test-quote { font-family: var(--font-display); font-size: 80px; color: rgba(212,168,67,0.08); line-height: 0.7; position: absolute; top: 20px; left: 24px; }
.test-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.test-stars span { color: var(--gold); font-size: 14px; }
.test-text { font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: 28px; position: relative; z-index: 1; }
.test-author { display: flex; align-items: center; gap: 12px; border-top: 0.5px solid rgba(212,168,67,0.1); padding-top: 20px; }
.test-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--dark3); border: 1px solid rgba(212,168,67,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 14px; font-weight: 700;
  color: var(--gold); flex-shrink: 0;
}
.test-name { font-family: var(--font-title); font-size: 14px; font-weight: 700; color: var(--white); }
.test-event { font-size: 12px; color: var(--muted); margin-top: 2px; }


/* ============================================================
   15. CONTACTO & FORMULARIO
   ============================================================ */
#contacto { background: var(--black); }
.contacto-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-methods { margin-top: 40px; display: flex; flex-direction: column; gap: 4px; }
.contact-method {
  display: flex; align-items: center; gap: 20px; padding: 20px 24px;
  background: var(--dark2); border: 0.5px solid rgba(212,168,67,0.08);
  text-decoration: none; transition: border-color 0.2s, background 0.2s; cursor: pointer;
}
.contact-method:hover { border-color: rgba(212,168,67,0.25); background: var(--dark3); }
.contact-method-icon {
  font-size: 20px; width: 44px; height: 44px;
  background: rgba(212,168,67,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method-label { font-family: var(--font-title); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-method-value { font-family: var(--font-title); font-size: 15px; font-weight: 600; color: var(--white); }
.form-title { font-family: var(--font-display); font-size: 48px; color: var(--white); line-height: 1; margin-bottom: 32px; }
/* Grupos de formulario */
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group label {
  display: block; font-family: var(--font-title); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.form-control {
  width: 100%; background: var(--dark2); border: 0.5px solid rgba(212,168,67,0.15);
  color: var(--white); font-family: var(--font-body); font-size: 14px;
  padding: 14px 16px; outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-control:focus { border-color: rgba(212,168,67,0.5); }
.form-control::placeholder { color: rgba(136,136,128,0.5); }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer;
}
select.form-control option { background: var(--dark2); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; font-family: var(--font-title); font-size: 14px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--black); background: var(--gold); border: none;
  padding: 18px; cursor: pointer; margin-top: 8px;
  transition: background 0.2s, transform 0.15s; position: relative; overflow: hidden;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-submit:active::after { background: rgba(255,255,255,0.1); }
.form-success {
  display: none; background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.3); padding: 24px; text-align: center; margin-top: 16px;
}
.form-success p { font-family: var(--font-title); font-size: 16px; color: var(--gold); letter-spacing: 1px; }


/* ============================================================
   16. FOOTER
   ============================================================ */
footer {
  background: var(--dark2); border-top: 1px solid rgba(212,168,67,0.1);
  padding: 60px 24px 32px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(212,168,67,0.08); margin-bottom: 32px;
}
.footer-logo { font-family: var(--font-display); font-size: 28px; color: var(--gold); letter-spacing: 2px; text-decoration: none; display: block; margin-bottom: 16px; }
.footer-logo span { color: var(--white); }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; background: var(--dark3);
  border: 0.5px solid rgba(212,168,67,0.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 16px;
  transition: border-color 0.2s, background 0.2s; cursor: pointer;
}
.social-link:hover { border-color: var(--gold); background: rgba(212,168,67,0.1); }
.footer-col-title { font-family: var(--font-title); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copyright { font-size: 12px; color: rgba(136,136,128,0.5); }
.footer-url { font-family: var(--font-title); font-size: 12px; color: rgba(212,168,67,0.4); text-decoration: none; letter-spacing: 1px; }


/* ============================================================
   17. WHATSAPP FLOTANTE
   ============================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: wa-pulse 3s ease-in-out infinite; transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}
.wa-float svg { width: 28px; height: 28px; fill: white; }


/* ============================================================
   18. RESPONSIVE — Tablet (≤900px) y Móvil (≤600px)
   ============================================================ */
@media (max-width: 900px) {
  /* Ocultar nav de escritorio, mostrar hamburguesa */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  /* Stats en 2 columnas */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(212,168,67,0.1); }
  .stat-item:last-child { border-bottom: none; }
  /* Servicios en 1 columna */
  .servicios-inner { grid-template-columns: 1fr; gap: 48px; }
  .servicios-visual { display: none; }
  /* Paquetes en 1 columna */
  .paquetes-grid { grid-template-columns: 1fr; gap: 4px; }
  /* Galería adaptada */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item:nth-child(1) { grid-column: span 2; }
  .g-item:nth-child(2) { grid-column: span 2; }
  .g-item:nth-child(n+3) { grid-column: span 1; }
  /* Proceso en 1 columna */
  .proceso-inner { grid-template-columns: 1fr; gap: 0; }
  .proceso-visual { display: none; }
  /* Testimonios en 1 columna */
  .test-grid { grid-template-columns: 1fr; gap: 4px; }
  /* Contacto en 1 columna */
  .contacto-inner { grid-template-columns: 1fr; gap: 48px; }
  /* Footer en 2 columnas */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 600px) {
  section { padding: 72px 20px; }
  .servicios-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Estilos para el grupo de checkboxes */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--dark2);
  border: 0.5px solid rgba(212,168,67,0.15);
  padding: 16px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}

.checkbox-label:hover {
  color: var(--white);
}

.checkbox-label input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--dark3);
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.5px solid rgba(212,168,67,0.25);
  border-radius: 0;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--gold);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.checkbox-label input[type="checkbox"]:checked::before {
  transform: scale(1);
}

@media (max-width: 600px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

/* Estilos para el efecto de zoom en la galería */
.g-item img.zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 90vw;
  height: 90vh;
  object-fit: contain;
  z-index: 10000;
  cursor: zoom-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  box-shadow: 0 0 0 100vmax rgba(0,0,0,0.8);
}
