/* ════════════════════════════════════════════════════════════════
   GUERREROS DE CRISTO — Hoja de estilos principal
   Diseño moderno, premium y profesional
   ════════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta */
  --gold: #f5be27;
  --gold-light: #ffd966;
  --gold-deep: #d4a017;
  --gold-dim: rgba(245, 190, 39, 0.15);
  --gold-border: rgba(245, 190, 39, 0.25);

  --ink: #0a0a0a;
  --ink-2: #111111;
  --surface: #161616;
  --surface-2: #1d1d1d;

  --white: #ffffff;
  --white-2: #f7f7f8;
  --text-dark: #1a1a1a;
  --text-muted-dark: #5a5a5a;

  /* Tipografía */
  --font-display: 'Bebas Neue', 'Anton', 'Impact', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --radius: 12px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --container: 1240px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 20px 60px rgba(245, 190, 39, 0.18);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ─── HELPERS ──────────────────────────────────────────────────── */
.text-gold {
  color: var(--gold);
}

/* Clase de utilidad global para ocultar elementos */
.hidden {
  display: none !important;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── PRELOADER ────────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.preloader-shield {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #111;
  box-shadow: var(--shadow-gold);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.preloader-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.25em;
  color: var(--white);
}
.preloader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  animation: load 1.2s ease-in-out infinite;
}
@keyframes load {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ─── NAVBAR ───────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 190, 39, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(245, 190, 39, 0.3);
  transition: transform 0.3s ease;
}
.logo:hover .logo-icon {
  transform: rotate(-6deg) scale(1.05);
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 40px;
  backdrop-filter: blur(8px);
}
.nav-links a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  padding: 9px 16px;
  border-radius: 30px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(245, 190, 39, 0.12);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #111 !important;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(245, 190, 39, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 190, 39, 0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 40px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-lg {
  height: 52px;
  padding: 0 28px;
  font-size: 11.5px;
}
.btn-md {
  height: 44px;
  padding: 0 22px;
  font-size: 11px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #111;
  box-shadow: 0 8px 24px rgba(245, 190, 39, 0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(245, 190, 39, 0.4);
}
.btn-gold:active {
  transform: scale(0.97);
}
.btn-dark {
  background: #111;
  color: var(--gold);
}
.btn-dark:hover {
  transform: translateY(-2px);
  background: #000;
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ─── EYEBROW / LABELS ─────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow.dark {
  color: var(--gold-deep);
}

/* ─── SECTION GENERIC ──────────────────────────────────────────── */
.section {
  padding: 120px 0;
  position: relative;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 14px 0 0;
}
.section-title.dark {
  color: var(--text-dark);
}
.section-title.small {
  font-size: clamp(32px, 4.5vw, 46px);
}
.rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 22px 0 0;
}
.rule.center-rule {
  margin-left: auto;
  margin-right: auto;
}
.title-block {
  margin-bottom: 64px;
}
.title-block.center {
  text-align: center;
}
.title-block.center .eyebrow {
  justify-content: center;
}
.section-desc {
  font-size: 15px;
  line-height: 1.8;
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.6);
}
.section-desc.dark {
  color: var(--text-muted-dark);
}

/* Section background variants */
.bg-dark {
  background: var(--ink);
  color: #fff;
}
.bg-white {
  background: var(--white-2);
  color: var(--text-dark);
}
.bg-yellow {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #111;
}

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 25% 50%, rgba(245, 190, 39, 0.08), transparent 50%),
    linear-gradient(110deg,
      rgba(8, 8, 8, 0.96) 0%,
      rgba(8, 8, 8, 0.82) 45%,
      rgba(8, 8, 8, 0.55) 100%);
}
.hero-grid-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(245, 190, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 190, 39, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(54px, 8.5vw, 120px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 18px 0 24px;
}
.hero-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-body strong {
  color: var(--gold);
  font-weight: 700;
}

/* Hero group image */
.hero-group-img {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-md);
}
.hero-group-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
}
.hero-group-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  padding: 10px 14px;
}
.hero-group-badge i {
  color: var(--gold);
  font-size: 18px;
}
.hero-group-badge strong {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 800;
}
.hero-group-badge span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

/* Hero right - video frame */
.hero-right {
  position: relative;
}
.hero-video-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 9 / 14;
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 100px rgba(245, 190, 39, 0.12), var(--shadow-md);
}
.hero-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 56px;
  height: 56px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius-xl) 0 0 0;
  z-index: 2;
}
.hero-video-frame::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 56px;
  height: 56px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-xl) 0;
  z-index: 2;
}
.hero-video-pulse {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(220, 38, 38, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Scroll down indicator */
.hero-scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s ease;
}
.hero-scroll-down:hover {
  color: var(--gold);
}
.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.wheel {
  width: 3px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: wheel 1.6s infinite;
}
@keyframes wheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}
.scroll-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* ─── MARQUEE ──────────────────────────────────────────────────── */
.marquee {
  background: linear-gradient(90deg, var(--ink-2), var(--ink), var(--ink-2));
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 22px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.marquee-track span i {
  color: var(--gold);
  font-size: 18px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── NOSOTROS ─────────────────────────────────────────────────── */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.nosotros-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card);
}
.nosotros-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.nosotros-img-wrap:hover img {
  transform: scale(1.05);
}
.nosotros-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.nosotros-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted-dark);
  margin: 24px 0;
}
.nosotros-body strong {
  color: var(--gold-deep);
}
.nosotros-body p + p {
  margin-top: 16px;
}

.nosotros-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-size: 17px;
  flex-shrink: 0;
}
.feature-item h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.feature-item p {
  font-size: 12px;
  color: var(--text-muted-dark);
}

.nosotros-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 8px;
}
.stat {
  background: #fff;
  padding: 26px 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold-deep);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted-dark);
  margin-top: 6px;
}

/* ─── SERVICIOS ────────────────────────────────────────────────── */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.servicio-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}
.servicio-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.servicio-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.servicio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.servicio-card:hover .servicio-img-wrap img {
  transform: scale(1.08);
}
.servicio-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(6px);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-border);
}
.servicio-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.servicio-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 19px;
  margin-bottom: 18px;
}
.servicio-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.servicio-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.servicio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}
.tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

/* ─── RIFA CTA ─────────────────────────────────────────────────── */
.rifa-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.rifa-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 190, 39, 0.12), transparent 60%);
  pointer-events: none;
}
.rifa-left {
  position: relative;
  z-index: 1;
}
.rifa-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted-dark);
  margin: 20px 0 28px;
  max-width: 460px;
}
.rifa-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.rifa-info-box {
  background: var(--white-2);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.rifa-info-box i {
  font-size: 26px;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.rifa-info-box h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.rifa-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--text-dark);
}
.rifa-info-box p {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
}
.rifa-time {
  font-size: 12px;
  color: var(--gold-deep);
  font-weight: 700;
}

/* ─── GALERÍA ──────────────────────────────────────────────────── */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.galeria-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.galeria-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.galeria-item:hover::after {
  opacity: 1;
}
.galeria-item:hover {
  transform: scale(0.98);
}
.galeria-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.galeria-item:hover .galeria-overlay {
  opacity: 1;
}
.galeria-overlay p {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: translateY(8px);
  transition: transform 0.35s ease;
}
.galeria-item:hover .galeria-overlay p {
  transform: translateY(0);
}

/* ─── TESTIMONIOS ──────────────────────────────────────────────── */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonio-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: all 0.35s ease;
}
.testimonio-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}
.testimonio-card.featured {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border-color: var(--gold-border);
}
.testimonio-quote-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 38px;
  color: rgba(245, 190, 39, 0.15);
}
.testimonio-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
}
.testimonio-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.testimonio-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  flex-shrink: 0;
}
.author-avatar.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #111;
  border: none;
}
.testimonio-author strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.testimonio-author span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── CONTACTO ─────────────────────────────────────────────────── */
.contacto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.contacto-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  transition: all 0.3s ease;
  color: var(--text-dark);
}
.contacto-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.contacto-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-size: 22px;
  margin: 0 auto 18px;
  transition: all 0.3s ease;
}
.contacto-card:hover .contacto-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #111;
  border-color: transparent;
  transform: scale(1.1);
}
.contacto-card h4 {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted-dark);
  margin-bottom: 8px;
}
.contacto-card p {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ─── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 32px;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 30px;
  color: #fff;
  margin: 14px 0;
  letter-spacing: 0.04em;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 360px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: all 0.25s ease;
}
.footer-social:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold);
  transform: translateY(-3px);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 22px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-links a i {
  color: var(--gold);
  margin-right: 8px;
  font-size: 12px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-credit i {
  color: #ef4444;
  margin: 0 2px;
}

/* ─── FLOATING SOCIAL ──────────────────────────────────────────── */
.social-floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-floating a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  opacity: 0.85;
}
.social-floating a:hover {
  transform: scale(1.12) translateX(-4px);
  opacity: 1;
}
.social-floating .whatsapp {
  background: #25d366;
}
.social-floating a[title="Facebook"] {
  background: #1877f2;
}
.social-floating a[title="TikTok"] {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.social-floating a[title="YouTube"] {
  background: #ff0000;
}

/* ─── BACK TO TOP ──────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #111;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(245, 190, 39, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
}

/* ─── SCROLL REVEAL ANIMATION ──────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.mobile-only {
  display: none !important;
}

/* ─── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .btn-primary {
    height: 38px;
    padding: 0 16px;
    font-size: 10px;
  }
  .hamburger {
    display: flex;
  }
  .mobile-only {
    display: block !important;
    width: 100%;
  }
  .nav-links.mobile-open a.btn-mobile-cta {
    color: var(--gold) !important;
    border: 1px solid var(--gold-border) !important;
    border-radius: 24px !important;
    text-align: center !important;
    margin-top: 20px !important;
    padding: 12px 24px !important;
    background: rgba(245, 190, 39, 0.05) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .nav-links.mobile-open a.btn-mobile-cta:hover {
    background: rgba(245, 190, 39, 0.15) !important;
    color: #fff !important;
  }
  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 40px 30px;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--gold-border);
    border-radius: 0;
  }
  .nav-links.mobile-open a {
    width: 100%;
    padding: 14px 18px;
    font-size: 13px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right {
    display: none;
  }

  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .nosotros-img-wrap {
    aspect-ratio: 16 / 10;
    max-width: 600px;
  }

  .servicios-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rifa-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px;
  }
  .rifa-right {
    flex-direction: row;
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .galeria-item.large {
    grid-column: span 2;
  }

  .testimonios-grid {
    grid-template-columns: 1fr;
  }

  .contacto-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }
  .container {
    padding: 0 1.25rem;
  }
  .servicios-grid {
    grid-template-columns: 1fr;
  }
  .nosotros-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rifa-right {
    flex-direction: column;
  }
  .rifa-card {
    padding: 28px 22px;
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .hero-stat-num {
    font-size: 34px;
  }
  .hero-group-img img {
    height: 160px;
  }
  .contacto-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .galeria-grid {
    grid-auto-rows: 160px;
  }
  .marquee-track span {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .btn-primary {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ════════════════════════════════════════════════════════════════
   RIFA — Estilos del módulo de rifas
   ════════════════════════════════════════════════════════════════ */

/* ─── RIFA HERO ────────────────────────────────────────────────── */
.rifa-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}
.rifa-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 190, 39, 0.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(245, 190, 39, 0.1), transparent 45%),
    linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
}
.rifa-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(245, 190, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 190, 39, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.rifa-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rifa-hero-title {
  font-family: var(--font-display);
  font-size: clamp(50px, 8vw, 100px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 18px 0 22px;
}
.rifa-hero-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 36px;
}
.rifa-hero-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.rifa-meta-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 16px 22px;
  backdrop-filter: blur(8px);
}
.rifa-meta-box i {
  font-size: 24px;
  color: var(--gold);
}
.rifa-meta-box span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}
.rifa-meta-box strong {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.rifa-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── PREMIOS ──────────────────────────────────────────────────── */
.premios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.premio-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
  overflow: hidden;
}
.premio-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.premio-card.gold {
  background: linear-gradient(160deg, rgba(245, 190, 39, 0.12), var(--surface));
  border-color: var(--gold-border);
}
.premio-medal {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #111;
  font-family: var(--font-display);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.premio-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 30px;
  transition: transform 0.4s ease;
}
.premio-card:hover .premio-icon {
  transform: scale(1.1) rotate(-5deg);
}
.premio-card.gold .premio-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #111;
  border: none;
}
.premio-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.premio-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.premio-card.more {
  border-style: dashed;
  border-color: rgba(245, 190, 39, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.premio-card.more .premio-icon {
  background: transparent;
  border: 2px dashed var(--gold-border);
}

/* ─── CONSULTA TU BOLETO ───────────────────────────────────────── */
.consulta-card {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.consulta-tabs {
  display: flex;
  gap: 8px;
  background: var(--white-2);
  border-radius: var(--radius);
  padding: 6px;
  margin-bottom: 24px;
}
.consulta-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted-dark);
  cursor: pointer;
  transition: all 0.25s ease;
}
.consulta-tab.active {
  background: #fff;
  color: var(--gold-deep);
  box-shadow: var(--shadow-sm);
}
.consulta-form {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.consulta-input-wrap {
  position: relative;
  flex: 1;
}
.consulta-input-wrap > i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
  pointer-events: none;
}
.consulta-input-wrap input {
  width: 100%;
  height: 48px;
  padding: 0 18px 0 46px;
  background: var(--white-2);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease;
}
.consulta-input-wrap input:focus {
  border-color: var(--gold);
}
.consulta-resultado {
  min-height: 20px;
}

/* Resultado de la búsqueda */
.result-box {
  border-radius: var(--radius);
  padding: 24px;
  animation: fadeUp 0.35s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.result-found {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.result-found-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 24px;
  flex-shrink: 0;
}
.result-found-body {
  flex: 1;
  min-width: 200px;
}
.result-found-body strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.result-found-body span {
  font-size: 13px;
  color: var(--text-muted-dark);
}
.result-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.result-empty {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  text-align: center;
  color: #dc2626;
  font-size: 14px;
  font-weight: 600;
  padding: 28px;
}
.result-empty i {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}
.result-hint {
  background: var(--white-2);
  border: 1px dashed rgba(0, 0, 0, 0.15);
  text-align: center;
  color: var(--text-muted-dark);
  font-size: 13px;
  padding: 24px;
}

/* ════════════════════════════════════════════════════════════════
   CAMPAMENTOS
   ════════════════════════════════════════════════════════════════ */
.camp-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: 130px 0 82px;
  overflow: hidden;
  background: #090909;
}

.camp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.72)),
    url('../assets/guerrerostodos.jpg') center 28% / cover no-repeat;
  transform: scale(1.03);
}

.camp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 190, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 190, 39, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
}

.camp-hero-content {
  position: relative;
  z-index: 1;
}

.camp-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
}

.camp-back:hover {
  color: var(--gold);
}

.camp-title {
  max-width: 780px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 126px);
  line-height: 0.88;
  color: #fff;
}

.camp-lead {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.8;
}

.camp-detail {
  padding-top: 92px;
}

.camp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.camp-main-img,
.camp-thumbs img {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.camp-main-img {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.camp-main-img img,
.camp-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camp-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.camp-thumbs img {
  aspect-ratio: 1.15;
  border-radius: var(--radius);
}

.camp-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.camp-kicker {
  margin-top: 8px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.camp-text {
  margin-top: 22px;
  color: var(--text-muted-dark);
  font-size: 16px;
  line-height: 1.85;
}

.camp-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.camp-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  color: var(--text-dark);
  font-weight: 800;
}

.camp-feature i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--gold-dim);
  color: var(--gold-deep);
}

.camp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.camp-outline-dark {
  border-color: rgba(0, 0, 0, 0.22);
  color: var(--text-dark);
}

.camp-outline-dark:hover {
  color: #111;
  border-color: var(--gold-deep);
  background: rgba(245, 190, 39, 0.16);
}

@media (max-width: 940px) {
  .camp-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 620px) {
  .camp-hero {
    min-height: 62vh;
    padding: 112px 0 64px;
  }

  .camp-lead {
    font-size: 15px;
  }

  .camp-detail {
    padding-top: 64px;
  }

  .camp-features,
  .camp-thumbs {
    grid-template-columns: 1fr;
  }
}

/* ─── MODAL GENÉRICO ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-md);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-close:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.modal-header {
  text-align: center;
  margin-bottom: 28px;
}
.modal-header h3 {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 10px 0;
}
.modal-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

/* ─── FORMULARIOS (compartidos en modales y páginas) ───────────── */
.buy-form,
.auth-form,
.form-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row label > span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 7px;
}
.form-row label > span i {
  color: var(--gold);
  font-size: 12px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-row textarea {
  height: auto;
  padding: 14px 16px;
  resize: vertical;
  min-height: 80px;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

/* ─── Input con botón de mostrar/ocultar contraseña ────────────── */
.input-password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-password-wrap input {
  flex: 1;
  width: 100%;
  padding-right: 46px !important;
}
.input-password-wrap .toggle-pw {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s ease;
  z-index: 1;
}
.input-password-wrap .toggle-pw:hover {
  color: var(--gold);
}
.btn-block {
  width: 100%;
}
.form-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  text-align: center;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
}
.form-note i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fca5a5;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 14px 16px;
  color: #6ee7b7;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── ÉXITO POST-COMPRA ────────────────────────────────────────── */
.buy-success {
  text-align: center;
  padding: 20px 0;
}
.buy-success.hidden,
.buy-form.hidden {
  display: none;
}
.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 2px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  font-size: 36px;
  animation: pop 0.4s ease;
}
@keyframes pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.buy-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
}
.buy-success p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto 24px;
}

/* ════════════════════════════════════════════════════════════════
   AUTH — Estilos de login / registro
   ════════════════════════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px;
  position: relative;
}
.auth-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 190, 39, 0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245, 190, 39, 0.08), transparent 45%),
    linear-gradient(135deg, #0a0a0a, #141414);
}
.auth-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 190, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 190, 39, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.auth-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}
.auth-logo-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(245, 190, 39, 0.3);
}
.auth-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auth-logo-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.12em;
  color: #fff;
  text-align: center;
  line-height: 1.1;
}
.auth-logo-sub {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 4px;
}
.auth-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}
.auth-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.6;
}
.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.auth-footer a {
  color: var(--gold);
  font-weight: 700;
}
.auth-footer a:hover {
  text-decoration: underline;
}
.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  transition: color 0.2s ease;
}
.auth-back:hover {
  color: var(--gold);
}

/* Mensaje de cuenta pendiente */
.pending-notice {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-bottom: 8px;
}
.pending-notice i {
  font-size: 36px;
  color: #fbbf24;
  margin-bottom: 14px;
}
.pending-notice h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.pending-notice p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   PANEL — Dashboard de integrantes / admin
   ════════════════════════════════════════════════════════════════ */
.panel-page {
  min-height: 100vh;
  background: #0a0a0a;
  padding-top: 72px;
}
.panel-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  padding: 16px 0;
}
.panel-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.panel-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.panel-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold);
  overflow: hidden;
}
.panel-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panel-brand-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #fff;
}
.panel-brand-sub {
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.panel-user {
  display: flex;
  align-items: center;
  gap: 14px;
}
.panel-user-info {
  text-align: right;
  line-height: 1.2;
}
.panel-user-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.panel-user-role {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.panel-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-weight: 800;
  font-size: 15px;
}

.panel-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 2rem 80px;
}

/* Tabs del panel */
.panel-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
}
.panel-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.panel-tab:hover {
  color: #fff;
}
.panel-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.panel-tab-count {
  background: rgba(245, 190, 39, 0.15);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Tarjetas de estadísticas del panel */
.panel-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}
.stat-card-body span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}
.stat-card-body strong {
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  line-height: 1.1;
}

/* Tabla de registros */
.panel-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.panel-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 1rem;
  flex-wrap: wrap;
}
.panel-card-head h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel-card-head h3 i {
  color: var(--gold);
}
.panel-table {
  width: 100%;
  border-collapse: collapse;
}
.panel-table th {
  text-align: left;
  padding: 14px 26px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}
.panel-table td {
  padding: 16px 26px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}
.panel-table tr:last-child td {
  border-bottom: none;
}
.panel-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.panel-table .td-strong {
  font-weight: 700;
  color: #fff;
}
.panel-table .td-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
}
.panel-table-wrap {
  overflow-x: auto;
}

/* Badges de estado */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid;
}
.status-pendiente {
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.3);
}
.status-aprobado {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.3);
}
.status-rechazado {
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.3);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

/* Botones de acción en la tabla */
.table-actions {
  display: flex;
  gap: 8px;
}
.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}
.action-approve {
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.3);
}
.action-approve:hover {
  background: rgba(16, 185, 129, 0.15);
}
.action-reject {
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.3);
}
.action-reject:hover {
  background: rgba(239, 68, 68, 0.15);
}
.action-delete {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.action-delete:hover {
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.3);
}

/* Estados vacíos */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-state i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 18px;
}
.empty-state h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}
.empty-state p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* Sección de acción rápida (registrar venta) */
.quick-action {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 36px;
}
.quick-action-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.quick-action-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 20px;
}
.quick-action-head h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.quick-action-head p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.quick-form-grid {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}
.quick-form-grid .form-row label > span {
  font-size: 10px;
}

/* Búsqueda dentro del panel */
.panel-search {
  position: relative;
  width: 240px;
}
.panel-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}
.panel-search input {
  width: 100%;
  height: 40px;
  padding: 0 14px 0 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}
.panel-search input:focus {
  border-color: var(--gold);
}

/* Loading spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(245, 190, 39, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 40px auto;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.loading-center {
  text-align: center;
  padding: 40px;
}

/* ─── RESPONSIVE (rifa + auth + panel) ─────────────────────────── */
@media (max-width: 1024px) {
  .premios-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quick-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .premios-grid {
    grid-template-columns: 1fr;
  }
  .consulta-card {
    padding: 24px 20px;
  }
  .consulta-form {
    flex-direction: column;
  }
  .modal {
    padding: 28px 22px;
  }
  .form-row.two {
    grid-template-columns: 1fr;
  }
  .auth-card {
    padding: 32px 24px;
  }
  .quick-form-grid {
    grid-template-columns: 1fr;
  }
  .panel-search {
    width: 100%;
  }
  .panel-header-inner {
    padding: 0 1.25rem;
  }
  .panel-body {
    padding: 28px 1.25rem 60px;
  }
  .panel-table th,
  .panel-table td {
    padding: 12px 16px;
  }
}
