/* ==========================================================================
   PORTAL INSTITUCIONAL MONOS ALFA LAB
   SISTEMA DE DISEÑO INSPIRADO EN TECNOLÓGICO DE MONTERREY (TEC.MX)
   ========================================================================== */

:root {
  /* PALETA INSTITUCIONAL TEC */
  --tec-blue: #0033a0;          /* Azul Tec Oficial */
  --tec-blue-hover: #002575;    /* Azul Tec Oscuro */
  --tec-blue-light: #008ce6;    /* Azul Innovación / Acentos */
  --tec-navy-dark: #001e44;     /* Azul Marino Profundo (Headers & Footers) */
  --tec-navy-night: #081726;    /* Fondo Header Principal */
  --tec-gray-bg: #f4f6f9;       /* Fondo Campus Ice Gray */
  --tec-gray-alt: #eef2f7;      /* Fondo Secciones Alternas */
  --tec-white: #ffffff;
  --tec-text-main: #1d252c;     /* Texto Principal */
  --tec-text-muted: #5c6b73;    /* Texto Secundario */
  --tec-border: #dbe2ea;        /* Líneas y Bordes Sutiles */
  --tec-amber: #d97724;         /* Acento Secundario */
  --tec-green: #107e3e;         /* Estado Positivo / Online */
  --tec-red: #c92a2a;           /* Estado Crítico / Alerta */

  /* TIPOGRAFÍA & GEOMETRÍA */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
  --radius-sharp: 0px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --shadow-subtle: 0 4px 12px rgba(0, 30, 68, 0.06);
  --shadow-card: 0 8px 24px rgba(0, 30, 68, 0.08);
  --shadow-hover: 0 16px 32px rgba(0, 30, 68, 0.14);
  --container-width: 1280px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --tec-gray-bg: #090e17;
  --tec-gray-alt: #101726;
  --tec-white: #131c2e;
  --tec-text-main: #f0f4f8;
  --tec-text-muted: #94a3b8;
  --tec-border: #1e293b;
  --tec-navy-dark: #060a12;
  --tec-navy-night: #05080e;
  --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tec-text-main);
  background-color: var(--tec-gray-bg);
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--tec-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--tec-blue-hover);
}

.tec-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   HEADER INSTITUCIONAL TEC (NAVBAR OSCURA CON ESTILO INSTITUCIONAL)
   ========================================================================== */
.tec-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-color: var(--tec-navy-night);
  color: #ffffff;
  z-index: 1000;
  border-bottom: 2px solid rgba(0, 51, 160, 0.4);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.tec-header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tec-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tec-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.tec-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition: var(--transition);
}

.tec-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.tec-brand-crest {
  width: 38px;
  height: 38px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tec-brand-crest svg {
  width: 100%;
  height: 100%;
}

.tec-brand-text {
  display: flex;
  flex-direction: column;
}

.tec-brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.tec-brand-name strong {
  color: var(--tec-blue-light);
}

.tec-brand-name.white {
  color: #ffffff;
}

.tec-brand-sub {
  font-size: 0.68rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.tec-brand-sub.light {
  color: rgba(255, 255, 255, 0.6);
}

/* NAVEGACIÓN DESKTOP */
.tec-nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tec-nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 4px;
  position: relative;
  transition: var(--transition);
}

.tec-nav-link:hover,
.tec-nav-link.active {
  color: #ffffff;
}

.tec-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--tec-blue-light);
  transition: var(--transition);
}

.tec-nav-link:hover::after,
.tec-nav-link.active::after {
  width: 100%;
}

.tec-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tec-lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-weight: 700;
  padding: 2px 4px;
}

.lang-btn.active {
  color: #ffffff;
  border-bottom: 2px solid var(--tec-blue-light);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.3);
}

.tec-theme-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
}

.tec-btn-portal {
  background-color: var(--tec-blue);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.tec-btn-portal:hover {
  background-color: var(--tec-blue-light);
  color: #ffffff;
}

/* ==========================================================================
   DRAWER MÓVIL
   ========================================================================== */
.tec-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.tec-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.tec-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  background-color: var(--tec-navy-dark);
  color: #ffffff;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.tec-drawer.active {
  transform: translateX(0);
}

.tec-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tec-drawer-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

.tec-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.drawer-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   HERO WIDESCREEN CINEMATOGRÁFICO TEC
   ========================================================================== */
.tec-hero {
  position: relative;
  height: 560px;
  min-height: 520px;
  max-height: 620px;
  margin-top: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.tec-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.tec-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 23, 38, 0.92) 0%, rgba(0, 51, 160, 0.82) 65%, rgba(0, 30, 68, 0.9) 100%);
}

.tec-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 960px;
}

.tec-hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.tec-hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  line-height: 1.15;
}

.tec-hero-title-top {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.9);
}

.tec-hero-title-main {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
}

.tec-hero-desc {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 780px;
  margin-bottom: 36px;
}

.tec-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* BOTONES INSTITUCIONALES */
.tec-btn-primary {
  background-color: var(--tec-blue);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 51, 160, 0.35);
}

.tec-btn-primary:hover {
  background-color: var(--tec-blue-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 51, 160, 0.45);
}

.tec-btn-secondary {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.tec-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   SIGNATURE TEC 4-COLUMN TILES GRID (ICONIC TEC PORTAL COMPONENT)
   ========================================================================== */
.tec-tiles-bar {
  width: 100%;
  background-color: var(--tec-navy-dark);
}

.tec-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.tec-tile {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 24px 20px;
  color: #ffffff;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.tec-tile:last-child {
  border-right: none;
}

.tec-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 51, 160, 0.65) 0%, rgba(0, 30, 68, 0.92) 100%);
  transition: var(--transition);
}

.tec-tile:hover .tec-tile-overlay {
  background: linear-gradient(180deg, rgba(0, 140, 230, 0.7) 0%, rgba(0, 51, 160, 0.92) 100%);
}

.tec-tile-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.tec-tile-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tec-blue-light);
  margin-bottom: 4px;
}

.tec-tile-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.tec-tile-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.tec-tile:hover .tec-tile-arrow {
  color: #ffffff;
  transform: translateX(4px);
}

/* ==========================================================================
   METRICS RIBBON (ESTILO INSTITUCIONAL)
   ========================================================================== */
.tec-metrics-section {
  background-color: var(--tec-white);
  border-bottom: 1px solid var(--tec-border);
  padding: 40px 0;
}

.tec-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tec-metric-item {
  border-left: 3px solid var(--tec-blue);
  padding-left: 18px;
}

.tec-metric-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--tec-blue);
  line-height: 1.1;
  font-feature-settings: "tnum";
}

.tec-metric-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--tec-text-main);
  margin-top: 4px;
}

.tec-metric-sub {
  font-size: 0.8rem;
  color: var(--tec-text-muted);
}

/* ==========================================================================
   SECCIONES EDITORIALES (SPLIT 2 COLUMNAS ESTILO TEC.MX)
   ========================================================================== */
.tec-editorial-section {
  padding: 90px 0;
  background-color: var(--tec-white);
  border-bottom: 1px solid var(--tec-border);
}

.tec-editorial-section.tec-bg-alt {
  background-color: var(--tec-gray-bg);
}

.tec-section-header {
  margin-bottom: 60px;
}

.tec-section-category {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tec-blue);
  margin-bottom: 10px;
}

.tec-section-category.white {
  color: var(--tec-blue-light);
}

.tec-section-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--tec-text-main);
  line-height: 1.2;
}

.tec-section-divider {
  width: 60px;
  height: 4px;
  background-color: var(--tec-blue);
  margin-top: 16px;
}

.tec-section-subtitle {
  font-size: 1.1rem;
  color: var(--tec-text-muted);
  max-width: 820px;
  margin-top: 16px;
  line-height: 1.6;
}

/* SPLIT BLOCK (FOTO RECTANGULAR GRANDE + COLUMNA EDITORIAL) */
.tec-split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.tec-split-block:last-child {
  margin-bottom: 0;
}

.tec-split-block.tec-split-reverse {
  direction: rtl;
}

.tec-split-block.tec-split-reverse > * {
  direction: ltr;
}

.tec-split-media {
  position: relative;
}

.tec-media-wrapper {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--tec-border);
}

.tec-editorial-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tec-media-wrapper:hover .tec-editorial-img {
  transform: scale(1.02);
}

.tec-media-caption {
  background-color: var(--tec-navy-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px 16px;
  border-top: 2px solid var(--tec-blue);
}

/* TEXTO EDITORIAL DERECHA */
.tec-split-text {
  display: flex;
  flex-direction: column;
}

.tec-editorial-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tec-blue);
  margin-bottom: 8px;
}

.tec-editorial-heading {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  color: var(--tec-text-main);
  line-height: 1.25;
  margin-bottom: 18px;
}

.tec-editorial-p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--tec-text-muted);
  margin-bottom: 28px;
}

/* TIMELINE STREAM LIST (BLUE NODES & CHEVRON LINKS) */
.tec-stream-list {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 28px;
  margin-bottom: 28px;
}

.tec-stream-list::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 6px;
  width: 2px;
  background-color: var(--tec-border);
}

.tec-stream-item {
  position: relative;
  margin-bottom: 24px;
}

.tec-stream-item:last-child {
  margin-bottom: 0;
}

.tec-stream-node {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--tec-white);
  border: 3px solid var(--tec-blue);
}

.tec-stream-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tec-text-main);
  margin-bottom: 4px;
}

.tec-stream-desc {
  font-size: 0.92rem;
  color: var(--tec-text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}

.tec-link-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--tec-blue);
}

.tec-link-arrow:hover {
  color: var(--tec-blue-hover);
  text-decoration: underline;
}

.tec-target-audience {
  font-size: 0.88rem;
  color: var(--tec-text-muted);
  background-color: var(--tec-gray-alt);
  padding: 12px 16px;
  border-left: 3px solid var(--tec-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ==========================================================================
   OBSERVATORIO & SIMULADOR SAM5526-PUB (WORKBENCH DE INVESTIGACIÓN)
   ========================================================================== */
.tec-lab-section {
  padding: 90px 0;
  background-color: var(--tec-gray-bg);
  border-bottom: 1px solid var(--tec-border);
}

.tec-lab-workbench {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 32px;
  background-color: var(--tec-white);
  border: 1px solid var(--tec-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 32px;
}

.tec-lab-controls {
  border-right: 1px solid var(--tec-border);
  padding-right: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tec-control-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--tec-blue);
  padding-bottom: 12px;
}

.tec-control-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tec-text-main);
}

.tec-badge-live {
  background-color: var(--tec-green);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* ESCENARIOS GRID */
.tec-scenario-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tec-input-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--tec-text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tec-scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tec-scenario-btn {
  background-color: var(--tec-gray-alt);
  border: 1px solid var(--tec-border);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tec-scenario-btn strong {
  font-size: 0.82rem;
  color: var(--tec-text-main);
}

.tec-scenario-btn span {
  font-size: 0.72rem;
  color: var(--tec-text-muted);
}

.tec-scenario-btn:hover {
  background-color: rgba(0, 51, 160, 0.06);
  border-color: var(--tec-blue);
}

.tec-scenario-btn.active {
  background-color: rgba(0, 51, 160, 0.1);
  border-color: var(--tec-blue);
  border-left: 3px solid var(--tec-blue);
}

/* SLIDERS */
.tec-slider-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tec-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tec-text-main);
}

.tec-slider-val {
  font-weight: 800;
  color: var(--tec-blue);
  background-color: var(--tec-gray-alt);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

input[type="range"] {
  width: 100%;
  height: 6px;
  background: var(--tec-border);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--tec-blue);
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 51, 160, 0.4);
}

.tec-control-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.full-w {
  width: 100%;
}

/* DISPLAY DERECHA: RADAR CANVAS & RESULTS */
.tec-lab-display {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tec-display-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--tec-gray-alt);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--tec-red);
}

.tec-display-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.tec-dot-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--tec-red);
  box-shadow: 0 0 8px rgba(201, 42, 42, 0.6);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.tec-state-alert {
  font-weight: 700;
  color: var(--tec-red);
}

.tec-canvas-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tec-gray-alt);
  border: 1px solid var(--tec-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  min-height: 380px;
}

#radarCanvas {
  max-width: 100%;
  height: auto;
}

.tec-sim-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tec-res-card {
  background-color: var(--tec-gray-alt);
  border: 1px solid var(--tec-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.tec-res-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tec-text-muted);
  text-transform: uppercase;
}

.tec-res-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--tec-blue);
  line-height: 1.2;
  margin: 4px 0;
}

.tec-res-sub {
  font-size: 0.75rem;
  color: var(--tec-text-muted);
}

.tec-sim-recommendation {
  background-color: rgba(0, 51, 160, 0.05);
  border: 1px solid rgba(0, 51, 160, 0.2);
  border-left: 4px solid var(--tec-blue);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--tec-text-main);
}

/* ==========================================================================
   PUBLICACIONES & TRATADOS
   ========================================================================== */
.tec-book-wrapper {
  max-width: 380px;
  margin: 0 auto;
}

.tec-book-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.tec-book-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: var(--tec-gray-alt);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.tec-meta-item {
  display: flex;
  gap: 8px;
  font-size: 0.88rem;
}

.meta-label {
  font-weight: 700;
  color: var(--tec-text-main);
  min-width: 120px;
}

.meta-val {
  color: var(--tec-text-muted);
}

.tec-book-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.tec-book-bullet {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--tec-text-main);
  border-left: 3px solid var(--tec-blue);
  padding-left: 12px;
}

.tec-book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   DIRECCIÓN CIENTÍFICA / QUOTES & CREDENTIALS
   ========================================================================== */
.tec-quote-box {
  background-color: var(--tec-gray-alt);
  border-left: 4px solid var(--tec-blue);
  padding: 20px 24px;
  margin: 20px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.tec-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--tec-text-main);
}

.tec-quote-author {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--tec-blue);
  margin-top: 10px;
  font-family: var(--font-sans);
  font-style: normal;
}

.tec-credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tec-cred-item {
  background-color: var(--tec-gray-alt);
  border: 1px solid var(--tec-border);
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.tec-cred-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--tec-blue);
}

.tec-cred-item span {
  font-size: 0.75rem;
  color: var(--tec-text-muted);
}

/* ==========================================================================
   CONTACTO INSTITUCIONAL
   ========================================================================== */
.tec-contact-section {
  padding: 90px 0;
  background-color: var(--tec-white);
}

.tec-contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--tec-navy-dark);
  color: #ffffff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.tec-contact-left {
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(0, 30, 68, 1) 0%, rgba(0, 51, 160, 0.9) 100%);
}

.tec-contact-title {
  font-size: 2.2rem;
  font-weight: 400;
  margin: 12px 0 20px 0;
  line-height: 1.2;
}

.tec-contact-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.tec-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tec-contact-item {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.tec-contact-right {
  padding: 56px 48px;
  background-color: var(--tec-white);
  color: var(--tec-text-main);
}

.tec-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tec-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tec-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tec-form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--tec-text-main);
}

.tec-form-field input,
.tec-form-field select,
.tec-form-field textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  border: 1px solid var(--tec-border);
  border-radius: var(--radius-sm);
  background-color: var(--tec-gray-bg);
  color: var(--tec-text-main);
  outline: none;
  transition: var(--transition);
}

.tec-form-field input:focus,
.tec-form-field select:focus,
.tec-form-field textarea:focus {
  border-color: var(--tec-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 51, 160, 0.15);
}

/* ==========================================================================
   FOOTER INSTITUCIONAL TEC.MX
   ========================================================================== */
.tec-footer {
  background-color: var(--tec-navy-night);
  color: #ffffff;
  padding: 70px 0 30px 0;
  border-top: 4px solid var(--tec-blue);
}

.tec-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tec-footer-brand {
  margin-bottom: 16px;
}

.tec-footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.tec-footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--tec-blue);
  display: inline-block;
  padding-bottom: 4px;
}

.tec-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tec-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  transition: var(--transition);
}

.tec-footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.tec-footer-info {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.tec-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.tec-footer-legal {
  display: flex;
  gap: 12px;
}

.tec-footer-legal a {
  color: rgba(255, 255, 255, 0.5);
}

.tec-footer-legal a:hover {
  color: #ffffff;
}

/* ==========================================================================
   MODAL & TOAST
   ========================================================================== */
.tec-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.tec-modal.active {
  display: flex;
}

.tec-modal-content {
  background-color: var(--tec-white);
  color: var(--tec-text-main);
  max-width: 640px;
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border-top: 4px solid var(--tec-blue);
}

.tec-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--tec-border);
}

.tec-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--tec-text-muted);
}

.tec-modal-body {
  padding: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  max-height: 60vh;
  overflow-y: auto;
}

.tec-modal-footer {
  padding: 16px 24px;
  background-color: var(--tec-gray-alt);
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--tec-border);
}

.tec-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--tec-navy-dark);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--tec-blue-light);
  box-shadow: var(--shadow-hover);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.tec-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   CARTERA DE SERVICIOS ESTRATÉGICOS (ESTILO EDITORIAL TEC)
   ========================================================================== */
.tec-services-tiers {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tec-service-tier {
  background-color: var(--tec-white);
  border: 1px solid var(--tec-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.tec-service-tier:hover {
  box-shadow: var(--shadow-hover);
}

.tec-tier-header {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--tec-border);
  padding-bottom: 16px;
}

.tec-tier-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: rgba(0, 51, 160, 0.1);
  color: var(--tec-blue);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.tec-tier-badge.premium {
  background-color: rgba(217, 119, 36, 0.15);
  color: #c05621;
}

.tec-tier-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--tec-navy-dark);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.tec-tier-desc {
  font-size: 0.95rem;
  color: var(--tec-text-muted);
  line-height: 1.5;
}

.tec-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tec-service-card {
  background-color: var(--tec-gray-alt);
  border: 1px solid var(--tec-border);
  border-radius: var(--radius-sm);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.tec-service-card:hover {
  border-color: var(--tec-blue);
  transform: translateY(-2px);
}

.tec-service-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.tec-service-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tec-navy-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.tec-service-p {
  font-size: 0.88rem;
  color: var(--tec-text-main);
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

.tec-deliverables {
  background-color: var(--tec-white);
  border: 1px solid var(--tec-border);
  border-radius: 4px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.deliv-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--tec-blue);
  margin-bottom: 6px;
}

.tec-deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tec-deliverables li {
  font-size: 0.8rem;
  color: var(--tec-text-muted);
  line-height: 1.4;
  margin-bottom: 4px;
}

.tec-deliverables li:last-child {
  margin-bottom: 0;
}

.tec-service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--tec-border);
}

.tec-case-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--tec-blue);
  background: rgba(0, 51, 160, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
}

.tec-btn-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--tec-blue);
  text-decoration: none;
  transition: var(--transition);
}

.tec-btn-text:hover {
  color: var(--tec-blue-light);
  transform: translateX(2px);
}

/* ==========================================================================
   CASO DE ESTUDIO INSIGNIA: INFORME OAXACA 2026-2027
   ========================================================================== */
.tec-oaxaca-wrapper {
  background-color: var(--tec-white);
  border: 1px solid var(--tec-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}

.tec-oaxaca-banner {
  border-bottom: 1px solid var(--tec-border);
  padding-bottom: 22px;
  margin-bottom: 24px;
}

.tec-oaxaca-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: rgba(217, 119, 36, 0.12);
  color: #b7551e;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.tec-oaxaca-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--tec-navy-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.tec-oaxaca-summary {
  font-size: 0.95rem;
  color: var(--tec-text-main);
  line-height: 1.6;
  margin-bottom: 18px;
}

.tec-oaxaca-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  background-color: var(--tec-gray-alt);
  border: 1px solid var(--tec-border);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.78rem;
}

.pill-label {
  font-weight: 700;
  color: var(--tec-text-muted);
  margin-right: 4px;
}

.pill-val {
  font-weight: 600;
  color: var(--tec-navy-dark);
}

.tec-oaxaca-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.tec-narrative-card {
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--tec-border);
}

.tec-narrative-card.positive {
  background-color: rgba(45, 157, 104, 0.05);
  border-left: 4px solid #2d9d68;
}

.tec-narrative-card.critical {
  background-color: rgba(220, 38, 38, 0.05);
  border-left: 4px solid #dc2626;
}

.narrative-header {
  margin-bottom: 12px;
}

.narrative-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.tec-narrative-card.positive .narrative-tag {
  color: #2d9d68;
}

.tec-narrative-card.critical .narrative-tag {
  color: #dc2626;
}

.narrative-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tec-navy-dark);
}

.narrative-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.narrative-list li {
  font-size: 0.86rem;
  color: var(--tec-text-main);
  line-height: 1.5;
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
}

.narrative-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--tec-text-muted);
}

.tec-oaxaca-metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background-color: var(--tec-gray-alt);
  border: 1px solid var(--tec-border);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 24px;
}

.oaxaca-metric {
  text-align: center;
  padding: 6px;
}

.oaxaca-metric-num {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--tec-blue);
  margin-bottom: 2px;
}

.oaxaca-metric-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--tec-navy-dark);
  margin-bottom: 2px;
}

.oaxaca-metric-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--tec-text-muted);
  line-height: 1.3;
}

.tec-oaxaca-actions-box {
  background-color: var(--tec-white);
  border: 1px solid var(--tec-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tec-oaxaca-rec {
  font-size: 0.9rem;
  color: var(--tec-text-main);
  line-height: 1.6;
  flex-grow: 1;
}

.tec-oaxaca-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ==========================================================================
   RESPONSIVIDAD
   ========================================================================== */
@media (max-width: 1024px) {
  .tec-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tec-tile {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .tec-split-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .tec-split-block.tec-split-reverse {
    direction: ltr;
  }
  .tec-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tec-oaxaca-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .tec-oaxaca-actions-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .tec-oaxaca-buttons {
    width: 100%;
  }
  .tec-lab-workbench {
    grid-template-columns: 1fr;
  }
  .tec-lab-controls {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--tec-border);
    padding-bottom: 24px;
  }
  .tec-contact-box {
    grid-template-columns: 1fr;
  }
  .tec-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .tec-menu-btn {
    display: flex;
  }
  .tec-nav-desktop {
    display: none;
  }
  .tec-tiles-grid {
    grid-template-columns: 1fr;
  }
  .tec-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tec-services-grid {
    grid-template-columns: 1fr;
  }
  .tec-service-tier {
    padding: 24px 18px;
  }
  .tec-oaxaca-wrapper {
    padding: 24px 18px;
  }
  .tec-oaxaca-split-grid {
    grid-template-columns: 1fr;
  }
  .tec-oaxaca-metrics-bar {
    grid-template-columns: 1fr;
  }
  .tec-oaxaca-buttons {
    flex-direction: column;
    width: 100%;
  }
  .tec-oaxaca-buttons .tec-btn-primary,
  .tec-oaxaca-buttons .tec-btn-secondary {
    width: 100%;
    text-align: center;
  }
  .tec-sim-results {
    grid-template-columns: 1fr;
  }
  .tec-form-row {
    grid-template-columns: 1fr;
  }
  .tec-footer-top {
    grid-template-columns: 1fr;
  }
  .tec-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   PROMO CARD DIVISIÓN ELECTORAL 2027 (INDEX BANNER) & NAV HIGHLIGHT
   ========================================================================== */
.tec-nav-link.highlight {
  color: #d97706 !important;
  font-weight: 800 !important;
  position: relative;
}

.tec-nav-link.highlight::after {
  content: "2027";
  display: inline-block;
  font-size: 0.65rem;
  background-color: #d97706;
  color: #ffffff;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: middle;
}

.drawer-link.highlight {
  color: #d97706 !important;
  font-weight: 700;
}

.tec-electoral-promo-card {
  background: linear-gradient(135deg, var(--tec-navy-night) 0%, var(--tec-navy-dark) 60%, var(--tec-blue) 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 36px 40px;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.tec-electoral-promo-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.tec-promo-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.tec-promo-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: rgba(217, 119, 6, 0.25);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.tec-promo-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.tec-promo-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.tec-promo-action {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.tec-btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #d97706;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.tec-btn-promo:hover {
  background-color: #b45309;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
}

@media (max-width: 768px) {
  .tec-electoral-promo-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
  .tec-promo-action {
    width: 100%;
  }
  .tec-btn-promo {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   PÁGINA ESPECIAL: DIVISIÓN ELECTORAL 2027 (PALETA NATURAL & MOTION DESIGN)
   ========================================================================== */
.electoral-body {
  font-family: 'Archivo', var(--font-sans);
  background-color: #f6f5f2;
  color: #1a221e;
  overflow-x: clip;
}

/* ==========================================================================
   HEADER PRINCIPAL ESTILO FROSTED GLASS (VIDRIO ESMERILADO TRANSPARENTE)
   ========================================================================== */
.electoral-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 1000;
  background: rgba(6, 14, 9, 0.22); /* ALTA TRANSPARENCIA VIDRIO ESMERILADO */
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: navApparition 2.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.electoral-header.scrolled {
  background: rgba(255, 255, 255, 0.65); /* TRANSPARENTE EN SCROLL */
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(26, 34, 30, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.electoral-header-inner {
  max-width: 1600px;
  margin: 0 auto;
  height: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.electoral-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.electoral-brand:hover {
  transform: translateY(-1px);
}

.electoral-brand-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #1b8755;
  box-shadow: 0 0 8px rgba(27, 135, 85, 0.6);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.electoral-header.scrolled .electoral-brand-dot {
  box-shadow: 0 0 4px rgba(27, 135, 85, 0.4);
}

.electoral-brand-name {
  font-family: 'Archivo', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.electoral-header.scrolled .electoral-brand-name {
  color: #141c17;
  text-shadow: none;
}

.electoral-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.electoral-nav-link {
  font-family: 'Archivo', sans-serif;
  font-size: 0.80rem;
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: all 0.25s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.electoral-header.scrolled .electoral-nav-link {
  color: #2c3a32;
  text-shadow: none;
}

.electoral-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: #1b8755;
  transition: width 0.25s ease;
  transform: translateX(-50%);
}

.electoral-nav-link:hover {
  color: #a8f0c6;
}

.electoral-header.scrolled .electoral-nav-link:hover {
  color: #1b8755;
}

.electoral-nav-link:hover::after {
  width: 100%;
}

.electoral-btn-home {
  font-family: 'Archivo', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff !important;
  text-decoration: none;
  padding: 8px 20px;
  height: 38px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.electoral-btn-home:hover {
  background: #1b8755;
  color: #ffffff !important;
  border-color: #1b8755;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.electoral-header.scrolled .electoral-btn-home {
  background: rgba(255, 255, 255, 0.85);
  color: #0c1410 !important;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-shadow: none;
}

.electoral-header.scrolled .electoral-btn-home:hover {
  background: #1b8755;
  color: #ffffff !important;
  border-color: #1b8755;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   HERO FIGMA CINEMATOGRÁFICO CON ANIMACIONES LENTAS (SIN GLOWS)
   ========================================================================== */
.electoral-hero-figma {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: #ffffff;
  padding-top: 76px;
}

.electoral-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background-color: #07140e;
}

.electoral-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.electoral-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 10, 0.72) 0%, rgba(6, 16, 10, 0.52) 50%, rgba(4, 10, 7, 0.95) 100%);
  pointer-events: none;
}

.electoral-hero-content-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 48px 110px 48px;
}

.electoral-hero-center {
  margin: auto 0;
  text-align: center;
  padding: 40px 0;
}

/* PROCESO ELECTORAL SALE DE ABAJO HACIA ARRIBA LENTO */
.electoral-hero-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  text-shadow: none;
  animation: heroTitleRiseSlow 2.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 2027 BAJA LENTO DESDE ARRIBA (VERDE BOSQUE SÓLIDO, SIN GLOWS) */
.electoral-hero-year {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(6.5rem, 15vw, 14.5rem);
  font-weight: 900;
  font-style: italic;
  color: #1e824c; /* Verde Bosque Sólido Formal */
  line-height: 0.88;
  margin-top: -6px;
  letter-spacing: -3px;
  text-shadow: none;
  animation: heroYearDescendSlow 2.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.electoral-hero-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-top: 40px;
  min-height: 124px;
  animation: heroBottomFadeSlow 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.electoral-hero-bottom-left {
  width: 540px;
  max-width: 100%;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.electoral-kicker {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: none;
  flex-shrink: 0;
}

.electoral-hero-summary {
  font-family: 'Archivo', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  text-align: justify;
  text-shadow: none;
  height: 90px;
  min-height: 90px;
  max-height: 90px;
  margin: 0;
  display: block;
}

.electoral-hero-bottom-right {
  flex-shrink: 0;
}

.electoral-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #1b8755; /* Verde Bosque Formal */
  color: #ffffff !important;
  font-family: 'Archivo', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 44px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.electoral-hero-cta:hover {
  transform: translateY(-2px);
  background-color: #146c43;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   ACENTOS VERDES GLOBALES (FORMALES & ARQUITECTÓNICOS)
   ========================================================================== */
.electoral-body .tec-section-category {
  color: #1b8755;
}

.electoral-body .tec-section-divider {
  background-color: #1b8755;
}

.electoral-body .tec-tier-badge {
  background-color: #1b8755;
  color: #ffffff;
}

.electoral-body .tec-tier-badge.premium {
  background-color: #0c2e1c;
  color: #ffffff;
  border: 1px solid #1b8755;
}

.electoral-body .tec-service-card:hover {
  border-color: #1b8755;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.electoral-body .deliv-title {
  color: #1b8755;
}

.electoral-body .tec-stream-node {
  background-color: #1b8755;
  color: #ffffff;
}

.electoral-body .oaxaca-metric-num {
  color: #1b8755;
}

.electoral-body .oaxaca-metric {
  border-top-color: #1b8755;
}

.electoral-body .tec-target-audience {
  border-left: 4px solid #1b8755;
  background: rgba(27, 135, 85, 0.05);
}

/* ==========================================================================
   SECCIÓN 4: CONTACTO / AGENDAR REUNIÓN PRIVADA (PLANO, FONDO BLANCO)
   ========================================================================== */
.electoral-body .tec-contact-section {
  background-color: #ffffff;
  padding: 100px 0 120px;
  position: relative;
  z-index: 10;
}

.electoral-body .tec-contact-box {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.electoral-body .tec-contact-left {
  padding: 56px 48px;
  background: #f8faf8;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.electoral-body .tec-contact-left .tec-section-category {
  font-family: 'Archivo', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1b8755;
  margin-bottom: 14px;
  display: block;
}

.electoral-body .tec-contact-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.0rem, 2.6vw, 2.6rem);
  font-weight: 850;
  color: #0c1410;
  margin: 0 0 18px 0;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.electoral-body .tec-contact-desc {
  font-family: 'Archivo', sans-serif;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #4a5550;
  margin-bottom: 36px;
}

.electoral-body .tec-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.electoral-body .tec-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.94rem;
  color: #1a241f;
  line-height: 1.4;
}

.electoral-body .tec-contact-item .contact-icon {
  font-size: 20px;
  color: #1b8755;
  background: rgba(27, 135, 85, 0.08);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  user-select: none;
}

.electoral-body .tec-contact-item .contact-text {
  font-weight: 600;
  color: #1a241f;
  text-decoration: none;
  transition: color 0.2s ease;
}

.electoral-body .tec-contact-item a.contact-text:hover {
  color: #1b8755;
  text-decoration: underline;
}

.electoral-body .tec-contact-right {
  padding: 56px 48px;
  background-color: #ffffff;
}

.electoral-body .tec-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.electoral-body .tec-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.electoral-body .tec-form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.electoral-body .tec-form-field label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #2b3830;
}

.electoral-body .tec-form-field input,
.electoral-body .tec-form-field select,
.electoral-body .tec-form-field textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.92rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  background-color: #fbfcfa;
  color: #0c1410;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-sizing: border-box;
}

.electoral-body .tec-form-field input:focus,
.electoral-body .tec-form-field select:focus,
.electoral-body .tec-form-field textarea:focus {
  border-color: #1b8755;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(27, 135, 85, 0.14);
}

.electoral-body .tec-btn-primary {
  background-color: #1b8755;
  color: #ffffff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 16px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px rgba(27, 135, 85, 0.22);
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.electoral-body .tec-btn-primary:hover {
  background-color: #146c43;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27, 135, 85, 0.3);
}

.electoral-body .tec-footer {
  background-color: #06110b;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 60px 0 30px;
}

.electoral-body .tec-footer .tec-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.electoral-body .tec-footer .brand-col {
  max-width: 520px;
}

.electoral-body .tec-footer .contact-col {
  text-align: left;
}

.electoral-body .tec-footer-heading {
  border-bottom: 2px solid #1b8755;
  margin-bottom: 16px;
  display: inline-block;
  padding-bottom: 4px;
}

.electoral-body .tec-footer .tec-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.electoral-body .tec-footer .tec-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.electoral-body .tec-footer .footer-icon {
  font-size: 17px;
  color: #1b8755;
  background: rgba(27, 135, 85, 0.16);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  user-select: none;
}

.electoral-body .tec-footer .tec-footer-contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.electoral-body .tec-footer .tec-footer-contact-item a:hover {
  color: #34d399;
  text-decoration: underline;
}

.electoral-body .tec-brand-name strong {
  color: #1b8755;
}

@media (max-width: 900px) {
  .electoral-body .tec-contact-box {
    grid-template-columns: 1fr;
  }
  .electoral-body .tec-contact-left {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 36px 24px;
  }
  .electoral-body .tec-contact-right {
    padding: 36px 24px;
  }
  .electoral-body .tec-form-row {
    grid-template-columns: 1fr;
  }
  .electoral-body .tec-footer .tec-footer-top {
    flex-direction: column;
    gap: 28px;
  }
}

/* ==========================================================================
   ANIMACIONES LENTAS & CINEMÁTICAS (MOTION DESIGN)
   ========================================================================== */
@keyframes navApparition {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleRiseSlow {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroYearDescendSlow {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBottomFadeSlow {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* REVEAL ON SCROLL - TRANSICIONES BIDIRECCIONALES FLUIDAS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.reveal-delay-3 {
  transition-delay: 0.35s;
}

.reveal-delay-4 {
  transition-delay: 0.48s;
}

/* ==========================================================================
   SECCIÓN: TABLERO POLÍTICO 2027 (DISEÑO FIGMA CON HOJA SUPERIOR REDONDEADA)
   ========================================================================== */
.electoral-tablero-section {
  background-color: #ffffff;
  color: #000000;
  padding: 80px 0 100px;
  width: 100%;
  position: relative;
  z-index: 10;
  margin-top: -24px; /* EFECTO HOJA SUPERPUESTA SUTIL SOBRE EL HERO */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.12);
  border: none !important;
  outline: none !important;
}

.electoral-tablero-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}

.electoral-tablero-header {
  margin-bottom: 36px;
}

.tablero-kicker-green {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1b8755;
  margin-bottom: 10px;
}

.electoral-tablero-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 12px;
}

.tablero-title-accent {
  color: #1b8755;
  font-weight: 900;
}

.electoral-tablero-subtitle {
  font-family: 'Archivo', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #333333;
  max-width: 920px;
  line-height: 1.6;
}

.electoral-tablero-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 48px;
  align-items: center;
}

.electoral-tablero-rows {
  display: flex;
  flex-direction: column;
}

.electoral-tablero-row {
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #000000;
  transition: background-color 0.25s ease;
  overflow: hidden;
}

.electoral-tablero-row:first-child {
  border-top: 2px solid #000000;
}

.electoral-tablero-row:hover {
  background-color: rgba(27, 135, 85, 0.02);
}

.electoral-tablero-row:hover .tablero-row-num,
.electoral-tablero-row.is-open .tablero-row-num {
  color: #1b8755; /* RESALTADO EN VERDE EN HOVER Y CUANDO ESTÁ ABIERTO */
}

.tablero-row-summary,
.tablero-row-trigger {
  display: grid;
  grid-template-columns: 160px 1fr 44px;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
  width: 100%;
}

.tablero-row-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  justify-self: end;
}

.electoral-tablero-row:hover .tablero-row-toggle {
  background: transparent;
}

.electoral-tablero-row.is-open .tablero-row-toggle {
  background: transparent;
  transform: rotate(45deg);
}

/* Elegante icono de Cruz / Más usando CSS puro */
.toggle-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  background-color: #000000;
  transition: background-color 0.3s ease;
}

.toggle-icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.toggle-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

.electoral-tablero-row:hover .toggle-icon::before,
.electoral-tablero-row:hover .toggle-icon::after,
.electoral-tablero-row.is-open .toggle-icon::before,
.electoral-tablero-row.is-open .toggle-icon::after {
  background-color: #1b8755;
}

/* CAJÓN DESPLEGABLE CON GRID 0fr -> 1fr (SOLO TEXTO PURO) */
.tablero-row-drawer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.electoral-tablero-row.is-open .tablero-row-drawer {
  grid-template-rows: 1fr;
}

.tablero-drawer-inner {
  overflow: hidden;
}

.tablero-drawer-text {
  font-family: 'Archivo', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: #444444;
  line-height: 1.55;
  margin: 0 0 20px 180px; /* Alineado visualmente con el texto, dejando la columna numérica despejada */
  padding: 0;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
}

.tablero-drawer-text strong {
  font-weight: 700;
  color: #0c1410;
}

/* REVELACIÓN PALABRA POR PALABRA (WORD-BY-WORD SCROLL REVEAL) */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  filter: blur(4px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.is-visible .split-word,
.is-visible.split-word,
.electoral-tablero-header.is-visible .split-word,
.insight-split-statement.is-visible .split-word,
.word-split.is-visible .split-word {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0) !important;
}

.tablero-row-num {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 900;
  line-height: 0.9;
  color: #000000;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tablero-row-num.tablero-stacked {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  line-height: 0.85;
}

.tablero-row-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tablero-row-label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.3;
}

.tablero-row-tag {
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #1b8755;
  line-height: 1.3;
}

.electoral-tablero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.electoral-tablero-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.electoral-tablero-media:hover .electoral-tablero-img {
  transform: scale(1.02);
}

/* ==========================================================================
   TEXTURA DE PÍXELES EN FONDO BLANCO (MONOCROMÁTICA, ULTRA SUTIL Y LENTA)
   ========================================================================== */
.white-pixel-noise-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.electoral-tablero-section,
.electoral-components-section,
.tec-contact-section {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

.electoral-tablero-container,
.electoral-components-container,
.tec-container {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   BLOQUE EDITORIAL: VENTANAS DE OPORTUNIDAD & FACTORES DE RIESGO
   ========================================================================== */
.electoral-insight-split-block {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.insight-split-statement {
  max-width: 620px;
}

.insight-statement-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #0c1410;
  margin: 0;
}

.insight-green-accent {
  color: #1b8755;
  font-weight: 900;
}

.insight-statement-desc {
  font-family: 'Archivo', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #444444;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 540px;
}

.insight-cards-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 580px;
  position: relative;
}

.insight-card-fullbleed {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  flex: 1;
  min-height: 110px;
  cursor: pointer;
  /* ANIMACIÓN EXTRA PAUSADA Y CINEMÁTICA AL 50% MÁS LENTA (2.7s) */
  transition: flex 2.7s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 2.7s cubic-bezier(0.16, 1, 0.3, 1),
              background 2.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 2.7s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 2.0s ease;
  display: flex;
  flex-direction: column;
  border: none !important;
  outline: none !important;
  user-select: none;
}

/* FONDOS PLANOS SÓLIDOS (SIN DEGRADADOS) */
.insight-card-opportunity {
  background: #1b8755;
  background-color: #1b8755;
}

.insight-card-risk {
  background: #8c2626;
  background-color: #8c2626;
}

/* FOTOGRAFÍA DOCUMENTAL */
.insight-card-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  transition: opacity 2.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 3.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* OVERLAY TRANSLÚCIDO SOBRE LA FOTO */
.insight-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(8, 14, 10, 0.48) 0%, rgba(8, 14, 10, 0.88) 100%);
  transition: background 2.7s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 2.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* CONTENIDO */
.insight-card-content {
  position: relative;
  z-index: 3;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  color: #ffffff;
  box-sizing: border-box;
  transition: padding 2.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-card-top {
  margin-bottom: 8px;
  display: flex;
  transition: margin-bottom 2.0s ease;
}

.insight-card-badge {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  transition: background 2.0s ease, border-color 2.0s ease, color 2.0s ease;
}

.badge-opportunity {
  background: rgba(27, 135, 85, 0.45);
}

.badge-risk {
  background: rgba(140, 38, 38, 0.45);
}

.insight-card-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.25;
  transition: color 2.0s ease, font-size 2.7s ease, margin 2.7s ease;
}

.insight-card-desc {
  font-family: 'Archivo', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  margin: 0;
  transition: max-height 2.7s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 2.2s ease,
              margin 2.7s ease;
}

.insight-card-desc strong {
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   ESTADO EXPANDIDO (ÚNICAMENTE ACTIVADO AL DAR CLIC CON .is-expanded)
   - Crece a flex 3.6 (~80% de altura)
   - Muestra la fotografía con zoom sutil (1.04)
   - Overlay translúcido de color sobre la foto
   - Muestra la descripción completa
   ========================================================================== */
.insight-card-fullbleed.is-expanded {
  flex: 3.6;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}

.insight-card-fullbleed.is-expanded .insight-card-bg-img {
  opacity: 1;
  transform: scale(1.04);
}

.insight-card-opportunity.is-expanded .insight-card-overlay {
  background: linear-gradient(180deg, rgba(27, 135, 85, 0.74) 0%, rgba(12, 60, 36, 0.92) 100%);
  opacity: 1;
}

.insight-card-risk.is-expanded .insight-card-overlay {
  background: linear-gradient(180deg, rgba(140, 38, 38, 0.74) 0%, rgba(70, 16, 16, 0.92) 100%);
  opacity: 1;
}

.insight-card-fullbleed.is-expanded .insight-card-desc {
  max-height: 300px;
  opacity: 1;
  margin-top: 6px;
  display: block;
}

/* ==========================================================================
   ESTADO CONTRAÍDO / MINIMIZADO (ACTIVADO AL DAR CLIC CON .is-shrunk)
   - Se reduce a flex 0.9 (~20% de altura)
   - SIN DEGRADADOS: Color 100% plano sólido (#1b8755 / #8c2626)
   - NO MUESTRA LA IMAGEN DE FONDO (opacity: 0)
   - Overlay desactivado por completo (opacity: 0)
   - Centrado vertical con padding generoso (no choca con el borde superior)
   - Oculta la descripción
   ========================================================================== */
.insight-card-fullbleed.is-shrunk {
  flex: 0.9;
}

.insight-card-opportunity.is-shrunk {
  background: #1b8755 !important;
  background-color: #1b8755 !important;
}

.insight-card-risk.is-shrunk {
  background: #8c2626 !important;
  background-color: #8c2626 !important;
}

.insight-card-fullbleed.is-shrunk .insight-card-bg-img {
  opacity: 0 !important; /* NO MUESTRA LA FOTO AL MINIMIZARSE */
  transform: scale(1);
}

.insight-card-fullbleed.is-shrunk .insight-card-overlay {
  opacity: 0 !important; /* SIN DEGRADADOS NI OVERLAY */
}

.insight-card-fullbleed.is-shrunk .insight-card-content {
  justify-content: center;
  padding: 16px 28px;
}

.insight-card-fullbleed.is-shrunk .insight-card-top {
  margin-bottom: 5px;
}

.insight-card-opportunity.is-shrunk .insight-card-title {
  color: #ffffff;
  margin: 0;
  font-size: 1.12rem;
}

.insight-card-opportunity.is-shrunk .insight-card-badge {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.insight-card-risk.is-shrunk .insight-card-title {
  color: #ffffff;
  margin: 0;
  font-size: 1.12rem;
}

.insight-card-risk.is-shrunk .insight-card-badge {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.insight-card-fullbleed.is-shrunk .insight-card-desc {
  max-height: 0;
  opacity: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ==========================================================================
   ESTADO EN REPOSO / POR DEFECTO (EQUILIBRADO 50/50, SIN CLIC ACTIVO)
   - Ambos bloques se mantienen 50/50 aunque el cursor pase por encima
   ========================================================================== */
.insight-cards-col:not(.has-active) .insight-card-desc {
  max-height: 120px;
  opacity: 0.92;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-cards-col:not(.has-active) .insight-card-bg-img {
  opacity: 1;
}

.insight-cards-col:not(.has-active) .insight-card-overlay {
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVIDAD SECCIÓN 1: TABLERO POLÍTICO & BLOQUE EDITORIAL
   ========================================================================== */
@media (max-width: 1024px) {
  .electoral-tablero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .electoral-tablero-media {
    max-width: 480px;
    margin: 10px auto 0;
  }

  .electoral-insight-split-block {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
    padding-top: 50px;
  }

  .insight-cards-col {
    height: auto;
    min-height: 480px;
  }
}

@media (max-width: 768px) {
  .tablero-row-summary,
  .tablero-row-trigger {
    grid-template-columns: 110px 1fr 36px;
    gap: 14px;
    padding: 18px 0;
  }

  .tablero-row-num {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
    letter-spacing: -1px;
  }

  .tablero-row-num.tablero-stacked {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .tablero-row-label {
    font-size: 0.80rem;
  }

  .tablero-row-tag {
    font-size: 0.66rem;
  }

  .tablero-drawer-text {
    margin: 4px 0 16px 0 !important;
    font-size: 0.84rem;
  }

  .insight-statement-title {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  }

  .insight-cards-col {
    height: auto;
    min-height: 440px;
    gap: 14px;
  }

  .insight-card-fullbleed {
    min-height: 180px;
  }

  .insight-card-content {
    padding: 22px 20px;
  }
}

@media (max-width: 480px) {
  .tablero-row-summary,
  .tablero-row-trigger {
    grid-template-columns: 80px 1fr 28px;
    gap: 10px;
    padding: 15px 0;
  }

  .tablero-row-num {
    font-size: 1.95rem;
  }

  .tablero-row-num.tablero-stacked {
    font-size: 1.35rem;
  }

  .tablero-row-label {
    font-size: 0.74rem;
  }

  .tablero-row-tag {
    font-size: 0.60rem;
  }
}

/* ==========================================================================
   SECCIÓN: LOS TRES COMPONENTES DEL EQUIPO ANALÍTICO 2027 (ESTILO BIOTECH FIGMA)
   ========================================================================== */
.electoral-components-section {
  background-color: #ffffff;
  color: #0c1410;
  padding: 110px 0 130px;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.electoral-components-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}

.electoral-components-split {
  display: grid;
  grid-template-columns: 0.85fr 2fr;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 76px;
}

.components-editorial-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -1px;
  color: #0c1410;
  margin: 0;
}

.components-editorial-title .accent-green {
  color: #1b8755;
  font-weight: 900;
}

.components-editorial-desc {
  font-family: 'Archivo', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #444444;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 440px;
}

.components-statement {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #0c1410;
  margin: 0;
}

.components-statement .highlight-green {
  color: #1b8755;
  font-weight: 900;
}

/* ==========================================================================
   SECCIÓN 2: LOS TRES COMPONENTES (ACORDEÓN HORIZONTAL AL DAR CLIC)
   ========================================================================== */
.electoral-components-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  min-height: 600px;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}

.component-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background-color: #06110a;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  outline: none !important;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  user-select: none;
  transition: flex 2.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 2.7s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 2.0s ease,
              border-color 1.5s ease;
}

.component-card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: contrast(1.08) brightness(0.82);
  transition: transform 3.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 2.7s ease,
              opacity 2.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.component-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(6, 15, 10, 0.35) 0%,
    rgba(4, 12, 8, 0.6) 35%,
    rgba(2, 8, 5, 0.92) 75%,
    rgba(1, 4, 3, 0.98) 100%
  );
  pointer-events: none;
  transition: background 2.7s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 2.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.component-card-overlay.overlay-accent {
  background: linear-gradient(
    180deg,
    rgba(10, 28, 18, 0.38) 0%,
    rgba(6, 20, 13, 0.65) 35%,
    rgba(3, 14, 8, 0.94) 75%,
    rgba(1, 8, 4, 0.99) 100%
  );
}

/* FILTRO DE TEXTURA DE GRANO FÍLMICO EDITORIAL */
.component-card-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.component-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 28px 34px;
  box-sizing: border-box;
  transition: padding 2.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.component-card-top {
  display: flex;
  justify-content: flex-start;
  margin-bottom: auto;
  transition: justify-content 2.0s ease;
}

.component-card-badge {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #ffffff;
  font-family: 'Archivo', sans-serif;
  font-size: 0.74rem;
  font-weight: 750;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  transition: background 2.0s ease, border-color 2.0s ease, font-size 2.0s ease, padding 2.0s ease;
}

.component-card-badge.badge-accent {
  background: rgba(27, 135, 85, 0.6);
  border-color: rgba(27, 135, 85, 0.85);
}

.component-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.component-card-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: font-size 2.7s ease, color 2.0s ease;
}

.component-card-desc {
  font-family: 'Archivo', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transition: max-height 2.7s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 2.2s ease,
              margin 2.7s ease;
}

/* BLOQUE EXTENDIDO (ENTREGABLES / QUÉ INCLUYE ESTE COMPONENTE) */
.component-card-extended {
  max-height: 0;
  opacity: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 2.7s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 2.2s ease,
              margin 2.7s ease;
}

.component-extended-header {
  font-family: 'Archivo', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(52, 211, 153, 0.25);
}

.component-extended-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.component-extended-list li {
  position: relative;
  padding-left: 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.90);
}

.component-extended-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #34d399;
  font-size: 1.1rem;
  line-height: 1;
  top: 1px;
}

.component-extended-list li strong {
  color: #ffffff;
  font-weight: 700;
}

/* ==========================================================================
   ESTADO EXPANDIDO (.is-expanded)
   - Crece horizontalmente (flex: 3.4)
   - Despliega el contenido extendido con animación suave 2.7s
   - Sombra y realce de borde
   ========================================================================== */
.component-card.is-expanded {
  flex: 3.4;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border-color: rgba(52, 211, 153, 0.35) !important;
}

.component-card.is-expanded .component-card-bg-img {
  transform: scale(1.04);
  filter: contrast(1.1) brightness(0.88);
}

.component-card.is-expanded .component-card-desc {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 14px;
}

.component-card.is-expanded .component-card-extended {
  max-height: 400px;
  opacity: 1;
  margin-top: 12px;
  pointer-events: auto;
}

/* ==========================================================================
   ESTADO MINIMIZADO / CONTRAÍDO (.is-shrunk)
   - Se reduce horizontalmente (flex: 0.8)
   - Oculta descripciones y contenido extendido para mantener estética limpia
   ========================================================================== */
.component-card.is-shrunk {
  flex: 0.8;
  opacity: 0.82;
}

.component-card.is-shrunk .component-card-content {
  padding: 24px 16px 28px;
}

.component-card.is-shrunk .component-card-top {
  justify-content: center;
  width: 100%;
}

.component-card.is-shrunk .component-card-badge {
  font-size: 0.62rem;
  padding: 4px 8px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.2px;
  border-radius: 8px;
  max-width: 100%;
}

.component-card.is-shrunk .component-card-desc,
.component-card.is-shrunk .component-card-extended {
  max-height: 0;
  opacity: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.component-card.is-shrunk .component-card-title {
  font-size: 1.05rem;
  line-height: 1.25;
}

/* ==========================================================================
   ESTADO EN REPOSO / SIN SELECCIÓN ACTIVA (:not(.has-active))
   ========================================================================== */
.electoral-components-grid:not(.has-active) .component-card-desc {
  max-height: 160px;
  opacity: 0.92;
}

.electoral-components-grid:not(.has-active) .component-card-extended {
  max-height: 0;
  opacity: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .electoral-components-split {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 50px;
  }
  .electoral-components-grid {
    flex-direction: column;
    min-height: auto;
    gap: 24px;
  }
  .component-card {
    flex: none !important;
    width: 100%;
    min-height: auto;
  }
  .component-card.is-shrunk {
    opacity: 1;
  }
  .component-card.is-shrunk .component-card-desc {
    max-height: 160px;
    opacity: 0.92;
  }
}

@media (max-width: 640px) {
  .electoral-components-container {
    padding: 0 20px;
  }
  .component-card {
    padding: 22px 20px 28px;
  }
  .component-card-img {
    max-width: 170px;
    max-height: 170px;
  }
}

@media (max-width: 1024px) {
  .electoral-tablero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .electoral-tablero-row {
    grid-template-columns: 140px 1fr 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .electoral-insight-split-block {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
    padding-top: 50px;
  }
}

@media (max-width: 640px) {
  .electoral-tablero-container {
    padding: 0 20px;
  }
  .electoral-tablero-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .insight-card {
    padding: 22px 20px;
  }
}

@media (max-width: 900px) {
  .electoral-header-inner {
    padding: 0 20px;
  }
  .electoral-nav {
    display: none;
  }
  .electoral-btn-home {
    font-size: 0.72rem;
    padding: 6px 16px;
    height: 34px;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .electoral-hero-figma {
    min-height: 100svh;
    height: auto;
  }
  .electoral-hero-content-wrap {
    padding: 96px 20px 70px 20px;
    min-height: 100svh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .electoral-hero-center {
    margin: auto 0;
    padding: 24px 0 16px;
  }
  .electoral-hero-title {
    font-size: clamp(3.0rem, 12.5vw, 4.8rem);
    line-height: 1.0;
    letter-spacing: -1px;
  }
  .electoral-hero-year {
    font-size: clamp(7.4rem, 28vw, 12.5rem);
    line-height: 0.84;
    margin-top: -6px;
    letter-spacing: -4px;
  }
  .electoral-tablero-section {
    margin-top: -30px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    padding: 60px 0 80px;
  }
  .electoral-hero-bottom-bar {
    flex-direction: column;
    align-items: stretch;
    min-height: 200px;
    gap: 18px;
    margin-top: 24px;
  }
  .electoral-hero-bottom-left {
    width: 100%;
    min-height: 130px;
    height: 130px;
    max-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
  }
  .electoral-kicker {
    margin-bottom: 6px;
    font-size: 0.80rem;
    letter-spacing: 1.2px;
  }
  .electoral-hero-summary {
    height: 98px;
    min-height: 98px;
    max-height: 98px;
    overflow: hidden;
    text-align: left;
    font-size: 0.80rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
  .electoral-hero-bottom-right {
    width: 100%;
    flex-shrink: 0;
  }
  .electoral-hero-cta {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 15px 24px;
    font-size: 0.90rem;
  }
}

@media (max-width: 480px) {
  .electoral-header-inner {
    padding: 0 14px;
  }
  .electoral-brand {
    gap: 8px;
  }
  .electoral-brand-dot {
    width: 12px;
    height: 12px;
  }
  .electoral-brand-name {
    font-size: 0.78rem;
    letter-spacing: 0.8px;
    white-space: nowrap;
  }
  .electoral-btn-home {
    font-size: 0.65rem;
    padding: 5px 12px;
    height: 30px;
    letter-spacing: 0.4px;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .electoral-hero-content-wrap {
    padding: 88px 18px 60px 18px;
  }
  .electoral-hero-title {
    font-size: clamp(2.7rem, 13vw, 3.4rem);
  }
  .electoral-hero-year {
    font-size: clamp(6.8rem, 30vw, 8.8rem);
    letter-spacing: -3px;
  }
  .electoral-hero-bottom-left {
    min-height: 138px;
    height: 138px;
    max-height: 138px;
  }
  .electoral-hero-summary {
    height: 106px;
    min-height: 106px;
    max-height: 106px;
    font-size: 0.77rem;
    line-height: 1.48;
  }
}

/* ==========================================================================
   SECCIÓN 3: HOJA DE RUTA (STICKY PINNED STAGE & TIMELINE VERTICAL CONTINUO)
   ========================================================================== */
.electoral-roadmap-wrapper {
  background-color: #06190f; /* Verde botánico profundo formal */
  color: #ffffff;
  position: relative;
  width: 100%;
  height: 440vh; /* Altura generosa para animar título + 5 puntos y dejar 2-3 scrolls de pausa con la línea completa */
  margin-top: -24px; /* Efecto superpuesto sutil y no pronunciado */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.12);
  border: none !important;
  outline: none !important;
  overflow: visible !important; /* CRUCIAL: Debe ser visible para permitir que position:sticky funcione */
  z-index: 15;
}

/* ESCENARIO STICKY (SE QUEDA PEGADO EN PANTALLA MIENTRAS DURA EL SCROLL) */
.roadmap-sticky-stage {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden; /* Recorta los hijos respetando el radio superior de 20px */
  box-sizing: border-box;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: #06190f; /* Fondo verde botánico profundo */
}

/* COLUMNA IZQUIERDA: FOTOGRAFÍA DOCUMENTAL FIJA A TODA LA ALTURA (SIN TEXTO) */
.roadmap-left-media {
  width: 44%;
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.roadmap-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.06) brightness(0.92);
}

/* COLUMNA DERECHA: ENCABEZADO PROTAGÓNICO Y TIMELINE DISTRIBUIDO VERTICALMENTE CON CSS GRID */
.roadmap-right-stage {
  width: 56%;
  height: 100%;
  padding-top: 76px; /* Offset exacto de la barra de navegación superior (76px) */
  padding-bottom: 0px;
  padding-left: clamp(36px, 4.2vw, 60px);
  padding-right: clamp(36px, 4.2vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centrado vertical exacto: distancia tope navbar == distancia fondo sección */
  align-items: center; /* Centrado horizontal exacto: distancia al filo de la foto == distancia al filo derecho */
  background-color: #06190f; /* Fondo verde botánico profundo */
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.roadmap-stage-header {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(44px, 5.5vh, 52px); /* Separación aumentada un 300% respecto a la lista */
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

.roadmap-stage-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.35rem, 3.0vw, 3.5rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: #ffffff;
  margin: 0;
}

.roadmap-title-line {
  display: block;
  white-space: nowrap !important; /* "Hoja de Ruta hacia la" y "Victoria Electoral 2027." en líneas continuas */
  word-break: keep-all !important;
  overflow: visible;
}

.roadmap-stage-title .accent-green {
  color: #1b8755; /* Verde botánico institucional */
  font-weight: 900;
  white-space: nowrap;
}

.roadmap-stage-subtitle {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(0.80rem, 0.88vw, 0.94rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.42;
  margin: 10px 0 0 0;
  max-width: 588px;
}

/* CONTENEDOR TIMELINE CON DIMENSIONES PRECISAS (588px x 454.36px) Y CENTRADO HORIZONTAL */
.roadmap-timeline-container {
  position: relative;
  width: 100%;
  max-width: 588px;
  height: 454.36px;
  margin-left: auto;
  margin-right: auto;
  flex: none;
  box-sizing: border-box;
}

/* LÍNEA VERTICAL CONTINUA PLANA QUE CRUZA POR DETRÁS DE LOS NODOS DELGADOS */
.roadmap-timeline-track {
  position: absolute;
  left: 11px; /* Centrado exactamente con el nodo delgado de 22px (22/2 = 11) */
  top: 11px;
  bottom: calc(20% - 11px); /* Llega con exactitud hasta el centro del nodo 05 */
  width: 2px;
  background-color: rgba(255, 255, 255, 0.16);
  z-index: 1;
  transform: translateX(-50%);
}

.roadmap-timeline-bar {
  width: 100%;
  height: 0%;
  background-color: #1b8755; /* Verde botánico institucional plano, sin glows */
  box-shadow: none !important;
}

/* LISTA DE LOS 5 PUNTOS DISTRIBUIDOS CON CSS GRID (5 FILAS EQUITATIVAS) */
.roadmap-timeline-items {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  height: 454.36px;
  width: 100%;
  max-width: 588px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.roadmap-item {
  display: flex;
  gap: clamp(28px, 2.5vw, 36px); /* Separación aumentada un 200% entre nodo y texto */
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  will-change: opacity, transform;
}

.roadmap-item.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* NODO BLANCO DELGADO Y ELEGANTE */
.roadmap-item-node {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  border-radius: 50%;
  background-color: #ffffff; /* Blanco sólido plano */
  border: 1.5px solid #ffffff;
  color: #06190f; /* Número oscuro de alto contraste */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  box-shadow: none !important; /* Plano completamente, sin glow */
  z-index: 3;
}

.roadmap-item.is-active .roadmap-item-node {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #06190f;
  box-shadow: none !important;
  transform: scale(1.05);
}

.roadmap-item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.roadmap-item-phase {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 0.60rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1b8755; /* Verde institucional */
  margin-bottom: 2px;
}

.roadmap-item-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(0.82rem, 0.90vw, 0.96rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.roadmap-item-desc {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(0.70rem, 0.75vw, 0.78rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.36;
  margin: 0;
}

/* RESPONSIVIDAD TABLET Y MÓVIL (STICKY PINNED STAGE ACTIVO) */
@media (max-width: 1024px) {
  .electoral-roadmap-wrapper {
    height: 380vh; /* Permite scroll fluido en dispositivos táctiles */
    margin-top: -20px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    position: relative;
    overflow: visible !important;
  }

  .roadmap-sticky-stage {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-color: #06190f;
    box-sizing: border-box;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  /* La imagen pasa a ser fondo fotográfico sutil con textura detrás del contenido */
  .roadmap-left-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.12;
    filter: contrast(1.15) brightness(0.6);
  }

  .roadmap-right-stage {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    padding-top: clamp(76px, 9.5vh, 88px);
    padding-bottom: clamp(16px, 2.5vh, 24px);
    padding-left: clamp(20px, 4.5vw, 36px);
    padding-right: clamp(20px, 4.5vw, 36px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: transparent;
    box-sizing: border-box;
    overflow: hidden;
  }

  .roadmap-stage-header {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: clamp(10px, 2.0vh, 18px);
    flex-shrink: 0;
  }

  .roadmap-stage-title {
    font-size: clamp(1.42rem, 5.8vw, 2.1rem);
    line-height: 1.12;
    letter-spacing: -0.6px;
  }

  .roadmap-title-line {
    display: inline;
    white-space: normal !important;
    word-break: normal !important;
  }

  .roadmap-stage-subtitle {
    font-size: clamp(0.72rem, 2.2vw, 0.82rem);
    line-height: 1.34;
    margin: 4px 0 0 0;
    max-width: 100%;
  }

  .roadmap-timeline-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    box-sizing: border-box;
    max-height: clamp(380px, 58vh, 520px);
  }

  .roadmap-timeline-track {
    position: absolute;
    left: 11px;
    top: 11px;
    bottom: 11px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.16);
    z-index: 1;
    transform: translateX(-50%);
  }

  .roadmap-timeline-bar {
    width: 100%;
    height: 0%;
    background-color: #1b8755;
    transition: height 0.05s linear;
  }

  .roadmap-timeline-items {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    row-gap: clamp(4px, 1.2vh, 10px);
  }

  .roadmap-item {
    display: flex;
    gap: clamp(12px, 3.2vw, 18px);
    align-items: flex-start;
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    will-change: opacity, transform;
  }

  .roadmap-item.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .roadmap-item-node {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1.5px solid #ffffff;
    color: #06190f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.60rem;
    font-weight: 800;
    flex-shrink: 0;
    z-index: 3;
    transition: transform 0.3s ease;
  }

  .roadmap-item-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
  }

  .roadmap-item-phase {
    font-size: clamp(0.50rem, 1.8vw, 0.56rem);
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #1b8755;
    margin-bottom: 0px;
    line-height: 1.2;
  }

  .roadmap-item-title {
    font-size: clamp(0.72rem, 2.6vw, 0.84rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.16;
  }

  .roadmap-item-desc {
    font-size: clamp(0.63rem, 2.1vw, 0.70rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.26;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .roadmap-right-stage {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 80px;
    padding-bottom: 14px;
  }

  .roadmap-stage-header {
    margin-bottom: 8px;
  }

  .roadmap-stage-title {
    font-size: clamp(1.35rem, 6.2vw, 1.65rem);
    line-height: 1.10;
  }

  .roadmap-stage-subtitle {
    font-size: 0.70rem;
    line-height: 1.30;
    margin-top: 3px;
  }

  .roadmap-timeline-container {
    max-height: clamp(340px, 54vh, 440px);
  }

  .roadmap-item {
    gap: 12px;
  }

  .roadmap-item-node {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    font-size: 0.56rem;
  }

  .roadmap-timeline-track {
    left: 10px;
    top: 10px;
    bottom: 10px;
  }

  .roadmap-item-title {
    font-size: 0.74rem;
  }

  .roadmap-item-desc {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: transparent;
    box-sizing: border-box;
    overflow: hidden;
  }

  .roadmap-stage-header {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: clamp(10px, 2.0vh, 18px);
    flex-shrink: 0;
  }

  .roadmap-stage-title {
    font-size: clamp(1.42rem, 5.8vw, 2.1rem);
    line-height: 1.12;
    letter-spacing: -0.6px;
  }

  .roadmap-title-line {
    display: inline;
    white-space: normal !important;
    word-break: normal !important;
  }

  .roadmap-stage-subtitle {
    font-size: clamp(0.72rem, 2.2vw, 0.82rem);
    line-height: 1.34;
    margin: 4px 0 0 0;
    max-width: 100%;
  }

  .roadmap-timeline-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    box-sizing: border-box;
    max-height: clamp(380px, 58vh, 520px);
  }

  .roadmap-timeline-track {
    position: absolute;
    left: 11px;
    top: 11px;
    bottom: 11px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.16);
    z-index: 1;
    transform: translateX(-50%);
  }

  .roadmap-timeline-bar {
    width: 100%;
    height: 0%;
    background-color: #1b8755;
    transition: height 0.05s linear;
  }

  .roadmap-timeline-items {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    row-gap: clamp(4px, 1.2vh, 10px);
  }

  .roadmap-item {
    display: flex;
    gap: clamp(12px, 3.2vw, 18px);
    align-items: flex-start;
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    will-change: opacity, transform;
  }

  .roadmap-item.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .roadmap-item-node {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1.5px solid #ffffff;
    color: #06190f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.60rem;
    font-weight: 800;
    flex-shrink: 0;
    z-index: 3;
    transition: transform 0.3s ease;
  }

  .roadmap-item-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
  }

  .roadmap-item-phase {
    font-size: clamp(0.50rem, 1.8vw, 0.56rem);
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #1b8755;
    margin-bottom: 0px;
    line-height: 1.2;
  }

  .roadmap-item-title {
    font-size: clamp(0.72rem, 2.6vw, 0.84rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.16;
  }

  .roadmap-item-desc {
    font-size: clamp(0.63rem, 2.1vw, 0.70rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.26;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .roadmap-right-stage {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 80px;
    padding-bottom: 14px;
  }

  .roadmap-stage-header {
    margin-bottom: 8px;
  }

  .roadmap-stage-title {
    font-size: clamp(1.35rem, 6.2vw, 1.65rem);
    line-height: 1.10;
  }

  .roadmap-stage-subtitle {
    font-size: 0.70rem;
    line-height: 1.30;
    margin-top: 3px;
  }

  .roadmap-timeline-container {
    max-height: clamp(340px, 54vh, 440px);
  }

  .roadmap-item {
    gap: 12px;
  }

  .roadmap-item-node {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    font-size: 0.56rem;
  }

  .roadmap-timeline-track {
    left: 10px;
    top: 10px;
    bottom: 10px;
  }

  .roadmap-item-title {
    font-size: 0.74rem;
  }

  .roadmap-item-desc {
    font-size: 0.63rem;
    line-height: 1.22;
  }
}
