.elementor-1562 .elementor-element.elementor-element-13e05a9{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-296ead63 *//* ═══════════════════════════════════════
   TRENES PARA CHILE 2050
   Política Nacional Ferroviaria — página detallada
   Paleta: blanco · azul marino · rojo Chile
   ═══════════════════════════════════════ */

:root {
  --blanco:     #ffffff;
  --fondo:      #f4f5f7;
  --azul:       #1a2a6c;
  --azul-mid:   #22357a;
  --rojo:       #c0392b;
  --rojo-claro: #e74c3c;
  --gris:       #4a5568;
  --gris-claro: #9ca3af;
  --gris-linea: rgba(26,42,108,0.1);
  --negro:      #111827;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--fondo);
  color: var(--negro);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ══ RIELES VERTICALES (corren desde el top por toda la página) ══ */
.rieles {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.rieles::before,
.rieles::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg,
    var(--azul) 0%,
    rgba(26,42,108,0.15) 40%,
    rgba(26,42,108,0.08) 100%
  );
}

.rieles::before { left:  7vw; }
.rieles::after  { right: 7vw; }

/* Traviesas */
.rieles-traviesas {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7vw;
  right: 7vw;
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 40px,
    rgba(26,42,108,0.06) 40px,
    rgba(26,42,108,0.06) 42px
  );
}

/* ══ HERO ══ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 0 8vw 5rem;
  overflow: hidden;
  background: var(--blanco);
  z-index: 1;
}

.hero-deco-tl {
  position: absolute;
  top: 0; left: 0;
  width: 80px;
  height: 100%;
  background: var(--azul);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
  z-index: 1;
}

.hero-deco-tr {
  position: absolute;
  top: 0; right: 0;
  width: 200px;
  height: 52%;
  background: var(--rojo);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.hero-deco-br {
  position: absolute;
  bottom: 0; right: 0;
  width: 200px;
  height: 50%;
  background: #d1d5db;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%);
  z-index: 1;
  opacity: 0.4;
}

.hero-linea-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--rojo);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin-left: 80px;
}

.hero-etiqueta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rojo);
  margin-bottom: 1.25rem;
}

.hero-etiqueta::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: currentColor;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--azul);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--rojo);
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gris);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gris);
  border-top: 2px solid var(--azul);
  padding-top: 1.25rem;
}

.hero-meta strong {
  display: block;
  color: var(--azul);
  font-weight: 600;
  font-size: 14px;
}

.hero-meta-sep {
  width: 1px; height: 28px;
  background: var(--gris-linea);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ══ SECCIONES GENERALES ══ */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 8vw 5rem calc(8vw + 80px);
  border-top: 1px solid var(--gris-linea);
}

section:nth-child(odd) { background: var(--blanco); }
section:nth-child(even) { background: var(--fondo); }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rojo);
  margin-bottom: 1rem;
}

.sec-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
}

h2.sec-titulo {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--azul);
  margin-bottom: 1rem;
}

h2.sec-titulo em {
  font-style: normal;
  color: var(--rojo);
}

.sec-intro {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gris);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ══ GRILLA DE DATOS (diagnóstico) ══ */
.datos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--gris-linea);
  border: 1px solid var(--gris-linea);
  margin-bottom: 2.5rem;
}

.dato-card {
  background: var(--blanco);
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--azul);
}

.dato-num {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--azul);
  line-height: 1;
  margin-bottom: .25rem;
}

.dato-num.rojo { color: var(--rojo); }

.dato-unidad {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gris-claro);
  margin-bottom: .75rem;
}

.dato-desc {
  font-size: 13px;
  color: var(--gris);
  line-height: 1.55;
}

/* ══ BLOQUE DESTACADO ══ */
.bloque-dest {
  border-left: 4px solid var(--azul);
  background: rgba(26,42,108,0.04);
  padding: 1.5rem 2rem;
  font-size: .95rem;
  color: var(--gris);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.bloque-dest strong { color: var(--azul); font-weight: 600; }

.bloque-dest.rojo {
  border-left-color: var(--rojo);
  background: rgba(192,57,43,0.04);
}

.bloque-dest.rojo strong { color: var(--rojo); }

/* ══ FODA TABS ══ */
.foda-tabs {
  display: flex;
  gap: 1px;
  background: var(--gris-linea);
  border: 1px solid var(--gris-linea);
  margin-bottom: 2rem;
  border-radius: 2px;
  overflow: hidden;
}

.foda-tab {
  flex: 1;
  padding: .75rem 1rem;
  background: var(--blanco);
  border: none;
  color: var(--gris);
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.foda-tab.active {
  background: var(--azul);
  color: var(--blanco);
}

.foda-tab:hover:not(.active) {
  background: var(--fondo);
  color: var(--azul);
}

.foda-content { display: none; }
.foda-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.foda-quadrant h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gris-linea);
}

.foda-quadrant ul { list-style: none; }

.foda-quadrant li {
  font-size: 14px;
  color: var(--gris);
  padding: .45rem 0 .45rem 1rem;
  position: relative;
  border-bottom: 1px solid var(--gris-linea);
  line-height: 1.5;
}

.foda-quadrant li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rojo);
}

/* ══ ÉXITOS GRID ══ */
.exitos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--gris-linea);
  border: 1px solid var(--gris-linea);
  margin-bottom: 2rem;
}

.exito-card {
  background: var(--blanco);
  padding: 2rem;
  border-top: 3px solid var(--rojo);
  transition: background .2s;
}

.exito-card:hover { background: #fafbff; }

.exito-nombre {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: .2rem;
}

.exito-apodo {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rojo);
  margin-bottom: 1rem;
}

.exito-stat {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--azul);
  line-height: 1;
}

.exito-stat span { font-size: 1rem; color: var(--gris-claro); font-weight: 400; }

.exito-stat-label {
  font-size: 12px;
  color: var(--gris-claro);
  margin-top: .25rem;
  margin-bottom: .75rem;
}

.exito-desc {
  font-size: 13px;
  color: var(--gris);
  line-height: 1.55;
}

/* ══ VISIÓN COLS ══ */
.vision-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.vision-quote {
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--azul);
  border-left: 4px solid var(--rojo);
  padding-left: 1.5rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.vision-list { list-style: none; }

.vision-list li {
  display: flex;
  gap: .75rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--gris-linea);
  font-size: 14px;
  color: var(--gris);
  line-height: 1.55;
}

.vision-list li::before {
  content: '→';
  color: var(--rojo);
  flex-shrink: 0;
  font-weight: 700;
}

/* Métricas objetivo */
.obj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--gris-linea);
  border: 1px solid var(--gris-linea);
  margin-top: 3rem;
}

.obj-card {
  background: var(--azul);
  padding: 1.75rem;
}

.obj-big {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--blanco);
  line-height: 1;
}

.obj-big span { font-size: 1rem; color: rgba(255,255,255,0.5); font-weight: 400; }

.obj-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: .5rem;
  line-height: 1.45;
}

/* ══ DESAFÍOS ACCORDION ══ */
.desafio-item {
  border-bottom: 1px solid var(--gris-linea);
}

.desafio-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--azul);
  gap: 1rem;
  transition: color .2s;
}

.desafio-header:hover { color: var(--rojo); }

.desafio-arrow {
  color: var(--rojo);
  font-size: 1.2rem;
  transition: transform .25s;
  flex-shrink: 0;
}

.desafio-item.open .desafio-arrow { transform: rotate(45deg); }

.desafio-body {
  display: none;
  padding-bottom: 1.5rem;
}

.desafio-item.open .desafio-body { display: block; }

.desafio-body ul { list-style: none; }

.desafio-body li {
  font-size: 14px;
  color: var(--gris);
  padding: .5rem 0 .5rem 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--gris-linea);
  line-height: 1.55;
}

.desafio-body li::before {
  content: '✓';
  position: absolute;
  left: 0; top: .55rem;
  color: var(--azul);
  font-size: 11px;
  font-weight: 700;
}

/* ══ LINEAMIENTOS ══ */
.lin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--gris-linea);
  border: 1px solid var(--gris-linea);
}

.lin-card {
  background: var(--blanco);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}

.lin-card:hover { background: #f8f9ff; }

.lin-num {
  font-size: 5rem;
  font-weight: 700;
  color: rgba(26,42,108,0.06);
  line-height: 1;
  position: absolute;
  top: .5rem; right: 1rem;
  user-select: none;
}

.lin-text {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.6;
  position: relative;
}

/* ══ GOBERNANZA ══ */
.gov-flow {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--gris-linea);
  border: 1px solid var(--gris-linea);
  margin-bottom: 2rem;
}

.gov-nivel {
  background: var(--blanco);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: start;
}

.gov-nivel:first-child {
  background: var(--azul);
}

.gov-nivel:first-child .gov-titulo { color: rgba(255,255,255,0.7); }
.gov-nivel:first-child .gov-desc  { color: rgba(255,255,255,0.85); }

.gov-titulo {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rojo);
  padding-top: 2px;
}

.gov-desc {
  font-size: 13px;
  color: var(--gris);
  line-height: 1.6;
}

/* ══ INDICADORES ══ */
.ind-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.ind-tag {
  background: rgba(26,42,108,0.07);
  border: 1px solid rgba(26,42,108,0.15);
  color: var(--azul);
  font-size: 13px;
  padding: .4rem 1rem;
  border-radius: 2px;
  transition: background .2s, color .2s;
  cursor: default;
}

.ind-tag:hover {
  background: var(--azul);
  color: var(--blanco);
}

/* ══ CIERRE / CTA ══ */
.cierre {
  position: relative;
  overflow: hidden;
  padding: 6rem 8vw 6rem calc(8vw + 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  background: var(--azul);
  z-index: 1;
}

.cierre::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 220px; height: 100%;
  background: var(--rojo);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.cierre::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 70px; height: 100%;
  background: rgba(0,0,0,0.2);
  clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
  z-index: 0;
}

.cierre-texto { position: relative; z-index: 1; }

.cierre-texto h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--blanco);
  margin-bottom: .75rem;
}

.cierre-texto h2 span { color: #f9c74f; }

.cierre-texto p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
  line-height: 1.7;
}

.cierre-botones {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ══ BOTONES ══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blanco);
  color: var(--azul);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  padding: .85rem 1.75rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: #eef2ff;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--blanco);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  padding: .85rem 1.75rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s, background .2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--azul);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: .75rem 1.5rem;
  border-radius: 2px;
  border: 2px solid var(--azul);
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s;
}

.btn-outline:hover {
  background: var(--azul);
  color: var(--blanco);
}

.btn-rojo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rojo);
  color: var(--blanco);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: .75rem 1.5rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}

.btn-rojo:hover {
  background: var(--rojo-claro);
  transform: translateY(-1px);
}

.btn-primary svg,
.btn-secondary svg,
.btn-outline svg,
.btn-rojo svg {
  width: 15px; height: 15px; flex-shrink: 0;
}

/* ══ FOOTER ══ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 4px solid var(--rojo);
  padding: 1.75rem 8vw;
  background: var(--blanco);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--gris-claro);
}

.footer a {
  color: var(--gris);
  text-decoration: none;
  transition: color .2s;
}

.footer a:hover { color: var(--rojo); }

.footer-links { display: flex; gap: 1.5rem; }

/* ══ NAV LATERAL ══ */
.page-nav {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gris-claro);
  transition: color .2s;
}

.page-nav a::before {
  content: '';
  display: block;
  width: 16px; height: 2px;
  background: currentColor;
  transition: width .2s;
  flex-shrink: 0;
}

.page-nav a:hover,
.page-nav a.active { color: var(--azul); }

.page-nav a.active::before { width: 28px; background: var(--rojo); }

@media (max-width: 900px) { .page-nav { display: none; } }

/* ══ FADE IN ══ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

.fade-in.visible { opacity: 1; transform: none; }

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
  section { padding: 3.5rem 5vw 3.5rem 5vw; }
  .hero-content { margin-left: 60px; }
  .hero-deco-tl { width: 50px; }
  .hero-deco-tr, .hero-deco-br { width: 120px; }
  .foda-content.active,
  .vision-cols { grid-template-columns: 1fr; }
  .gov-nivel { grid-template-columns: 1fr; gap: .5rem; }
  .cierre {
    grid-template-columns: 1fr;
    padding: 3rem 5vw;
  }
  .cierre::before { display: none; }
  .cierre-botones { flex-direction: row; flex-wrap: wrap; }
  .hero-cta { flex-direction: column; }
}/* End custom CSS */