/* ═══════════════════════════════════════════════════════════════
   La Zona RP — Design System v2
   Paleta: rojo #e60012 / negro urbano / blanco / tricolor CO
═══════════════════════════════════════════════════════════════ */
:root {
  --bg:           #060608;
  --bg-2:         #0d0d11;
  --bg-card:      #111116;
  --bg-glass:     rgba(18, 18, 22, 0.65);
  --bg-elevated:  #18181f;
  --red:          #e60012;
  --red-dim:      #b3000e;
  --red-bright:   #ff1a28;
  --red-glow:     rgba(230, 0, 18, 0.4);
  --red-glow-sm:  rgba(230, 0, 18, 0.18);
  --white:        #f5f5f0;
  --white-dim:    #c4c4cc;
  --muted:        #72727a;
  --line:         rgba(255, 255, 255, 0.055);
  --line-bright:  rgba(255, 255, 255, 0.1);
  --co-yellow:    #fcd116;
  --co-blue:      #003893;
  --gold:         #c9a84c;
  --silver:       #a0a0b0;
  --bronze:       #a0522d;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body:    "DM Sans", system-ui, sans-serif;
  --font-script:  "Yellowtail", cursive;
  --font-mono:    ui-monospace, "Cascadia Code", monospace;
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;
  --header-h:     72px;
  --shadow-card:  0 4px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.04) inset;
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Ancla #top: primer nodo en flujo (no fijo) — evita que el ancla falle con header fixed */
.page-top {
  position: static;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  outline: none;
}
.page-top:focus { outline: none; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font-body); }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: rgba(230, 0, 18, 0.35);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ── Fondo ambiental ──────────────────────────────────────── */
.bg-noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 75%);
}

.bg-glow {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
  width: 65vmax; height: 65vmax;
  background: radial-gradient(circle, rgba(230,0,18,0.32) 0%, transparent 55%);
  filter: blur(100px);
  top: -25%; right: -20%;
  animation: glow-pulse 10s ease-in-out infinite alternate;
}
.bg-glow--2 {
  left: -25%; bottom: -15%; top: auto; right: auto;
  opacity: 0.22; animation-delay: -5s;
}
@keyframes glow-pulse {
  0%   { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.5; transform: scale(1.08); }
}

/* ── Separador decorativo ─────────────────────────────────── */
.section-divider {
  position: relative; z-index: 1;
  width: 100%; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, var(--co-blue) 20%,
    var(--red) 50%, var(--co-yellow) 80%, transparent 100%);
  opacity: 0.35;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center; padding: 0 1.75rem;
  background: rgba(6,6,8,0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}
.site-header.is-scrolled {
  background: rgba(8,8,11,0.9);
  border-bottom-color: rgba(230,0,18,0.18);
  box-shadow: 0 8px 48px rgba(0,0,0,0.55);
}

.header-inner {
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand__logo {
  width: 46px; height: 46px; object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(230,0,18,0.6));
  transition: filter var(--transition);
}
.brand:hover .brand__logo { filter: drop-shadow(0 0 18px rgba(230,0,18,0.9)); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 0.14em; color: var(--white);
}
.brand__tag {
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav > a:not(.btn) {
  position: relative;
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500;
  color: var(--white-dim); border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav > a:not(.btn)::after {
  content: "";
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--red); border-radius: 1px;
  transition: left var(--transition), right var(--transition);
}
.nav > a:not(.btn):hover { color: var(--white); }
.nav > a:not(.btn):hover::after { left: 14px; right: 14px; }

/* ── Botones ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.6rem 1.3rem; font-size: 0.88rem; font-weight: 600;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) !important; }

.btn--primary {
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-dim) 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset,
              0 4px 20px var(--red-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18) inset,
              0 8px 36px rgba(230,0,18,0.55);
}

.btn--outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(230,0,18,0.4);
  box-shadow: 0 0 24px rgba(230,0,18,0.06);
}
.btn--outline:hover {
  background: rgba(230,0,18,0.1);
  border-color: var(--red);
  box-shadow: 0 0 28px rgba(230,0,18,0.2);
}

.btn--ghost {
  background: rgba(255,255,255,0.04); color: var(--white-dim);
  border: 1px solid var(--line-bright);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white); border-color: var(--red-glow-sm);
}

.btn--lg { padding: 0.8rem 1.75rem; font-size: 1rem; border-radius: var(--radius-sm); }

/* ── Hamburger ────────────────────────────────────────────── */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 0.5rem; cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--white);
  border-radius: 1px; transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative; z-index: 1; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--header-h) + 3rem) 1.75rem 5rem;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("../img/lazonarp2.png") center top / cover no-repeat;
}
/* normativas.php — cabecera con arte dedicado */
.hero--normativas {
  min-height: min(88vh, 52rem);
}
.hero--normativas .hero__bg {
  background-image: url("../img/normativaszona.png");
  /* Entre “top” y el centro: el arte “NORMATIVAS” se lee más centrado en el hero */
  background-position: center 42%;
  background-size: cover;
}
@media (min-width: 64rem) {
  .hero--normativas .hero__bg { background-position: center 40%; }
}
@media (max-width: 40rem) {
  .hero--normativas .hero__bg { background-position: center 45%; }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(6,6,8,0.50)  0%,
      rgba(6,6,8,0.25) 30%,
      rgba(6,6,8,0.85) 75%,
      var(--bg) 100%),
    linear-gradient(90deg,
      rgba(0,56,147,0.07) 0%, transparent 35%,
      transparent 65%, rgba(252,209,22,0.05) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; width: 100%;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.25rem; padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  border-radius: 999px;
  background: rgba(6,6,8,0.6); border: 1px solid var(--line-bright);
  backdrop-filter: blur(8px);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white-dim);
  animation: fade-up 0.7s ease-out both;
}
.hero__badge-flag {
  display: flex; gap: 2px; align-items: center; flex-shrink: 0;
}
.hero__badge-flag span {
  width: 5px; height: 16px; border-radius: 2px;
}
.hero__badge-flag span:nth-child(1) { background: var(--co-yellow); }
.hero__badge-flag span:nth-child(2) { background: var(--co-blue); }
.hero__badge-flag span:nth-child(3) { background: var(--red); }

.hero__title-wrap { margin-bottom: 1rem; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 6.5rem);
  letter-spacing: 0.04em; line-height: 0.92;
  margin: 0; display: block;
  background: linear-gradient(135deg, var(--white) 40%, rgba(230,0,18,0.85) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 50px var(--red-glow));
  animation: fade-up 0.7s ease-out 0.1s both;
}
.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 5vw, 3rem);
  color: var(--white);
  text-shadow: 0 0 40px rgba(255,255,255,0.25);
  display: block; margin-top: 0.2rem;
  animation: fade-up 0.7s ease-out 0.2s both;
}
.hero__lead {
  max-width: 34rem; font-size: 1.05rem; color: var(--white-dim);
  margin: 0 0 2rem;
  animation: fade-up 0.7s ease-out 0.3s both;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  animation: fade-up 0.7s ease-out 0.4s both;
}
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; color: var(--muted); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  animation: fade-up 1s ease-out 1s both;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--red) 0%, transparent 100%);
  animation: line-drop 2s ease-in-out infinite;
}
@keyframes line-drop {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%       { opacity: 1; transform: scaleY(1); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   SECCIONES BASE
════════════════════════════════════════════════════════════ */
section { position: relative; z-index: 1; padding: 5rem 1.75rem; }

.section-inner { max-width: 1240px; margin: 0 auto; }

.section-head { margin-bottom: 3rem; text-align: center; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.6rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: ""; flex: 1; width: 28px; height: 1px; background: var(--red); opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  letter-spacing: 0.1em; margin: 0 0 0.6rem; line-height: 1;
}

.section-desc {
  max-width: 38rem; margin: 0 auto;
  color: var(--white-dim); font-size: 0.97rem;
}

/* ── Reveal al scroll ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════════════════════════
   EXPERIENCIA — Feature Cards
════════════════════════════════════════════════════════════ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.35rem;
}

.feature-card {
  position: relative; overflow: hidden;
  padding: 2rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}
/* franja tricolor en top */
.feature-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--co-yellow) 0%, var(--red) 50%, var(--co-blue) 100%);
}
/* brillo hover */
.feature-card::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(circle at 50% 0%, rgba(230,0,18,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230,0,18,0.28);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), 0 0 48px rgba(230,0,18,0.1);
}
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px; margin-bottom: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-bright);
  border-radius: 14px;
  background: linear-gradient(135deg,
    rgba(230,0,18,0.18) 0%, rgba(0,56,147,0.12) 100%);
  border: 1px solid rgba(230,0,18,0.2);
  box-shadow: 0 0 20px rgba(230,0,18,0.08);
}
.feature-icon svg {
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; letter-spacing: 0.06em;
  margin: 0 0 0.55rem; color: var(--white);
}
.feature-card p { margin: 0; font-size: 0.91rem; color: var(--white-dim); }

/* ════════════════════════════════════════════════════════════
   ESTADÍSTICAS / COUNTERS
════════════════════════════════════════════════════════════ */
.stats-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
}
.stat-item {
  flex: 1 1 160px; min-width: 140px;
  display: flex; flex-direction: column; align-items: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem; line-height: 1; color: var(--white);
  text-shadow: 0 0 30px var(--red-glow);
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.35rem;
}

/* ════════════════════════════════════════════════════════════
   DONACIONES — Cards con tier
════════════════════════════════════════════════════════════ */
.donation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.35rem;
  align-items: start;
  justify-items: center;
}

.donation-card {
  position: relative; overflow: hidden;
  width: 100%;
  max-width: 480px;
  padding: 2rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 0.25rem;
  transition: transform var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}
.donation-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.donation-card--bronze::before { background: linear-gradient(90deg,#a0522d,#cd7f32); }
.donation-card--silver::before { background: linear-gradient(90deg,#7a7a8a,#c0c0d0); }
.donation-card--gold::before   { background: linear-gradient(90deg,#b8892c,#fcd116); }
.donation-card--vip::before    { background: linear-gradient(90deg,var(--red-dim),var(--red-bright)); }

.donation-card.is-featured {
  border-color: rgba(230,0,18,0.35);
  box-shadow: 0 8px 48px rgba(230,0,18,0.15), var(--shadow-card);
  transform: scale(1.02);
}
.donation-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230,0,18,0.25);
}
.donation-card.is-featured:hover { transform: scale(1.02) translateY(-5px); }

.donation-badge {
  position: absolute; top: 0.85rem; right: 0.85rem;
  padding: 0.25rem 0.65rem; border-radius: 999px;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--red); color: #fff;
}

.donation-tier-icon {
  font-size: 2rem; margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 16px rgba(252,209,22,0.35));
}
.donation-tier-name {
  font-family: var(--font-display);
  font-size: 1.6rem; letter-spacing: 0.08em; color: var(--white);
}
.donation-price {
  font-size: 2.2rem; font-weight: 800; line-height: 1;
  color: var(--white); margin: 0.35rem 0 0;
}
.donation-price sup {
  font-size: 1rem; vertical-align: super; color: var(--muted);
}
.donation-price sub {
  font-size: 0.8rem; vertical-align: baseline; color: var(--muted); font-weight: 400;
}
.donation-price-note {
  font-size: 0.95rem; font-weight: 500; line-height: 1.45;
  color: var(--white-dim);
  margin: 0.4rem 0 0; padding: 0; max-width: 22rem;
}
.donation-divider {
  height: 1px; background: var(--line); margin: 1rem 0;
}
.donation-perks {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.55rem;
  flex: 1;
}
.donation-perks li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: var(--white-dim);
}
.perk-check {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(230,0,18,0.15);
  color: var(--red); font-size: 0.65rem;
}
.donation-cta { margin-top: 1.5rem; }

/* Métodos de pago (donaciones) */
.donation-pay {
  margin: 2.5rem auto 0;
  max-width: 920px;
  padding: 2rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.donation-pay-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 0.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.donation-pay-title__icon {
  font-size: 0.92em;
  color: var(--red-bright);
  filter: drop-shadow(0 0 10px rgba(230, 0, 18, 0.35));
}
.donation-pay-lead {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--white-dim);
  margin: 0 auto 1.75rem;
  max-width: 36rem;
}
.donation-pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.pay-region {
  padding: 1.25rem 1.2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.pay-region-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.25rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pay-region-title__icon {
  font-size: 0.88em;
  color: var(--red);
  opacity: 0.92;
}
.pay-region-desc {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.pay-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white-dim);
  transition: border-color var(--transition), color var(--transition),
              background var(--transition), box-shadow var(--transition);
}
.pay-chip__icon {
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.92;
  transition: color var(--transition), opacity var(--transition),
              transform var(--transition);
}
.pay-chip--nequi .pay-chip__icon { color: #e91e8c; }
.pay-chip--qr .pay-chip__icon { color: #8b9cff; }
.pay-chip--efecty .pay-chip__icon { color: #e6b422; }
.pay-chip--paypal .pay-chip__icon { color: #0070ba; }
.pay-chip--binance .pay-chip__icon { color: #f0b90b; }
.pay-chip:hover {
  border-color: rgba(230, 0, 18, 0.35);
  color: var(--white);
  background: rgba(230, 0, 18, 0.08);
  box-shadow: 0 0 20px rgba(230, 0, 18, 0.12);
}
.pay-chip:hover .pay-chip__icon {
  opacity: 1;
  transform: scale(1.06);
}

/* CTA normativa completa */
.normativa-cta {
  margin-top: 2.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.normativa-cta-hint {
  margin: 0; max-width: 28rem; font-size: 0.85rem; line-height: 1.5;
  color: var(--muted);
}

/* Aviso (normativas): lectura completa, texto justificado */
.normativa-aviso {
  margin: 0 0 1.75rem; padding: 1.4rem 1.5rem 1.5rem 1.35rem;
  background: linear-gradient(135deg, rgba(230, 0, 18, 0.1) 0%, var(--bg-card) 50%);
  border: 1px solid rgba(230, 0, 18, 0.35);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 28px rgba(230, 0, 18, 0.06);
}
.normativa-aviso__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
}
.normativa-aviso__p {
  margin: 0 0 0.9rem;
  text-align: justify;
  text-justify: inter-word;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--white-dim);
  hyphens: auto;
  -webkit-hyphens: auto;
}
.normativa-aviso__p:last-of-type { margin-bottom: 0; }

/* normativas.php — envoltorio, índice dinámico y volver arriba */
.normativa-main {
  padding: 2.5rem 1rem 4rem;
  scroll-margin-top: calc(var(--header-h) + 12px);
}
@media (min-width: 48rem) {
  .normativa-main { padding: 3rem 1.25rem 5rem; }
}
.normativa-doc-shell {
  max-width: 900px;
  margin: 0 auto;
}
.norm-toc.norm-toc--accordion {
  margin: 0 0 1rem;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.norm-toc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: left;
  color: var(--white);
  background: linear-gradient(180deg, rgba(230, 0, 18, 0.12) 0%, rgba(12, 12, 14, 0.92) 100%);
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.norm-toc__toggle:hover,
.norm-toc__toggle:focus-visible {
  background: linear-gradient(180deg, rgba(230, 0, 18, 0.2) 0%, rgba(18, 14, 16, 0.96) 100%);
  outline: none;
}
.norm-toc.is-open .norm-toc__toggle {
  border-bottom-color: rgba(230, 0, 18, 0.28);
}
.norm-toc__toggle-text {
  flex: 1;
  min-width: 0;
}
.norm-toc__toggle-icon {
  flex-shrink: 0;
  font-size: 0.72rem;
  color: var(--red-bright);
  transition: transform 0.3s ease;
}
.norm-toc.is-open .norm-toc__toggle-icon {
  transform: rotate(-180deg);
}
.norm-toc__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows 0.38s ease, opacity 0.26s ease, visibility 0s linear 0.38s;
}
.norm-toc.is-open .norm-toc__panel {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition: grid-template-rows 0.38s ease, opacity 0.28s ease 0.06s, visibility 0s linear 0s;
}
.norm-toc__panel-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 0.75rem;
}
.norm-toc.is-open .norm-toc__panel-inner {
  padding-top: 0.65rem;
  padding-bottom: 0.85rem;
}
@media (prefers-reduced-motion: reduce) {
  .norm-toc__panel,
  .norm-toc.is-open .norm-toc__panel {
    transition: none;
  }
  .norm-toc__toggle-icon {
    transition: none;
  }
}
.norm-toc__hint {
  display: block;
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}
.norm-toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.norm-toc__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.65rem;
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--white-dim);
  text-decoration: none;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  max-width: 100%;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.norm-toc__chip:hover,
.norm-toc__chip:focus-visible {
  color: var(--white);
  border-color: rgba(230, 0, 18, 0.45);
  background: rgba(230, 0, 18, 0.08);
  outline: none;
}
.norm-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(180deg, #1a1a1f 0%, #101014 100%);
  border: 1px solid rgba(230, 0, 18, 0.4);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.norm-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.norm-to-top:hover {
  border-color: var(--red);
  background: rgba(230, 0, 18, 0.12);
}
.norm-to-top__text { display: none; }
@media (min-width: 32rem) {
  .norm-to-top__text { display: inline; }
}
@media (max-width: 26rem) {
  .norm-to-top {
    right: 0.5rem;
    bottom: 0.75rem;
    padding: 0.5rem 0.65rem;
  }
}

/* Mega-índice por categoría (normativas) */
.norm-mega {
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.norm-mega__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.55rem;
}
.norm-mega__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}
@media (min-width: 36rem) {
  .norm-mega__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.norm-mega__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.4rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--white-dim);
  transition: border-color 0.15s, color 0.15s, background 0.15s, box-shadow 0.15s;
}
.norm-mega__btn:hover,
.norm-mega__btn:focus-visible {
  color: var(--white);
  outline: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.norm-mega__btn--general {
  border-color: rgba(160, 165, 175, 0.45);
  background: rgba(42, 44, 52, 0.85);
}
.norm-mega__btn--general:hover {
  border-color: rgba(200, 205, 215, 0.55);
  background: rgba(55, 58, 68, 0.95);
}
.norm-mega__btn--criminal {
  border-color: rgba(120, 20, 35, 0.55);
  background: rgba(55, 12, 18, 0.55);
  color: #e8c8ce;
}
.norm-mega__btn--criminal:hover {
  border-color: rgba(180, 40, 55, 0.65);
  background: rgba(70, 16, 24, 0.75);
}
.norm-mega__btn--lspd {
  border-color: rgba(35, 80, 150, 0.55);
  background: rgba(12, 28, 58, 0.65);
  color: #c8d8f2;
}
.norm-mega__btn--lspd:hover {
  border-color: rgba(55, 110, 190, 0.65);
  background: rgba(18, 40, 78, 0.8);
}
.norm-mega__btn--ems {
  border-color: rgba(30, 95, 72, 0.55);
  background: rgba(10, 38, 32, 0.65);
  color: #c4e8de;
}
.norm-mega__btn--ems:hover {
  border-color: rgba(45, 130, 95, 0.6);
  background: rgba(14, 52, 42, 0.8);
}
.norm-mega__btn--armas {
  border-color: rgba(160, 72, 28, 0.5);
  background: rgba(48, 22, 10, 0.55);
  color: #f0d4c4;
}
.norm-mega__btn--armas:hover {
  border-color: rgba(200, 95, 40, 0.55);
  background: rgba(62, 28, 12, 0.72);
}
.norm-mega__btn--vehiculos {
  border-color: rgba(110, 115, 125, 0.55);
  background: rgba(28, 30, 36, 0.9);
  color: #d8dce4;
}
.norm-mega__btn--vehiculos:hover {
  border-color: rgba(150, 155, 168, 0.5);
  background: rgba(40, 42, 50, 0.95);
}
.norm-mega__btn--vip {
  border-color: rgba(145, 118, 55, 0.45);
  background: rgba(38, 32, 14, 0.75);
  color: #ebe0bc;
}
.norm-mega__btn--vip:hover {
  border-color: rgba(185, 150, 65, 0.55);
  background: rgba(52, 44, 18, 0.88);
}
.norm-mega__btn--sanciones {
  border-color: rgba(200, 30, 40, 0.55);
  background: rgba(55, 8, 12, 0.65);
  color: #ffd0d4;
}
.norm-mega__btn--sanciones:hover {
  border-color: rgba(230, 50, 60, 0.65);
  background: rgba(72, 12, 18, 0.8);
}
.norm-toc__chapters-label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.norm-toc--accordion .norm-mega {
  margin: 0 0 0.75rem;
  padding-bottom: 0.75rem;
}
.norm-toc--accordion .norm-mega__grid {
  grid-template-columns: 1fr;
}
@media (min-width: 26rem) {
  .norm-toc--accordion .norm-mega__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 40rem) {
  .norm-toc--accordion .norm-mega__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Chips del índice por zona del documento */
.norm-toc__chip--general {
  border-color: rgba(150, 155, 168, 0.35);
}
.norm-toc__chip--vip {
  border-color: rgba(165, 135, 60, 0.35);
  background: rgba(38, 32, 14, 0.35);
}
.norm-toc__chip--criminal {
  border-color: rgba(140, 30, 45, 0.4);
  background: rgba(48, 10, 16, 0.35);
}
.norm-toc__chip--lspd {
  border-color: rgba(45, 90, 160, 0.4);
  background: rgba(12, 28, 55, 0.35);
}
.norm-toc__chip--ems {
  border-color: rgba(40, 120, 90, 0.4);
  background: rgba(10, 38, 30, 0.35);
}

/* Zonas grandes por categoría (envoltorio generado por JS) */
.norm-zone-boundary {
  display: none;
}
.norm-zone {
  margin: 0 0 2.25rem;
  padding: 0 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(8, 8, 10, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.norm-zone:last-of-type {
  margin-bottom: 0;
}
.norm-zone__head {
  margin: 0 -0.85rem 1rem;
  padding: 0.85rem 1rem 1rem;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
}
.norm-zone__tag {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.12rem 0.45rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  color: #0a0a0c;
  background: rgba(255, 255, 255, 0.82);
}
/* .norm-zone__title: estilo placa en bloque “Chips de título” (.norm-section-title) */
.norm-zone__title {
  margin: 0;
}
.norm-zone--general {
  border-left: 4px solid rgba(175, 180, 190, 0.65);
  --norm-chip-accent: rgba(175, 180, 190, 0.88);
}
.norm-zone--general .norm-zone__tag {
  background: rgba(200, 205, 215, 0.9);
  color: #121418;
}

.norm-zone--vip {
  border-left: 4px solid rgba(185, 150, 70, 0.75);
  background: linear-gradient(180deg, rgba(55, 46, 18, 0.22) 0%, rgba(8, 8, 10, 0.35) 38%);
  --norm-chip-accent: rgba(200, 165, 85, 0.9);
}
.norm-zone--vip .norm-zone__tag {
  background: linear-gradient(90deg, #c9a545, #a67c28);
  color: #1a1408;
}

.norm-zone--criminal {
  border-left: 4px solid rgba(160, 28, 45, 0.85);
  background: linear-gradient(180deg, rgba(48, 10, 16, 0.35) 0%, rgba(8, 8, 10, 0.35) 40%);
  --norm-chip-accent: rgba(200, 55, 75, 0.88);
}
.norm-zone--criminal .norm-zone__tag {
  background: rgba(140, 28, 42, 0.95);
  color: #ffe8ec;
}

.norm-zone--lspd {
  border-left: 4px solid rgba(45, 100, 190, 0.85);
  background: linear-gradient(180deg, rgba(10, 28, 58, 0.4) 0%, rgba(8, 8, 10, 0.35) 42%);
  --norm-chip-accent: rgba(90, 145, 230, 0.9);
}
.norm-zone--lspd .norm-zone__tag {
  background: rgba(40, 85, 165, 0.95);
  color: #e8f0ff;
}

.norm-zone--ems {
  border-left: 4px solid rgba(42, 130, 98, 0.85);
  background: linear-gradient(180deg, rgba(10, 42, 34, 0.4) 0%, rgba(8, 8, 10, 0.35) 40%);
  --norm-chip-accent: rgba(65, 175, 135, 0.9);
}
.norm-zone--ems .norm-zone__tag {
  background: rgba(38, 115, 88, 0.95);
  color: #e4fff6;
}

/* Anclas internas (armas, vehículos, sanciones LSPD) */
.norm-sub-hit {
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  position: relative;
}

/* Párrafos largos como bloque de lectura */
.norm-doc.doc-normativa p.norm-p--body {
  margin: 0.45rem 0;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 7, 10, 0.55);
}

/* Intro EMS: placa — estilos unificados en bloque .norm-doc.doc-normativa (más abajo) */

/* Tablas dentro del documento por zona */
.norm-zone .doc-table-wrap {
  margin-left: 0;
  margin-right: 0;
}
.norm-zone .doc-table thead th {
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
}
.norm-zone .doc-table td {
  padding: 0.58rem 0.72rem;
}

/* normativas.php — cuerpo del .docx volcado a HTML (tablas y párrafos) */
.doc-normativa {
  margin-top: 1.5rem; padding: 1.5rem 1.25rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left; color: var(--white-dim);
  font-size: 0.95rem; line-height: 1.65;
  box-shadow: var(--shadow-card);
}
.doc-normativa p {
  margin: 0.5rem 0; max-width: 100%;
}
.doc-normativa .doc-p--meta { color: var(--muted); font-size: 0.92rem; }
.doc-toc-list {
  list-style: none; margin: 0.25rem 0 1.5rem; padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-2);
}
.doc-toc-list__item {
  display: flex; align-items: flex-start; gap: 0.4rem;
  margin: 0; padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.doc-toc-list__item:last-child { border-bottom: none; }
.doc-toc-list__num {
  flex-shrink: 0; min-width: 1.4rem; color: var(--red); font-weight: 700; font-size: 0.85rem;
}
.doc-normativa .doc-list {
  margin: 0.45rem 0 1rem; padding-left: 1.3rem; color: var(--white-dim);
  line-height: 1.55;
}
.doc-normativa .doc-list--nivel { list-style: disc; }
.doc-normativa .doc-list--faccion { list-style: disc; }
.doc-normativa .doc-list--nivel::marker { color: var(--red); }
.doc-normativa .doc-list--faccion::marker { color: var(--co-yellow); }
.doc-normativa .doc-list li { margin: 0.35rem 0; }
.doc-normativa .doc-list--faccion li { padding-left: 0.15rem; }
.doc-table-wrap {
  width: 100%;
  margin: 1.15rem 0; overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  -webkit-overflow-scrolling: touch;
}
.doc-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.86rem; line-height: 1.45;
  color: var(--white-dim);
}
.doc-table th,
.doc-table td {
  border: 1px solid var(--line-bright);
  padding: 0.55rem 0.7rem;
  vertical-align: top; text-align: left;
  hyphens: auto;
  word-wrap: break-word;
}
.doc-table thead th {
  background: linear-gradient(180deg, rgba(0, 56, 147, 0.35) 0%, rgba(0, 40, 100, 0.25) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  border-color: rgba(0, 56, 147, 0.4);
}
.doc-table tbody tr:nth-child(odd) td { background: rgba(6, 6, 8, 0.4); }
.doc-table tbody tr:hover td {
  background: rgba(230, 0, 18, 0.06);
}

/* Documento norm-doc — placas: .norm-title-chip, .norm-subtitle-chip, .norm-section-title */
.norm-doc.doc-normativa {
  padding-top: 1.75rem;
  --norm-chip-accent: rgba(230, 0, 18, 0.78);
}

.norm-title-chip,
.norm-doc.doc-normativa h2.doc-h2,
.norm-doc.doc-normativa h2.doc-h2--block {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  margin: 1.35rem 0 0.7rem;
  padding: 0.48rem 0.95rem;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.35vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  line-height: 1.28;
  color: var(--white);
  background: linear-gradient(165deg, rgba(34, 34, 40, 0.98) 0%, rgba(18, 18, 22, 0.97) 50%, rgba(12, 12, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--norm-chip-accent);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.norm-doc.doc-normativa h2.doc-h2:first-child,
.norm-doc.doc-normativa h2.doc-h2--block:first-child {
  margin-top: 0.42rem;
}
.norm-doc.doc-normativa .norm-zone h2.doc-h2:first-of-type,
.norm-doc.doc-normativa .norm-zone h2.doc-h2--block:first-of-type {
  margin-top: 0.55rem;
}

.norm-section-title,
.norm-zone__title {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0.52rem 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white);
  background: linear-gradient(165deg, rgba(30, 30, 36, 0.98) 0%, rgba(14, 14, 18, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--norm-chip-accent);
  border-radius: 10px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.norm-subtitle-chip,
.norm-doc.doc-normativa h3.doc-h3,
.norm-doc.doc-normativa p.doc-p.norm-subtitle-chip {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  margin: 1rem 0 0.45rem;
  padding: 0.34rem 0.78rem;
  font-size: clamp(0.8rem, 1.9vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--white);
  background: rgba(24, 24, 30, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 2px solid var(--norm-chip-accent);
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.norm-doc.doc-normativa h3.doc-h3 {
  text-transform: none;
}
.norm-doc.doc-normativa p.doc-p.norm-subtitle-chip {
  text-transform: none;
}

.norm-doc.doc-normativa .doc-p--tit {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 0.4rem;
  padding: 0.55rem 1.05rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(165deg, rgba(26, 26, 32, 0.99) 0%, rgba(10, 10, 14, 0.97) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--norm-chip-accent);
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.norm-doc.doc-normativa .doc-toc-label,
.norm-doc.doc-normativa .doc-p--lead {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin: 0.85rem 0 0.45rem;
  padding: 0.32rem 0.72rem;
  font-weight: 700;
  font-size: clamp(0.78rem, 1.85vw, 0.9rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(22, 22, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(230, 0, 18, 0.65);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
}

.norm-doc.doc-normativa p.norm-ems-lead {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin: 1.5rem 0 0.5rem;
  padding: 0.55rem 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.4vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(165deg, rgba(16, 42, 34, 0.95) 0%, rgba(8, 22, 18, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid rgba(50, 150, 110, 0.9);
  border-radius: 10px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.38);
}

.norm-doc.doc-normativa .doc-list.norm-list-block {
  margin: 0.65rem 0 1.1rem;
  padding: 0.75rem 0.85rem 0.85rem 1.6rem;
  background: rgba(8, 8, 12, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.norm-doc.doc-normativa p.doc-p[class*="norm-p--"] {
  margin: 0.65rem 0;
  padding: 0.75rem 0.85rem 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  border-left-width: 4px;
  background: rgba(10, 10, 14, 0.88);
}
.norm-doc.doc-normativa p.norm-p--prohibido {
  border-left-color: #8b2942;
  border-color: rgba(139, 41, 66, 0.45);
  background: rgba(60, 12, 20, 0.32);
}
.norm-doc.doc-normativa p.norm-p--importante {
  border-left-color: var(--red-bright);
  border-color: rgba(230, 0, 18, 0.35);
  background: rgba(50, 8, 12, 0.3);
}
.norm-doc.doc-normativa p.norm-p--requisito {
  border-left-color: rgba(100, 140, 200, 0.95);
  border-color: rgba(80, 120, 180, 0.35);
  background: rgba(12, 20, 40, 0.35);
}
.norm-doc.doc-normativa p.norm-p--sancion {
  border-left-color: #c45c2a;
  border-color: rgba(196, 92, 42, 0.4);
  background: rgba(40, 18, 8, 0.35);
}
.norm-doc.doc-normativa p.norm-p--admin {
  border-left-color: rgba(180, 180, 190, 0.9);
  border-color: rgba(120, 120, 130, 0.4);
  background: rgba(22, 22, 28, 0.9);
}
.norm-doc.doc-normativa p.norm-p--advertencia {
  border-left-color: #b01010;
  border-color: rgba(176, 16, 16, 0.45);
  background: rgba(48, 8, 8, 0.4);
}
.norm-doc.doc-normativa p.norm-p--nota {
  border-left-color: rgba(90, 110, 140, 0.85);
  border-color: rgba(70, 85, 110, 0.35);
  background: rgba(14, 16, 22, 0.92);
}
.norm-doc.doc-normativa p.doc-p[class*="norm-p--"]::before {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0.45rem;
  padding: 0.14rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  line-height: 1.2;
}
.norm-doc.doc-normativa p.norm-p--prohibido::before {
  content: "Prohibido";
  color: #f0d0d8;
  background: rgba(139, 41, 66, 0.55);
}
.norm-doc.doc-normativa p.norm-p--importante::before {
  content: "Importante";
  color: #ffe8ea;
  background: rgba(230, 0, 18, 0.45);
}
.norm-doc.doc-normativa p.norm-p--requisito::before {
  content: "Requisito";
  color: #dce8ff;
  background: rgba(60, 100, 160, 0.45);
}
.norm-doc.doc-normativa p.norm-p--sancion::before {
  content: "Sanción";
  color: #ffe8dc;
  background: rgba(196, 92, 42, 0.45);
}
.norm-doc.doc-normativa p.norm-p--admin::before {
  content: "Staff / Admin";
  color: #e8e8ec;
  background: rgba(90, 90, 100, 0.45);
}
.norm-doc.doc-normativa p.norm-p--advertencia::before {
  content: "Advertencia";
  color: #ffd6d6;
  background: rgba(176, 16, 16, 0.5);
}
.norm-doc.doc-normativa p.norm-p--nota::before {
  content: "Nota";
  color: #d0dae8;
  background: rgba(70, 85, 110, 0.45);
}

@media (max-width: 50rem) {
  .doc-table { font-size: 0.8rem; }
  .doc-table td,
  .doc-table th { padding: 0.45rem 0.5rem; }
  .doc-normativa { padding: 1rem 0.85rem; }
}

.donation-note {
  margin-top: 2rem; text-align: center;
  font-size: 0.85rem; color: var(--muted);
}
.donation-note a { color: var(--red); text-decoration: underline; }

/* ════════════════════════════════════════════════════════════
   NUESTRO EQUIPO — Cards
════════════════════════════════════════════════════════════ */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.35rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  position: relative; overflow: hidden;
  flex: 0 1 260px;
  width: 100%;
  max-width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: center; padding: 1.75rem 1.25rem 1.5rem;
  transition: transform var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}
.team-card::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--co-yellow), var(--red), var(--co-blue));
  opacity: 0; transition: opacity var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230,0,18,0.25);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 36px rgba(230,0,18,0.1);
}
.team-card:hover::after { opacity: 0.9; }

.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  margin: 0 auto 1rem; object-fit: cover;
  border: 2px solid rgba(230,0,18,0.3);
  box-shadow: 0 0 24px rgba(230,0,18,0.2);
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.85rem;
}
.team-avatar i {
  line-height: 1;
}
.team-avatar .fa-crown {
  color: #e8c547;
  filter: drop-shadow(0 0 10px rgba(232, 197, 71, 0.4));
}
.team-avatar .fa-gears {
  color: var(--red-bright);
  filter: drop-shadow(0 0 10px rgba(230, 0, 18, 0.35));
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem; letter-spacing: 0.06em;
  margin: 0 0 0.3rem; color: var(--white);
}
.team-role {
  display: inline-block; padding: 0.2rem 0.7rem;
  border-radius: 999px; font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(230,0,18,0.14); color: var(--red);
  border: 1px solid rgba(230,0,18,0.22);
  margin-bottom: 0.75rem;
}
.team-desc { font-size: 0.85rem; color: var(--white-dim); margin: 0; }

/* ════════════════════════════════════════════════════════════
   CONECTAR
════════════════════════════════════════════════════════════ */
.connect {
  background: linear-gradient(180deg,
    transparent 0%, rgba(230,0,18,0.03) 50%, transparent 100%);
}
.connect-box {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 2rem;
  padding: 2.25rem 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(230,0,18,0.07) inset;
}
.connect-label {
  font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.45rem;
}
.connect-info {
  flex: 1 1 280px;
  min-width: min(100%, 260px);
}
.connect-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 0 0 260px;
  width: 260px;
  align-self: stretch;
  justify-content: center;
}
.connect-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 3.05rem;
  box-sizing: border-box;
}
.connect-info code {
  display: block; padding: 0.8rem 1.1rem;
  background: rgba(0,0,0,0.5); border-radius: 8px;
  font-family: var(--font-mono); font-size: 0.88rem;
  color: var(--co-yellow); border: 1px solid var(--line);
  word-break: break-all; letter-spacing: 0.03em;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.85rem; border-radius: 999px;
  font-size: 0.78rem; margin-top: 0.8rem;
  background: rgba(0,0,0,0.4); border: 1px solid var(--line);
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  animation: blink 2s step-end infinite;
}
.status-dot--on  { background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }
.status-dot--off { background: #e74c3c; box-shadow: 0 0 8px #e74c3c; }
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  position: relative; z-index: 1;
  padding: 3.5rem 1.75rem 2rem;
  background: #050508;
}
.footer-top {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  font-size: 0.88rem; color: var(--muted); max-width: 22rem; margin: 0.85rem 0 0;
}
.footer-col-title {
  font-family: var(--font-display); letter-spacing: 0.1em;
  font-size: 0.95rem; color: var(--white-dim); margin: 0 0 1rem;
}
.footer-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.footer-links a {
  font-size: 0.88rem; color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 0.75rem; padding-top: 1.75rem;
}
.footer-copy {
  font-size: 0.78rem; color: var(--muted); max-width: 34rem;
  line-height: 1.6;
}
.footer-socials {
  display: flex; gap: 0.6rem;
}

/* ── Modal invitación Discord ───────────────────────────── */
.discord-modal {
  position: fixed; inset: 0; z-index: 4000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.discord-modal.is-open {
  pointer-events: auto;
  opacity: 1; visibility: visible;
}
.discord-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 6, 8, 0.82);
  backdrop-filter: blur(6px);
}
.discord-modal__panel {
  position: relative; z-index: 1;
  max-width: 26rem; width: 100%;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(230, 0, 18, 0.28);
  border-radius: var(--radius);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(230, 0, 18, 0.1);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.discord-modal.is-open .discord-modal__panel {
  transform: scale(1) translateY(0);
}
.discord-modal__close {
  position: absolute; top: 0.65rem; right: 0.65rem;
  width: 2.25rem; height: 2.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.discord-modal__close:hover {
  background: rgba(230, 0, 18, 0.18);
  color: var(--white);
}
.discord-modal__icon {
  font-size: 2.5rem;
  color: #5865f2;
  margin-bottom: 0.35rem;
}
.discord-modal__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--white);
}
.discord-modal__text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 1.35rem;
}
.discord-modal__actions {
  display: flex; flex-direction: column; gap: 0.65rem;
  align-items: stretch;
}
.discord-modal__join { justify-content: center; }
.discord-modal__join i { margin-right: 0.5rem; }
@media (prefers-reduced-motion: reduce) {
  .discord-modal,
  .discord-modal__panel {
    transition: none;
  }
  .discord-modal.is-open .discord-modal__panel {
    transform: none;
  }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; padding: 1rem 1.25rem 1.5rem;
    background: rgba(6,6,8,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%); opacity: 0; visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
                opacity 0.35s, visibility 0.35s;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav > a:not(.btn) {
    width: 100%; text-align: center; padding: 0.85rem;
    border-radius: var(--radius-sm);
  }
  .nav > a:not(.btn)::after { display: none; }
  .nav .btn { width: 100%; margin-top: 0.5rem; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
}

@media (max-width: 700px) {
  section { padding: 3.5rem 1.25rem; }
  .stats-strip { gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: none; }
  .connect-box { padding: 1.5rem; flex-direction: column; align-items: stretch; }
  .connect-actions {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }
  .donation-card.is-featured { transform: none; }
}

/* ════════════════════════════════════════════════════════════
   TIENDA — Home strip + página catálogo
════════════════════════════════════════════════════════════ */
.tienda-home-strip {
  padding: 2.75rem 1.75rem;
}
.tienda-home-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(230, 0, 18, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}
.tienda-home-strip__copy { flex: 1 1 280px; max-width: 42rem; }
.tienda-home-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: 0.08em;
  margin: 0.35rem 0 0.5rem;
  color: var(--white);
  text-shadow: 0 0 28px rgba(230, 0, 18, 0.25);
}
.tienda-home-strip__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white-dim);
}
.tienda-home-strip__btn { flex-shrink: 0; }

.tienda-page-intro {
  padding-top: clamp(6.5rem, 14vw, 8.5rem);
  padding-bottom: 1rem;
}
.tienda-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.tienda-toc__link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.tienda-toc__link:hover {
  color: var(--white);
  border-color: rgba(230, 0, 18, 0.45);
  background: rgba(230, 0, 18, 0.1);
}

.tienda-section { padding: 3.25rem 1.75rem; }
.tienda-block {
  max-width: 920px;
  margin: 0 auto;
}
.tienda-block-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
  color: var(--white);
}
.tienda-block-lead {
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--white-dim);
  max-width: 40rem;
}
.tienda-membresias-grid {
  justify-items: stretch;
}
.tienda-membresias-grid .donation-card {
  max-width: none;
}

/* Bloque ORGANIZACIONES: tres cards en fila (misma lógica que membresías) */
.tienda-block--orgs {
  max-width: 1280px;
}
.tienda-block--orgs .tienda-block-lead {
  max-width: 52rem;
}
.tienda-org-grid {
  align-items: stretch;
  justify-items: stretch;
}
.tienda-org-grid .tienda-org-card {
  width: 100%;
  max-width: none;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tienda-org-grid .donation-cta {
  margin-top: auto;
}
.tienda-org-grid .tienda-price-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.tienda-price-value--compact {
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: left;
  max-width: 100%;
}
.tienda-org-grid .donation-perks li {
  font-size: 0.8rem;
  gap: 0.45rem;
}
.tienda-org-grid .tienda-reqs {
  margin-top: 0.75rem;
  padding: 0.75rem 0.85rem;
}
.tienda-org-grid .tienda-alert {
  margin-top: 0.65rem;
  padding: 0.75rem 0.85rem;
}
.tienda-org-grid .tienda-reqs__list,
.tienda-org-grid .tienda-alert__list {
  font-size: 0.78rem;
  line-height: 1.45;
}
.tienda-org-grid .tienda-reqs__title {
  margin-bottom: 0.35rem;
}
.tienda-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}
.tienda-price-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.tienda-price-value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  letter-spacing: 0.06em;
  color: var(--red-bright);
  text-shadow: 0 0 20px rgba(230, 0, 18, 0.25);
}
.tienda-subhead {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin: 0 0 0.65rem;
  color: var(--white);
}
.tienda-subhead--center { text-align: center; }

.tienda-reqs {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: rgba(0, 56, 147, 0.12);
  border: 1px solid rgba(0, 90, 200, 0.25);
  border-radius: var(--radius-sm);
}
.tienda-reqs__title {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--muted);
}
.tienda-reqs__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--white-dim);
  font-size: 0.88rem;
  line-height: 1.5;
}

.tienda-alert {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--red);
  background: rgba(230, 0, 18, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.tienda-alert__title {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.45rem;
}
.tienda-alert__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--white-dim);
  font-size: 0.86rem;
  line-height: 1.5;
}

.tienda-vip-panel {
  margin-top: 1.25rem;
}
.tienda-vip-intro {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white-dim);
  margin: 0 auto 1.25rem;
  max-width: 40rem;
}
.tienda-vip-prices {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}
.tienda-vip-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-sm);
}
.tienda-vip-chip--accent {
  border-color: rgba(230, 0, 18, 0.45);
  box-shadow: 0 0 18px rgba(230, 0, 18, 0.12);
}
.tienda-vip-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* EXTRAS | LA ZONARP */
.tienda-block--extras {
  max-width: 1180px;
}
.tienda-extras-intro {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--white-dim);
  max-width: 52rem;
}
.tienda-extras-lead {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
}
.tienda-extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.15rem;
  margin-top: 1.35rem;
}
.tienda-extras-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-card);
  border-top: 3px solid rgba(230, 0, 18, 0.55);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tienda-extras-card:hover {
  border-color: rgba(230, 0, 18, 0.28);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(230, 0, 18, 0.08) inset;
}
.tienda-extras-card--wide {
  grid-column: 1 / -1;
}
.tienda-extras-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(230, 0, 18, 0.25);
  color: var(--white);
}
.tienda-extras-card__price {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.tienda-extras-card__period {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.tienda-extras-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.tienda-extras-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--white-dim);
}
.tienda-extras-card__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--white-dim);
}
.tienda-extras-prices-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tienda-extras-outro {
  margin: 2rem auto 0 !important;
  max-width: 42rem !important;
  text-align: center;
}
.tienda-extras-note {
  margin-top: 1.5rem;
  max-width: 48rem;
}
.tienda-extras-note__p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--white-dim);
}
.tienda-extras-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.75rem;
}
.tienda-extras-actions .btn {
  flex: 1 1 220px;
  justify-content: center;
  max-width: 100%;
}

/* ─── Tienda hub (categorías) + subpáginas + breadcrumb ─── */
.tienda-page--hub .tienda-hub-intro {
  padding: clamp(6.5rem, 14vw, 8.5rem) 1.75rem 3.5rem;
}
.tienda-hub-note {
  margin: 1.75rem auto 0;
  max-width: 48rem;
}
.tienda-hub-note__p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--white-dim);
}
.tienda-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.tienda-hub-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.65rem 1.45rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border-top: 3px solid rgba(230, 0, 18, 0.55);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.tienda-hub-card:hover {
  border-color: rgba(230, 0, 18, 0.28);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.38);
  transform: translateY(-3px);
}
.tienda-hub-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  color: var(--red-bright);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(230, 0, 18, 0.15) 0%, rgba(0, 56, 147, 0.1) 100%);
  border: 1px solid rgba(230, 0, 18, 0.22);
}
.tienda-hub-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.55rem;
  color: var(--white);
}
.tienda-hub-card__desc {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--white-dim);
  flex: 1;
}
.tienda-hub-card__btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.tienda-page--sub .tienda-sub-inner {
  padding-top: clamp(6.25rem, 12vw, 8rem);
  padding-bottom: 3rem;
}
.tienda-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.75rem;
}
.tienda-breadcrumb__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white-dim);
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.tienda-breadcrumb__back:hover {
  color: var(--white);
  border-color: rgba(230, 0, 18, 0.35);
  background: rgba(230, 0, 18, 0.08);
}
.tienda-breadcrumb__sep {
  color: var(--muted);
  font-size: 0.85rem;
}
.tienda-breadcrumb__current {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.tienda-section--flush {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.tienda-placeholder-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 2.25rem 1.75rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border-top: 3px solid rgba(230, 0, 18, 0.5);
}
.tienda-placeholder-card__icon {
  font-size: 2.25rem;
  color: var(--red-bright);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 14px rgba(230, 0, 18, 0.2));
}
.tienda-placeholder-card__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
  color: var(--white);
}
.tienda-placeholder-card__text {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white-dim);
}
.tienda-placeholder-card .btn {
  justify-content: center;
}

.tienda-vehiculos-resumen {
  text-align: center;
}

@media (max-width: 700px) {
  .tienda-home-strip__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .tienda-home-strip__btn { width: 100%; justify-content: center; }
  .tienda-toc { justify-content: flex-start; }
}
