/* ═══════════════════════════════════════════════════════════════
   COPITALISMO BRAVOCRÁTICO · Landing
   Orathorix · Futurista, minimalista, preciso
   ═══════════════════════════════════════════════════════════════ */

:root {
  --black: #000000;
  --bg: #0A0A0C;
  --bg-soft: #141418;
  --white: #FFFFFF;
  --gray-100: #E8E8EA;
  --gray-200: #BDBDC2;
  --gray-400: #c0c3c9;
  --gray-600: #393C40;
  --gray-800: #1F2024;
  --purple: #520971;
  --purple-soft: #7A1AA3;
  --purple-glow: rgba(82, 9, 113, 0.35);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-100);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--purple-soft); }

/* ─────────────────────────────────────────────────────────────── */
/* TOPBAR                                                            */
/* ─────────────────────────────────────────────────────────────── */

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 12, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; letter-spacing: 0.15em;
  font-size: 13px;
}
.brand-mark {
  color: var(--purple-soft);
  font-size: 18px;
  display: inline-block;
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.topnav {
  display: flex; gap: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--gray-400);
}
.topnav a:hover { color: var(--white); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #CC0000;
  transition: all 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: #0A0A0C;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 200;
}

.mobile-menu.open {
  max-height: 300px;
}

.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  padding: 14px 20px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-menu a:last-child {
  color: #c084fc;
  border-bottom: none;
}

.mobile-menu a:nth-last-child(2) {
  color: #CC0000;
}

.topbar-mobile-btns { display: none; }

@media (max-width: 720px) {
  .topnav { display: none; }
  .topbar-inner { padding: 14px 20px; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ─────────────────────────────────────────────────────────────── */
/* HERO                                                              */
/* ─────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, var(--purple-glow), transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(122, 26, 163, 0.15), transparent 55%),
    linear-gradient(180deg, #0A0A0C 0%, #060608 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  margin-bottom: 32px;
}
.dot {
  width: 6px; height: 6px;
  background: var(--purple-soft);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--purple-soft);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.accent {
  color: var(--purple-soft);
  background: linear-gradient(90deg, #9333EA, #7A1AA3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lede {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--gray-200);
  max-width: 640px;
  margin-bottom: 56px;
}

/* Video embed placeholder */
.video-wrap {
  max-width: 900px;
  margin: 0 0 56px 0;
}
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.video-frame:hover {
  border-color: var(--purple-soft);
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  background:
    radial-gradient(circle at 50% 50%, var(--purple-glow), transparent 60%),
    linear-gradient(135deg, #141418, #0A0A0C);
}
.play-icon {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  font-size: 24px;
  padding-left: 6px;
  box-shadow: 0 0 48px rgba(255,255,255,0.25);
  transition: transform 0.3s ease;
}
.video-frame:hover .play-icon { transform: scale(1.08); }
.video-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gray-400);
}
.video-soon {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
}

/* Buttons */
.hero-ctas {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}
.btn {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-radius: 4px;
  border: none; cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 0 0 1px var(--purple), 0 8px 28px var(--purple-glow);
}
.btn-primary:hover {
  background: var(--purple-soft);
  transform: translateY(-1px);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}
.btn-large {
  font-size: 17px;
  padding: 20px 36px;
}

/* Hero meta strip */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 900px;
}
.meta-item {}
.meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.meta-value {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

@media (max-width: 720px) {
  .hero { padding: 120px 20px 60px; }
  .hero-meta { grid-template-columns: 1fr; gap: 20px; }
  .btn { width: 100%; justify-content: center; }
}

/* ─────────────────────────────────────────────────────────────── */
/* SECTIONS COMMON                                                   */
/* ─────────────────────────────────────────────────────────────── */

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 40px;
  position: relative;
}
@media (max-width: 720px) {
  .section-inner { padding: 80px 20px; }
}

.section-label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gray-400);
  margin-bottom: 40px;
}
.section-label .label-num {
  color: var(--purple-soft);
}
.section-label-light .label-num { color: var(--purple-soft); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 56px;
  max-width: 900px;
}
.section-title .muted {
  color: var(--gray-400);
  font-weight: 400;
}
.section-title .accent {
  font-weight: 600;
}

.prose {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-100);
  font-weight: 300;
}
.prose p { margin-bottom: 24px; }
.prose strong {
  color: var(--white);
  font-weight: 500;
}
.prose-highlight {
  font-family: var(--font-display);
  font-size: 28px !important;
  font-weight: 500;
  color: var(--white) !important;
  letter-spacing: -0.01em;
}
.prose-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────── */
/* MANIFIESTO                                                        */
/* ─────────────────────────────────────────────────────────────── */

.manifiesto {
  background: var(--bg);
  position: relative;
}
.manifiesto::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--purple-soft));
}

/* ─────────────────────────────────────────────────────────────── */
/* MANDAMIENTOS GRID                                                 */
/* ─────────────────────────────────────────────────────────────── */

.mandamientos {
  background: var(--bg-soft);
}

.mand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.mand-card {
  background: var(--bg-soft);
  padding: 20px 24px;
  transition: background 0.3s ease;
  position: relative;
  cursor: default;
}
.mand-card:hover {
  background: #1A1A1F;
}
.mand-card:hover .mand-num {
  color: var(--purple-soft);
}

.mand-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.mand-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.mand-hook {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-200);
  font-weight: 300;
}

@media (max-width: 720px) {
  .mand-grid { grid-template-columns: 1fr; }
  .mand-card { padding: 32px 24px; }
}

/* ─────────────────────────────────────────────────────────────── */
/* DESCARGA                                                          */
/* ─────────────────────────────────────────────────────────────── */

.descarga {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.descarga::before {
  content: '';
  position: absolute;
  top: 30%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--purple-glow), transparent 70%);
  filter: blur(60px);
}
.descarga-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.download-form {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 24px;
  max-width: 520px;
  position: relative;
}
.download-form input {
  flex: 1;
  min-width: 240px;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 16px 20px;
  background: var(--bg-soft);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
}
.download-form input:focus {
  border-color: var(--purple-soft);
}
.download-form input::placeholder {
  color: var(--gray-400);
}
.form-success {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--purple-soft);
  padding: 10px 0;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.form-success.visible {
  opacity: 1;
  height: auto;
  padding: 10px 0;
}

.download-meta {
  display: flex; flex-wrap: wrap;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray-400);
}

/* PDF mockup */
.pdf-mockup {
  aspect-ratio: 210/297;
  max-width: 380px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0A0A0C, #1A0A24);
  border: 1px solid var(--purple);
  border-radius: 2px;
  padding: 40px 32px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(82,9,113,0.3),
    0 0 60px var(--purple-glow);
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
  transition: transform 0.5s ease;
  animation: pdf-float 4s ease-in-out infinite;
}

@keyframes pdf-float {
  0%, 100% { transform: perspective(1200px) rotateY(-8deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-6deg) rotateX(1deg) translateY(-8px); }
}

.pdf-mockup:hover {
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  animation-play-state: paused;
}
.pdf-mockup-inner {
  display: flex; flex-direction: column; gap: 12px;
  height: 100%;
  justify-content: center;
}
.pdf-mockup-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--purple-soft);
}
.pdf-mockup-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.pdf-mockup-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray-200);
  margin-top: 16px;
}
.pdf-mockup-author {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  margin-top: auto;
}

@media (max-width: 900px) {
  .descarga-inner { grid-template-columns: 1fr; gap: 60px; }
  .pdf-mockup { transform: none; }
}

/* ─────────────────────────────────────────────────────────────── */
/* ARQUETIPO                                                         */
/* ─────────────────────────────────────────────────────────────── */

.arquetipo {
  background: var(--bg-soft);
  text-align: center;
}
.arquetipo .section-label,
.arquetipo .section-title {
  justify-content: center;
  margin-left: auto; margin-right: auto;
}
.arquetipo .section-label { justify-content: center; }
.arquetipo .section-title { text-align: center; }

.archetype-cta {
  margin-top: 48px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.archetype-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gray-400);
}

/* ─────────────────────────────────────────────────────────────── */
/* TIENDA                                                            */
/* ─────────────────────────────────────────────────────────────── */

.tienda {
  background: var(--bg);
}

.shirts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.shirt-card {
  display: flex; flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
  min-width: 180px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.shirt-card:hover { transform: translateY(-4px); }

.shirt-preview {
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.shirt-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 20%;
  background: radial-gradient(ellipse at center top, rgba(255,255,255,0.08), transparent);
}
.shirt-black {
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,0.08);
}
.shirt-black .shirt-text { color: var(--white); }
.shirt-purple {
  background: linear-gradient(180deg, var(--purple), #2A0540);
}
.shirt-purple .shirt-text { color: var(--white); }
.shirt-white {
  background: #F5F5F7;
}
.shirt-white .shirt-text { color: var(--black); }

.shirt-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.01em;
}

.shirt-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  object-fit: cover;
  object-position: center 30%;
}

.shirt-photo-zoom {
  object-position: center 25%;
}

.shirt-info {
  display: flex; flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  flex: 1;
}
.shirt-name {
  color: var(--gray-200);
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
}
.shirt-price {
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
}
.btn-shirt {
  font-size: 11px;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  width: 100%;
  margin-top: auto;
  cursor: pointer;
  border: none;
}

.shirt-form {
  display: none;
  flex-direction: column;
  gap: 6px;
}

.shirt-email {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 8px 12px;
  background: #1A1A1A;
  border: 1px solid #333;
  color: #fff;
  border-radius: 2px;
  width: 100%;
}

.shirt-email::placeholder {
  color: #666;
}

.tienda-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gray-400);
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 900px) {
  .shirts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .shirts-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────── */
/* CARTA                                                             */
/* ─────────────────────────────────────────────────────────────── */

.carta {
  background: #F5F3F0;
  position: relative;
  overflow: hidden;
}
.carta .section-title { color: #1A1A1A; }
.carta .section-label-light .label-num,
.carta .section-label-light .label-text { color: #737880; }
.carta::before {
  display: none;
}
.carta-title {
  font-size: clamp(56px, 9vw, 120px) !important;
  margin-bottom: 40px;
}
.carta-prose {
  font-size: 19px;
  max-width: 680px;
}

.carta-email {
  max-width: 640px;
  margin: 0 auto 48px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.carta-email-header {
  padding: 16px 24px;
  border-bottom: 1px solid #E5E5E5;
  background: #FAFAFA;
}

.carta-email-row {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #737880;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.carta-email-label {
  color: #AAAAAA;
  margin-right: 8px;
}

.carta-email-body {
  padding: 32px 24px;
}

.carta-email-body p {
  font-family: var(--font-body);
  font-size: 16px;
  color: #2E2E2E;
  line-height: 2.2;
  margin-bottom: 16px;
}

.carta-email-body .carta-firma {
  margin-top: 24px;
  color: #737880;
  font-size: 14px;
}

.carteles-inline {
  margin: 32px auto;
  gap: 24px;
  max-width: 560px;
}

.carteles-inline .cartel-figura {
  max-width: 200px;
  flex: 1;
}

.carteles-inline .cartel-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.carteles-inline .carteles-vs-text {
  font-size: 20px;
  font-weight: 800;
  color: #737880;
  flex-shrink: 0;
}

.carteles-inline .cartel-caption {
  font-size: 9px;
  text-align: center;
}

.regimen-hack-wrapper {
  padding: 64px 24px;
  background: var(--black);
  text-align: center;
}

.alerta-reveal {
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
  cursor: pointer;
  width: 100%;
  background: transparent;
  border: none;
}

.isra-responde {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 24px;
  border: 1px dashed #CCCCCC;
  border-radius: 8px;
}

.isra-responde-text {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #737880;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.isra-btn {
  display: inline-block;
  margin-bottom: 16px;
}

.isra-responde-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #AAAAAA;
  letter-spacing: 0.1em;
}

.carta .cartel-caption {
  color: #737880;
}

.carta .carteles-vs-text {
  color: #2E2E2E;
}

.carteles-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.cartel-figura {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  max-width: 300px;
}

.cartel-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.carteles-vs-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--muted);
  flex-shrink: 0;
}

.cartel-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 600px) {
  .carteles-vs { flex-direction: column; gap: 16px; }
  .cartel-figura { max-width: 240px; }
  .cartel-img { height: 280px; }
  .carteles-vs-text { font-size: 20px; }
}
.carta-adjuntos {
  margin: 24px 0 8px;
  padding: 16px 0 0;
  border-top: 1px solid #e0e0e0;
}

.carta-adjuntos-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #999;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.carta-adjuntos-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.carta-adjunto {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
}

.carta-adjunto:hover {
  background: #eee;
  border-color: #ccc;
}

.carta-adjunto-thumb {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
}

.carta-adjunto-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carta-adjunto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.carta-adjunto-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.carta-adjunto-meta {
  font-family: var(--font-body);
  font-size: 11px;
  color: #999;
}

.carta-adjunto-dl {
  font-size: 14px;
  color: #bbb;
  flex-shrink: 0;
}

.carta-adjunto:hover .carta-adjunto-dl {
  color: #520971;
}

.carta-firma {
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.firma-role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  font-weight: 400;
}

/* ─────────────────────────────────────────────────────────────── */
/* PACTO BOX                                                         */
/* ─────────────────────────────────────────────────────────────── */

.pacto-box {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--purple);
}

.pacto-header {
  margin-bottom: 12px;
}

.pacto-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--purple);
}

.pacto-intro {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-200);
  margin-bottom: 20px;
}

.pacto-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pacto-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 4px;
  outline: none;
  resize: vertical;
  min-height: 80px;
}

.pacto-form textarea:focus {
  border-color: var(--purple);
}

.pacto-form textarea::placeholder {
  color: var(--gray-400);
}

.pacto-form .btn {
  align-self: flex-start;
}

.pacto-success {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--purple);
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pacto-success.visible {
  opacity: 1;
  height: auto;
  padding: 8px 0;
}

/* ─────────────────────────────────────────────────────────────── */
/* FOOTER                                                            */
/* ─────────────────────────────────────────────────────────────── */

.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 80px 40px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  margin-bottom: 64px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 600; letter-spacing: 0.15em;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-logo .brand-mark { font-size: 22px; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.4;
  color: var(--gray-200);
  font-weight: 400;
  max-width: 400px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--purple-soft);
  margin-bottom: 8px;
}
.footer-col a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-200);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 32px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}
.footer-disclaimer { max-width: 500px; }
.footer-disclaimer strong {
  color: var(--white);
  font-weight: 500;
}

@media (max-width: 720px) {
  .footer { padding: 60px 20px 30px; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
}

/* ─────────────────────────────────────────────────────────────── */
/* BRAVOCRACIA THEME — Autoritario                                   */
/* ─────────────────────────────────────────────────────────────── */

.topbar-bravo {
  background: #0A0A0A;
  border-bottom: 3px solid #CC0000;
}
.topnav-bravo a { color: #CC0000; }
.topnav-bravo a:hover { color: #FF3333; }

.nav-main {
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-main:hover {
  color: rgba(255,255,255,0.7) !important;
}

.nav-btn {
  padding: 6px 18px !important;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.nav-btn-vota {
  background: transparent;
  color: #CC0000 !important;
  border: 1px solid rgba(204,0,0,0.4);
}
.nav-btn-vota:hover {
  background: rgba(204,0,0,0.1);
  color: #FF3333 !important;
}

.nav-btn-resist {
  background: transparent;
  color: #c084fc !important;
  border: 1px solid rgba(82,9,113,0.4);
}
.nav-btn-resist:hover {
  background: rgba(82,9,113,0.15);
  color: #c084fc !important;
}
.brand-bravo { gap: 12px; }
.brand-bravo .brand-name {
  color: #CC0000;
  font-size: 14px;
  letter-spacing: 0.25em;
}
.brand-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: #CC0000;
  border: 1px solid #CC0000;
  padding: 3px 8px;
  text-transform: uppercase;
}

.hero-bravo {
  background: #050505;
  text-align: center;
  border-bottom: 3px solid #CC0000;
}
.hero-bravo .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title-bravo { text-align: center; }
.hero-lede-bravo {
  color: #ffffff;
  max-width: 700px;
  text-align: left;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  align-self: flex-start;
}
.dot-red {
  background: #CC0000 !important;
  box-shadow: 0 0 12px #CC0000 !important;
}
.accent-red {
  color: #CC0000;
  background: none;
  -webkit-text-fill-color: #CC0000;
}

.decree-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: #CC0000;
  border: 2px solid #CC0000;
  padding: 8px 20px;
  margin-bottom: 32px;
}

.bravo-portrait {
  max-width: 480px;
  margin: 48px auto 40px;
}
.portrait-img {
  width: 100%;
  border: 3px solid #CC0000;
  box-shadow: 0 20px 80px rgba(204, 0, 0, 0.3);
}

.decree-footer {
  max-width: 700px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  padding: 32px 24px;
  margin-top: 24px;
  border: 2px solid #CC0000;
  background: rgba(204, 0, 0, 0.08);
}
.decree-signed {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #CC0000;
  margin-top: 16px;
}

/* Doctrina section */
.doctrina {
  background: #F5F3F0;
  border-bottom: 3px solid #CC0000;
}
.doctrina-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.doctrina-seal {
  width: 56px; height: 56px;
  border: 2px solid #CC0000;
  border-radius: 50%;
  color: #CC0000;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #CC0000;
  flex-shrink: 0;
}
.doctrina-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.15em;
  color: #CC0000;
}
.doctrina-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #666;
  margin-top: 6px;
}
.doctrina-intro-isra p {
  margin-bottom: 4px;
}
.doctrina-intro {
  font-family: var(--font-body);
  font-size: 16px;
  color: #1A1A1A;
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.doctrina-intro-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
}

.doctrina-intro-text {
  flex: 1;
}

.doctrina-intro-img {
  flex-shrink: 0;
  width: 220px;
}

.doctrina-intro-img img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

@media (max-width: 640px) {
  .doctrina-intro-layout {
    flex-direction: column;
    gap: 24px;
  }
  .doctrina-intro-img {
    width: 160px;
    order: -1;
  }
}

.mand-grid-bravo {
  background: transparent;
  border: none;
  grid-template-columns: 1fr;
  gap: 0;
}
.mand-card-bravo {
  background: #F5F3F0 !important;
  border: none;
  border-bottom: 1px solid rgba(204,0,0,0.15);
  padding: 16px 24px !important;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mand-card-bravo:last-child { border-bottom: none; }
.mand-card-bravo:hover { background: #EDE8E3 !important; }
.mand-num-bravo {
  color: #CC0000 !important;
  font-size: 18px !important;
  min-width: 32px;
}
.mand-title-bravo {
  color: #1A1A1A !important;
  font-size: 16px !important;
  font-weight: 500;
}

.mand-hover-text {
  display: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: #CC0000;
  line-height: 1.5;
  margin: 0;
}
.mand-decree {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #666;
  margin-top: 8px;
  font-style: italic;
}

/* Tienda Bravocracia */
.tienda-bravo { background: #050505; border-bottom: 3px solid #CC0000; }
.tienda-meta-bravo {
  color: rgba(255,255,255,0.5);
  border-top-color: rgba(255,255,255,0.06);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.shirt-red {
  background: linear-gradient(180deg, #CC0000, #880000);
}
.shirt-red .shirt-text { color: #fff; }

/* Obediencia CTA */
.obediencia {
  background: #0A0A0A;
  padding: 24px 40px;
  border-bottom: 3px solid #CC0000;
  text-align: center;
}
.obediencia .doctrina-title { font-size: 16px !important; margin-bottom: 8px !important; display: inline; }
.obediencia .doctrina-sub { font-size: 11px !important; margin-bottom: 0 !important; display: inline; margin-left: 12px; }
.obediencia .btn { display: inline; margin-left: 20px; padding: 10px 20px; font-size: 13px; }
.btn-red {
  background: #CC0000;
  color: #fff;
  box-shadow: 0 0 0 1px #CC0000, 0 8px 28px rgba(204,0,0,0.3);
}
.btn-red:hover {
  background: #FF3333;
  transform: translateY(-1px);
  color: #fff;
}

/* ─────────────────────────────────────────────────────────────── */
/* GLITCH                                                            */
/* ─────────────────────────────────────────────────────────────── */

.glitch-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.glitch-scanlines {
  display: none;
}

.glitch-overlay {
  background: #0b0b0f;
  padding: 100px 40px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  overflow: hidden;
}

.glitch-overlay::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at 30% 50%, rgba(82,9,113,0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(204,0,0,0.25) 0%, transparent 60%);
  animation: neon-pulse 3s ease-in-out infinite;
}

@keyframes neon-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.glitch-text {
  position: relative;
  z-index: 3;
  padding: 56px 64px;
  max-width: 780px;
  border: 1px solid rgba(82,9,113,0.5);
  box-shadow: 0 0 30px rgba(82,9,113,0.3), 0 0 60px rgba(204,0,0,0.15), inset 0 0 30px rgba(82,9,113,0.1);
}

.glitch-line2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 32px;
  text-shadow: 0 0 20px rgba(82,9,113,0.5);
}

.glitch-countdown {
  font-family: var(--font-mono);
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 700;
  color: #CC0000;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  text-shadow: 0 0 30px rgba(204,0,0,0.6), 0 0 60px rgba(204,0,0,0.3);
  animation: countdown-glow 1.5s ease-in-out infinite;
}

@keyframes countdown-glow {
  0%, 100% { text-shadow: 0 0 30px rgba(204,0,0,0.6), 0 0 60px rgba(204,0,0,0.3); }
  50% { text-shadow: 0 0 40px rgba(204,0,0,0.9), 0 0 80px rgba(204,0,0,0.5), 0 0 120px rgba(204,0,0,0.2); }
}

.glitch-line3 {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 2;
  letter-spacing: 0.08em;
  max-width: 560px;
  margin: 0 auto;
}

.regimen-hack {
  text-align: center;
  margin-bottom: 32px;
  cursor: pointer;
}

.regimen-oculto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 40px;
  background: rgba(82,9,113,0.3);
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  max-width: 600px;
  margin: 0 auto;
}

.regimen-oculto:hover {
  background: rgba(82,9,113,0.5);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 0 20px rgba(82,9,113,0.4);
}

.regimen-lock {
  font-size: 32px;
}

.regimen-cta {
  font-family: var(--font-mono);
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 1.7;
}

.regimen-revelado {
  display: none;
}

.regimen-hack.revealed .regimen-oculto,
.alerta-reveal.revealed .regimen-oculto {
  display: none;
}

.regimen-hack.revealed .regimen-revelado,
.alerta-reveal.revealed .regimen-revelado {
  display: block;
  text-align: center;
  animation: foto-glitch 0.5s ease-out;
}

@keyframes foto-glitch {
  0% { opacity: 0; transform: scale(1.1) skewX(5deg); filter: hue-rotate(90deg) brightness(2); }
  30% { opacity: 1; transform: scale(1.02) skewX(-2deg); filter: hue-rotate(45deg) brightness(1.5); }
  60% { transform: scale(0.99) skewX(1deg); filter: hue-rotate(0deg) brightness(1.1); }
  100% { transform: scale(1) skewX(0deg); filter: none; }
}

.regimen-img {
  max-width: 800px;
  width: 100%;
  border-radius: 4px;
  margin: 0 auto;
  display: block;
}

.regimen-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

.regimen-pillados {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #CC0000;
  margin-top: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────── */
/* ALERTA CIUDADANA                                                  */
/* ─────────────────────────────────────────────────────────────── */

.alerta-ciudadana {
  background: var(--bg);
  padding: 0;
}

.alerta-ticker {
  background: #ffffff;
  border-top: 3px solid #520971;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1A1A1A;
  text-transform: uppercase;
  width: 100%;
  position: relative;
}

.alerta-ticker-track {
  display: inline-flex;
  animation: ticker-scroll 20s linear infinite;
  will-change: transform;
}

.alerta-ticker-item {
  padding: 0 32px;
  white-space: nowrap;
}

.alerta-ticker-item strong {
  color: #520971;
}

.ticker-link {
  color: #520971;
  text-decoration: none;
  pointer-events: auto;
  cursor: pointer;
}

.ticker-link:hover {
  text-decoration: underline;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.linaje-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid;
}

.adjuntos-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px;
}

.adjuntos-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.adjuntos-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adjunto-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.adjunto-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(82,9,113,0.4);
  box-shadow: 0 0 12px rgba(82,9,113,0.2);
}

.adjunto-preview {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
}

.adjunto-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adjunto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.adjunto-name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.adjunto-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.adjunto-icon {
  font-size: 16px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.adjunto-card:hover .adjunto-icon {
  color: #c084fc;
}

.alerta-banner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 40px;
  background: linear-gradient(90deg, rgba(82,9,113,0.15), transparent);
  border-left: 4px solid var(--purple);
  animation: alerta-pulse 3s ease-in-out infinite;
}

@keyframes alerta-pulse {
  0%, 100% { border-left-color: var(--purple); }
  50% { border-left-color: #9333EA; }
}

.alerta-icon {
  font-size: 36px;
  flex-shrink: 0;
  animation: glitch-heartbeat 2s ease-in-out infinite;
}

.alerta-titulo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 8px;
}

.alerta-mensaje {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-200);
  margin-bottom: 8px;
}

.alerta-mensaje strong { color: var(--white); }

.alerta-big {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.alerta-final {
  color: var(--white);
  font-weight: 500;
  margin-top: 8px;
}

.alerta-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--purple);
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(82,9,113,0.4);
}

.alerta-lona {
  display: block;
  max-width: 360px;
  margin: 20px 0;
  border: 2px solid var(--purple);
  box-shadow: 0 8px 32px rgba(82,9,113,0.3);
}

.alerta-firma {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-top: 12px;
}

/* ─────────────────────────────────────────────────────────────── */
/* INFECTION METER                                                   */
/* ─────────────────────────────────────────────────────────────── */

.votacion {
  max-width: 800px;
  margin: 0 auto 48px;
}

.votacion-opciones {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.votacion-candidato {
  text-align: center;
  cursor: pointer;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.votacion-candidato:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  transform: translateY(-4px);
}

.votacion-cartel {
  width: 100%;
  max-width: 200px;
  border-radius: 4px;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.votacion-nombre {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #CC0000;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.votacion-lider {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.votacion-votos {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
}

.votacion-coalicion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.votacion-coalicion-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.15em;
  padding: 32px 24px;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 8px;
  margin-bottom: 12px;
}

.votacion-coalicion-icon {
  font-size: 32px;
}

.votacion-resultado {
  text-align: center;
  margin-top: 24px;
}

.votacion-barra {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  margin-top: 8px;
  border-radius: 3px;
  overflow: hidden;
}

.votacion-barra-fill {
  height: 100%;
  width: 0%;
  border-radius: 3px;
  transition: width 0.8s ease;
}

.barra-roja { background: #CC0000; }
.barra-blanca { background: #ffffff; }
.barra-morada { background: #520971; }

.votacion-gracias {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
}

.votacion-total-wrap {
  text-align: center;
  margin-top: 16px;
}

.votacion-total {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.mindmap {
  margin-top: 48px;
  padding: 32px;
  background: rgba(82,9,113,0.04);
  border: 1px solid rgba(82,9,113,0.12);
  border-radius: 8px;
}

.mindmap-center {
  text-align: center;
  margin-bottom: 24px;
}

.mindmap-root {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: 0.1em;
}

.mindmap-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.mindmap-branches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.mindmap-branch {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mindmap-linaje {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 4px;
  border: 2px solid;
  border-radius: 4px;
  color: var(--white);
}

.mindmap-arqs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.arq-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  transition: background 0.2s;
}

.arq-card:hover {
  background: rgba(255,255,255,0.08);
}

.arq-card img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
}

.arq-card span {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gray-200);
}

@media (max-width: 600px) {
  .mindmap-branches { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .mindmap-branches { grid-template-columns: 1fr; }
}

.test-cta-box {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 32px;
  background: rgba(82,9,113,0.06);
  border: 1px solid rgba(82,9,113,0.15);
  border-radius: 8px;
  margin-top: 48px;
}

.test-cta-left { flex: 1; }

.test-cta-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.test-cta-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.test-cta-linajes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.test-linaje {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-200);
}

@media (max-width: 600px) {
  .test-cta-box { flex-direction: column; }
  .test-cta-linajes { flex-direction: row; flex-wrap: wrap; }
  .votacion-opciones { grid-template-columns: 1fr; gap: 16px; }
  .votacion-cartel { max-width: 160px; }
  .carteles-vs { flex-direction: column; gap: 16px; }
  .cartel-figura { max-width: 240px; }
  .download-form input { min-width: 100%; }
}

.mand-title, .votacion-nombre, .shirt-name {
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 600px) {
  .votacion-opciones {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.infection-meter {
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 32px;
  background: var(--bg-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
}

.infection-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.infection-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gray-400);
}

.infection-pct {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: #CC0000;
}

.infection-bar {
  width: 100%;
  height: 12px;
  background: var(--gray-800);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}

.infection-fill {
  width: 87%;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), #CC0000);
  border-radius: 6px;
  animation: infection-grow 2s ease-out forwards;
  box-shadow: 0 0 20px rgba(204,0,0,0.4);
}

@keyframes infection-grow {
  from { width: 0; }
  to { width: 87%; }
}

.infection-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.infection-stat {
  text-align: center;
}

.infection-stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}

.infection-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  text-transform: uppercase;
}

.infection-counter {
  text-align: center;
  margin-bottom: 20px;
}

.infection-counter-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: #CC0000;
  display: block;
}

.infection-counter-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}

.btn-infection {
  display: block;
  width: 100%;
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 16px;
  background: transparent;
  color: #CC0000;
  border: 2px solid #CC0000;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.btn-infection:hover {
  background: #CC0000;
  color: #fff;
}

@media (max-width: 720px) {
  .infection-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ─────────────────────────────────────────────────────────────── */
/* ARQUETIPOS WEB STYLE                                              */
/* ─────────────────────────────────────────────────────────────── */

.archetypes-subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--white);
  text-align: center;
  font-style: italic;
  margin: 48px 0 12px;
}

.linajes-web {
  display: flex;
  gap: 16px;
  margin: 40px 0;
  overflow-x: auto;
  padding-bottom: 8px;
}

.linaje-group {
  flex-shrink: 0;
  min-width: 160px;
}

.linaje-label-web {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px 4px 0 0;
  text-align: center;
  margin-bottom: 8px;
}

.sereno-label { background: #393C40; color: #fff; }
.adaptativo-label { background: var(--purple); color: #fff; }
.estratega-label { background: #0b0b0f; color: #fff; border: 1px solid #333; }
.inspirador-label { background: #7A1AA3; color: #fff; }
.disruptivo-label { background: #D97706; color: #fff; }

.linaje-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.linaje-card-web {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--bg-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: border-color 0.2s;
  cursor: default;
}

.linaje-card-web:hover {
  border-color: var(--purple);
}

.linaje-card-web img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
}

.linaje-card-web span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-200);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .linajes-web { flex-wrap: wrap; justify-content: center; }
  .linaje-group { min-width: 140px; }
}

/* ─────────────────────────────────────────────────────────────── */
/* ORATHORIX TOPBAR (post-glitch)                                    */
/* ─────────────────────────────────────────────────────────────── */

.topbar-orathorix {
  position: relative;
  backdrop-filter: none;
  background: var(--bg);
  border-bottom: 1px solid var(--purple);
  padding: 16px 0;
}
.brand-intercept {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--white);
  border: 1px solid var(--purple);
  background: var(--purple);
  padding: 4px 10px;
  animation: glitch-flicker 4s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────────── */
/* VIDEO SECTION                                                     */
/* ─────────────────────────────────────────────────────────────── */

.video-section {
  background: var(--bg);
  padding: 80px 0;
}
.section-title-white { color: var(--white); font-size: clamp(24px, 3.5vw, 40px) !important; }
.section-label-light .label-num { color: var(--purple); }
.section-label-light .label-text { color: var(--gray-400); }

/* GLITCH V2 */
.glitch-section-v2 {
  position: relative;
  background: #0A0A0C;
  padding: 48px 24px;
  text-align: center;
  overflow: hidden;
}

.glitch-scanlines-v2 {
  display: none;
}

.dialog-box {
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin: 0 auto;
  background: #f0f0f0;
  border: 2px solid #888;
  border-radius: 2px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  font-family: var(--font-body);
}

.dialog-titlebar {
  background: #520971;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dialog-close {
  cursor: default;
  opacity: 0.6;
  font-size: 14px;
}

.dialog-body {
  display: flex;
  gap: 16px;
  padding: 16px 24px;
  align-items: center;
}

.dialog-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.dialog-text {
  font-size: 18px;
  color: #1A1A1A;
  line-height: 1.5;
}

.dialog-text p {
  margin-bottom: 0;
  color: #1A1A1A;
}

.dialog-text p + p {
  margin-top: 4px;
}

.dialog-buttons {
  padding: 12px 24px 16px;
  text-align: center;
}

.dialog-btn {
  display: inline-block;
  background: #e0e0e0;
  border: 1px solid #999;
  padding: 6px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #1A1A1A;
  text-decoration: none;
  cursor: pointer;
  border-radius: 2px;
}

.dialog-btn:hover {
  background: #d0d0d0;
  color: #1A1A1A;
}

.dialog-btn {
  animation: btn-pulse 1.5s ease-in-out infinite;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 8px rgba(82,9,113,0.5); border-color: #520971; }
}

.dialog-box-dark {
  background: #1a1a1e;
  border-color: #520971;
  cursor: pointer;
}

.dialog-box-dark .dialog-body { padding: 16px 20px; }

.dialog-box-dark .dialog-text p { color: rgba(255,255,255,0.7); }

.dialog-box-dark .dialog-buttons { padding: 8px 20px 14px; }

.dialog-box-dark .dialog-btn {
  background: #520971;
  border-color: #520971;
  color: #fff;
}

.dialog-box-dark .dialog-btn:hover {
  background: #6b0f96;
  color: #fff;
}

.dialog-box-dark .regimen-countdown {
  animation: countdown-pulse 1s ease-in-out infinite;
}

.glitch-content-v2 {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.glitch-title-v2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  animation: glitch-flicker 3s infinite;
}

.glitch-title-v2::before,
.glitch-title-v2::after {
  content: attr(data-text);
  position: absolute;
  left: 0; right: 0;
  overflow: hidden;
}

.glitch-title-v2::before {
  color: #CC0000;
  animation: glitch-shift-1 2s infinite;
  clip-path: inset(0 0 60% 0);
}

.glitch-title-v2::after {
  color: #520971;
  animation: glitch-shift-2 2.5s infinite;
  clip-path: inset(40% 0 0 0);
}

@keyframes glitch-shift-1 {
  0%, 90%, 100% { transform: translateX(0); }
  92% { transform: translateX(-8px) skewX(-2deg); }
  94% { transform: translateX(6px); }
  96% { transform: translateX(-3px) skewX(1deg); }
}

@keyframes glitch-shift-2 {
  0%, 88%, 100% { transform: translateX(0); }
  90% { transform: translateX(10px) skewX(3deg); }
  93% { transform: translateX(-5px); }
  95% { transform: translateX(4px) skewX(-1deg); }
}

@keyframes glitch-flicker {
  0%, 95%, 100% { opacity: 1; }
  96% { opacity: 0.7; }
  97% { opacity: 1; }
  98% { opacity: 0.85; }
}

.glitch-sub-v2 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}

.glitch-divider-v2 {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #520971, transparent);
  margin: 40px auto;
}

.regimen-oculto-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 32px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(82,9,113,0.1);
}

.regimen-oculto-v2:hover {
  background: rgba(82,9,113,0.25);
  border-color: #520971;
  box-shadow: 0 0 20px rgba(82,9,113,0.3);
}

.regimen-lock-v2 { font-size: 20px; }

.regimen-countdown {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: #CC0000;
  min-width: 28px;
  text-align: center;
  animation: countdown-pulse 1s ease-in-out infinite;
}

@keyframes countdown-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.regimen-cta-v2 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.regimen-revelado-v2 { display: none; }

.glitch-reveal-v2.revealed .regimen-oculto-v2 { display: none; }
.glitch-reveal-v2.revealed .regimen-revelado-v2 {
  display: block;
  animation: foto-glitch 0.5s ease-out;
  text-align: center;
}

.regimen-img-v2 {
  max-width: 800px;
  width: 100%;
  border-radius: 4px;
  margin: 0 auto;
  display: block;
}

.regimen-caption-v2 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

.regimen-pillados-v2 {
  font-family: var(--font-mono);
  font-size: 16px;
  color: #CC0000;
  margin-top: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

/* VOTACIÓN OFICIAL */
.votacion-header-oficial {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}

.votacion-escudo {
  font-size: 48px;
  opacity: 0.6;
}

.votacion-header-text {
  text-align: left;
}

.votacion-gobierno {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.votacion-titulo-oficial {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #ffffff !important;
  margin: 4px 0;
}

.votacion-gobierno, .votacion-decreto {
  color: rgba(255,255,255,0.35);
}

.votacion-decreto {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
}

.votacion-separador {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  margin-bottom: 40px;
}

.programa-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 0;
}

.programa-escudo {
  font-size: 40px;
  color: #c084fc;
}

@media (max-width: 600px) {
  .programa-header { flex-direction: column; gap: 12px; }
  .programa-escudo { font-size: 32px; }
}

/* ─── RESPONSIVE MÓVIL ─── */
@media (max-width: 600px) {
  .mand-card-bravo {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 16px 20px !important;
    gap: 4px !important;
  }
  .mand-num-bravo {
    font-size: 14px !important;
    min-width: auto !important;
  }
  .mand-title-bravo {
    font-size: 15px !important;
    font-weight: 600 !important;
  }
  .mand-hover-text {
    display: block !important;
    margin-top: 4px;
    padding: 0;
    border-top: none;
    font-size: 12px;
    font-style: italic;
    line-height: 1.4;
    color: #CC0000;
  }

  .shirts-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 12px;
  }
  .shirt-card {
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .shirt-preview { aspect-ratio: 1/1; }
  .shirt-name { font-size: 12px !important; }
  .shirt-tagline { font-size: 10px !important; }
  .btn-reserva, .btn-shirt { font-size: 10px !important; padding: 6px 12px !important; }
  .shirt-email { font-size: 12px !important; }

  .dialog-box { max-width: 90%; margin: 0 auto; }
  .dialog-titlebar { font-size: 10px; padding: 6px 8px; }
  .dialog-body { flex-wrap: wrap; padding: 12px 16px; gap: 10px; justify-content: center; }
  .dialog-text { font-size: 14px; flex: 1 1 100%; text-align: center; }
  .dialog-btn { font-size: 11px; padding: 6px 16px; margin: 0 auto; display: block; text-align: center; width: fit-content; }
  .regimen-countdown { font-size: 14px !important; padding-right: 4px; }

  .votacion-header-oficial { flex-direction: column; gap: 8px; text-align: center; }
  .votacion-header-text { text-align: center; }
  .votacion-escudo { font-size: 32px; }
  .votacion-titulo-oficial { font-size: 20px !important; }

  .votacion-opciones { display: none !important; }

  .carta-email-header { font-size: 10px; padding: 12px 16px !important; }
  .carta-email-row { word-break: break-all; line-height: 1.6; }
  .carta-email-label { display: block; margin-bottom: 2px; }
  .carta-email-body { padding: 20px 16px !important; font-size: 14px !important; }

  .carta-adjunto { padding: 8px 10px; }
  .carta-adjunto-thumb { width: 32px; height: 32px; }
  .carta-adjunto-name { font-size: 11px; }

  .regimen-img-v2 { max-width: 100%; }

  .glitch-section-v2 { padding: 32px 16px; }

  .section-inner { padding: 60px 20px !important; }
  .descarga-inner { gap: 24px !important; }
  .prose { font-size: 15px !important; }

  .pdf-mockup {
    max-width: 180px !important;
    transform: none !important;
    animation: none !important;
    padding: 20px 16px !important;
  }
  .pdf-mockup-title { font-size: 18px !important; }
  .pdf-mockup-label { font-size: 8px !important; }
  .pdf-mockup-sub { font-size: 9px !important; }
  .pdf-mockup-author { font-size: 8px !important; }
  .descarga-preview { padding: 0 20px; }

  .alerta-ticker { font-size: 9px !important; padding: 10px 0 !important; }
  .doctrina-sub { font-size: 12px !important; }
  .doctrina-title { font-size: 18px !important; }
  .doctrina-header { flex-wrap: wrap; gap: 8px; }
  .tienda-meta { font-size: 10px !important; padding: 12px 16px !important; }

  .footer-cols { text-align: center; }
  .footer-col { align-items: center; }

  .muted, .prose, .section-title .muted, .footer-tagline,
  .votacion-gobierno, .votacion-decreto, .regimen-caption-v2,
  .glitch-popup-sub, .votacion-ciudadanos-label, .mindmap-sub {
    color: rgba(255,255,255,0.75) !important;
  }
}

.shirts-swipe-hint {
  display: none;
}

@media (max-width: 600px) {
  .shirts-swipe-hint {
    display: block;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 12px;
    animation: swipe-hint 2s ease-in-out infinite;
  }
  @keyframes swipe-hint {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
  }
}

.votacion-ciudadanos {
  text-align: center;
  margin-bottom: 32px;
}

.votacion-ciudadanos-num {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.votacion-ciudadanos-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .votacion-ciudadanos-num { font-size: 40px; }
  .votacion-ciudadanos-label { font-size: 10px; }
}

.votacion-email-wrap {
  text-align: center;
  margin-bottom: 24px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.votacion-email-msg {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.votacion-email-form {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.votacion-email-form input {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  color: #fff;
  min-width: 220px;
}

.votacion-email-form input::placeholder {
  color: rgba(255,255,255,0.3);
}

.votacion-btn-confirmar {
  background: #520971 !important;
  border-color: #520971 !important;
  color: #fff !important;
}

.votacion-btn-confirmar:hover {
  background: #6b0f96 !important;
}

/* VOTACIÓN NUEVO LAYOUT */
.votacion-carteles-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  justify-content: center;
  align-items: flex-end;
}

.votacion-cartel-slide {
  flex-shrink: 0;
  scroll-snap-align: center;
}

.votacion-cartel-slide img {
  height: 280px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.votacion-botones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.votacion-botones-top {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.votacion-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  border: 2px solid;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.votacion-btn-bravo {
  color: #CC0000;
  border-color: #CC0000;
}
.votacion-btn-bravo:hover {
  background: #CC0000;
  color: #fff;
}

.votacion-btn-coalicion {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.votacion-btn-coalicion:hover {
  background: rgba(255,255,255,0.1);
}

.votacion-btn-orathorix {
  color: #c084fc;
  border-color: #520971;
}
.votacion-btn-orathorix:hover {
  background: #520971;
  color: #fff;
}

.votacion-resultados-graf {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.votacion-resultado-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.votacion-resultado-nombre {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  min-width: 110px;
  text-align: right;
}

.votacion-resultado-pct {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  min-width: 40px;
}

@media (max-width: 600px) {
  .votacion-cartel-slide img { height: 300px; }
  .votacion-btn { padding: 10px 16px; font-size: 10px; }
  .votacion-resultado-nombre { min-width: 80px; font-size: 9px; }
}

