:root {
  /* Paleta tomada del PDF: amarillo oro, azul profundo, coral y verde acento */
  --bg: #1e1e1d;
  --bg-2: #252524;
  --card: #2b2b2a;
  --accent: #f8d347;     /* oro dominante */
  --accent-2: #1e4b9e;    /* azul protagonista */
  --accent-3: #eb455e;    /* coral */
  --accent-4: #47a04c;    /* verde */
  --text: #f2f2ec;
  --muted: #c7c7bd;
  --pill: #30302f;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 18% 18%, rgba(248,211,71,0.08), transparent 35%),
              radial-gradient(circle at 82% 10%, rgba(30,75,158,0.20), transparent 45%),
              radial-gradient(circle at 50% 90%, rgba(235,69,94,0.10), transparent 40%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
section { scroll-margin-top: 70px; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 18px 6vw;
  background: rgba(30,30,29,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo { display: inline-flex; align-items: center; gap: 8px; }
.logo img { height: 46px; width: auto; display: block; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25)); }
.nav { display: flex; gap: 18px; align-items: center; margin-left: auto; }
.nav a {
  position: relative;
  --nav-accent: #009E31;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  transition: color .2s;
  font-weight: 600;
}
.nav a[href="#que-es"] { --nav-accent: #009E31; }   /* Verde */
.nav a[href="#agenda"] { --nav-accent: #1e4b9e; }   /* Azul */
.nav a[href="#premios"] { --nav-accent: #f8d347; }  /* Amarillo */
.nav a[href="#novedades"] { --nav-accent: #ff8a00; } /* Naranja */
.nav a[href="#ser-parte"] { --nav-accent: #ff2e5a; } /* Rosa */
.nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--nav-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.nav a:hover,
.nav a.active,
.nav a:focus-visible {
  color: var(--text);
  background: transparent;
}
.nav a:hover::after,
.nav a.active::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}
.nav-toggle { display: none; background: var(--card); color: var(--text); border: 1px solid rgba(255,255,255,0.1); padding: 10px 12px; border-radius: 10px; font-size: 18px; }
.lang-toggle {
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .15s, opacity .2s;
}
.lang-toggle:hover { transform: translateY(-1px); opacity: 0.92; }
.lang-toggle .lang-flag { width: 30px; height: 30px; display: block; border-radius: 999px; object-fit: cover; }
body.menu-open { overflow: hidden; }
.nav-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 8;
}
.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: 80vh;
  padding: 60px 6vw 90px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30,30,29,0.75), rgba(30,75,158,0.55), rgba(0,0,0,0.35));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero h1 { font-size: clamp(2.6rem, 4vw, 3.5rem); margin: 10px 0 14px; }
.claim { font-size: 1.25rem; color: #fff; font-weight: 700; margin-bottom: 10px; }
.subclaim { color: #fff; font-weight: 700; margin-bottom: 22px; }
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.hero-meta .meta-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta .dot { opacity: 0.7; }
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 14px; font-weight: 700;
  border: 1px solid transparent; transition: transform .15s, box-shadow .2s, background .2s, color .2s;
}
.btn.primary { background: linear-gradient(120deg, var(--accent), #ffd85c); color: #2b2100; box-shadow: 0 14px 30px rgba(248,211,71,0.25); }
.btn.primary:hover { transform: translateY(-1px); }
.btn.ghost { border-color: #004ca4; color: #fff; background: #004ca4; }
.btn.ghost:hover { border-color: #003a82; color: #fff; background: #003a82; }
.hero-controls {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-control {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.hero-control:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-1px); }
.hero-control:focus-visible,
.nav-toggle:focus-visible,
.lang-toggle:focus-visible,
.nav a:focus-visible,
.mobile-sticky-cta:focus-visible {
  outline: 2px solid #f8d347;
  outline-offset: 2px;
}

.section { padding: 80px 6vw; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.eyebrow { letter-spacing: 1px; text-transform: uppercase; font-weight: 700; color: var(--accent); font-size: 0.8rem; margin: 0 0 12px; }
.lede { font-weight: 700; color: var(--text); }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; align-items: start; }
.section#que-es { background: #fff; color: #1e1e1d; }
.section#que-es .section-text p,
.section#que-es .section-text h2 { color: #1e1e1d; }
.highlight-green { background: linear-gradient(120deg, rgba(0,158,49,0.4), rgba(0,158,49,0.15)); padding: 0 6px; border-radius: 6px; }
.section.ejes {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 6vw;
  padding-right: 6vw;
}
.section.ejes::before {
  content: "";
  position: absolute;
  inset: -60px 0 0;
  background: url("../img/Recurso-1autos.png") center bottom / 120% auto no-repeat;
  opacity: 0.28;
  pointer-events: none;
}
.section.ejes .section-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.ejes { margin-top: 0; padding: 0; }
.ejes h3 { text-transform: uppercase; letter-spacing: 1px; color: #0f8f3a; margin: 0 0 12px; font-size: 1.1rem; }
.ejes-copy { margin: 0 0 18px; color: #fff; }
.ejes-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.ejes-grid .chip {
  --enter-delay: 0s;
  --float-y: -6px;
  --float-duration: 6s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #111;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  will-change: transform;
  animation-name: chip-enter, chip-float;
  animation-duration: .62s, var(--float-duration);
  animation-timing-function: cubic-bezier(.2,.65,.2,1), ease-in-out;
  animation-delay: var(--enter-delay), calc(var(--enter-delay) + .62s);
  animation-iteration-count: 1, infinite;
  animation-fill-mode: both, none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.js .ejes-grid .chip { animation-play-state: paused, paused; }
.js .ejes-grid.is-visible .chip { animation-play-state: running, running; }
.ejes-grid .chip:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 18px rgba(0,0,0,0.2);
}
.ejes-grid .chip:nth-child(1) { --enter-delay: .02s; --float-y: -6px; --float-duration: 5.5s; }
.ejes-grid .chip:nth-child(2) { --enter-delay: .08s; --float-y: -8px; --float-duration: 6.1s; }
.ejes-grid .chip:nth-child(3) { --enter-delay: .14s; --float-y: -5px; --float-duration: 5.8s; }
.ejes-grid .chip:nth-child(4) { --enter-delay: .20s; --float-y: -7px; --float-duration: 6.4s; }
.ejes-grid .chip:nth-child(5) { --enter-delay: .26s; --float-y: -6px; --float-duration: 5.9s; }
.ejes-grid .chip:nth-child(6) { --enter-delay: .32s; --float-y: -8px; --float-duration: 6.2s; }
.ejes-grid .chip:nth-child(7) { --enter-delay: .38s; --float-y: -6px; --float-duration: 5.6s; }
.ejes-grid .chip:nth-child(8) { --enter-delay: .44s; --float-y: -7px; --float-duration: 6.6s; }
.ejes-grid .chip:nth-child(9) { --enter-delay: .50s; --float-y: -5px; --float-duration: 5.7s; }
.ejes-grid .chip:nth-child(10) { --enter-delay: .56s; --float-y: -7px; --float-duration: 6.3s; }
.chip.pink { background: #ff2e5a; color: #fff; }
.chip.yellow { background: #ffe27a; }
.chip.blue { background: #8ed2ff; }
.chip.orange { background: #ffb05e; }
.chip.purple { background: #d6a3ff; }
.chip.green { background: #009E31; color: #fff; }
.chip.amber { background: #ffd157; }
.chip.coral { background: #ff9fb3; }
.chip.teal { background: #86e0e5; }
.chip.deepgreen { background: #a5f0c8; }
@keyframes chip-enter {
  0% { opacity: 0; transform: translateY(16px) scale(.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(var(--float-y)); }
}
@media (prefers-reduced-motion: reduce) {
  .ejes-grid .chip {
    animation: none;
    transition: none;
  }
  .ejes-grid .chip:hover {
    transform: none;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  }
}
.section-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.section#premios {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 158, 49, 0.12), transparent 40%),
    radial-gradient(circle at 88% 92%, rgba(30, 75, 158, 0.16), transparent 42%),
    #f5f6f8;
  color: #1e1e1d;
}
.section#premios.split { align-items: stretch; }
.section#premios .section-text { max-width: 64ch; }
.section#premios .section-text h2 {
  color: #1e1e1d;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  margin-bottom: 16px;
}
.section#premios .section-text p {
  color: #1e1e1d;
  max-width: 56ch;
  line-height: 1.65;
  margin: 0 0 14px;
}
.section#premios .section-card.awards {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background:
    radial-gradient(circle at 84% 28%, rgba(30, 75, 158, 0.12), transparent 42%),
    linear-gradient(155deg, #f1f3f7 0%, #e6e9ef 52%, #dde2ea 100%);
  color: #0f172a;
  border: 1.5px solid #cfd5de;
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  box-shadow:
    0 20px 36px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.section#premios .section-card.awards::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #009e31 0%, #1e4b9e 60%, #f8d347 100%);
}
.section#premios .section-card .awards-logo {
  display: block;
  width: min(100%, 300px);
  max-width: none;
  height: auto;
  margin: 16px auto 24px;
}
.section#premios .section-card .awards-follow {
  margin: 0 12px;
  padding: 0;
  color: #111827;
  font-size: 0.97rem;
  line-height: 1.6;
}
.section#premios .section-card .note {
  color: #f8fafc;
  margin: 2px auto 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: #0f172a;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.35px;
  font-size: 0.78rem;
}
.section-card .bullets { padding-left: 18px; color: var(--muted); }
.section-card .bullets li { margin-bottom: 10px; }
.section-text h2, .section h2 { margin: 6px 0 12px; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-text p, .section p { color: var(--muted); }

.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill { background: var(--pill); padding: 8px 14px; border-radius: 999px; color: var(--text); font-weight: 600; border: 1px solid rgba(255,255,255,0.05); }

.cards .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card { background: linear-gradient(150deg, rgba(30,75,158,0.14), rgba(235,69,94,0.18)); padding: 18px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.06); box-shadow: var(--shadow); }
.card h3 { margin: 4px 0 8px; }
.card p { margin: 0; }

.timeline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.time-block { background: var(--card); padding: 18px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); }
.time-block .date { color: var(--accent); font-weight: 700; margin: 0 0 6px; }
.time-block h3 { margin: 0 0 8px; }
.time-block p { margin: 0; color: var(--muted); }
.highlight { background: linear-gradient(120deg, rgba(248,211,71,0.25), rgba(30,75,158,0.35)); border-color: rgba(248,211,71,0.45); }
.section#agenda { background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1)); }
.section#agenda .time-block { background: #fff; color: #1f2937; border: 1px solid #d1d5db; box-shadow: none; }
.section#agenda .time-block .date { color: #1e4b9e; }
.section#agenda .time-block h3 { color: #111827; }
.section#agenda .time-block p { color: #374151; }
.section#agenda .time-block.highlight { background: linear-gradient(120deg, rgba(0,76,164,0.12), rgba(248,211,71,0.18)); border-color: #1e4b9e; }
.section#agenda h2 { color: #111827; }
.section#agenda .eyebrow { color: #111827; }

.mobility {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #0c3f9b, #0a2f75);
  color: #e9f2ff;
  padding-top: 56px;
  padding-bottom: 72px;
}
.mobility::before {
  content: "";
  position: absolute;
  inset: -40px 0 0;
  background: url("../img/Recurso-1autos.png") center bottom/110% auto no-repeat;
  opacity: 0.32;
  pointer-events: none;
}
.mobility-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.mobility-copy { text-align: center; }
.mobility-copy h2 { color: #fff; margin-bottom: 12px; }
.mobility-copy p { color: #d9e6ff; max-width: 640px; margin: 0 auto; }
.mobility .pill-grid { margin-top: 18px; }
.mobility .pill-grid { justify-content: center; }
.mobility .pill { background: rgba(255,255,255,0.12); color: #e9f2ff; border: 1px solid rgba(255,255,255,0.16); }
.mobility .highlight-pink { color: #ff2e5a; }
.mobility .highlight-yellow { color: #ffd85c; }
.mobility .btn { margin-top: 16px; }
.mobility .btn.primary {
  background: #009E31;
  color: #f5f7f0;
  border-color: #00842a;
  box-shadow: 0 10px 24px rgba(0,158,49,0.35);
}
.mobility .btn.primary:hover {
  background: #00842a;
  border-color: #006d23;
}

.ser-parte {
  background: #009E31;
  padding: 70px 0 0;
  color: #f5f7f0;
}
.ser-parte .section-inner { text-align: center; }
.ser-parte h2 { color: #ffd85c; text-transform: uppercase; letter-spacing: 0.5px; }
.ser-parte .btn.primary { background: #ffd85c; color: #1e1e1d; box-shadow: none; }
.ser-parte .btn.primary:hover { transform: translateY(-1px); }
.ser-parte-copy {
  max-width: 880px;
  margin: 0 auto 20px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
}
.ser-parte-copy .eyebrow { margin: 0; }
.ser-parte-copy h2 { margin: 0; }
.ser-parte-copy p {
  margin: 0;
  max-width: 72ch;
  line-height: 1.6;
}
.ser-parte-copy .btn.primary { margin-top: 4px; }
.ser-parte-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}
.ser-parte-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@media (min-width: 1100px) {
  .ser-parte-gallery { grid-template-columns: repeat(5, 1fr); }
}

.steps .step-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.steps li { background: var(--card); border-radius: 14px; padding: 16px; border: 1px solid rgba(255,255,255,0.05); }
.steps h3 { margin: 0 0 6px; }
.steps .btn.primary { margin-top: 18px; padding: 14px 22px; }

.section#postulacion { background: #fff; color: #1e1e1d; }
.section#postulacion .eyebrow { color: #1e1e1d; }
.section#postulacion h2 { color: #0f172a; }
.section#postulacion .step-list li { background: #f7f7fb; border: 1px solid #d8dce4; color: #1f2937; }
.section#postulacion .step-list h3 { color: #0f172a; }
.section#postulacion .step-list p { color: #374151; }
.section#postulacion .btn.primary {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  background: #009E31;
  color: #f5f7f0;
  border-color: #00842a;
  box-shadow: 0 10px 24px rgba(0,158,49,0.25);
}
.section#postulacion .btn.primary:hover {
  background: #00842a;
  border-color: #006d23;
}
.venue .section-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; align-items: center; }
.map-wrap { position: relative; padding-bottom: 65%; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.map-wrap #venue-map { position: absolute; inset: 0; width: 100%; height: 100%; }
.photo-pin { background: transparent; }
.photo-pin span {
  display: block;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd85c, #1e4b9e);
  border: 2px solid #7a3fc5;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.9);
}

.organizadores .org-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; align-items: start; }
.org-logos { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: flex-start; }
.org-logos img { height: 64px; width: auto; }
.org-groups { display: flex; gap: 44px; flex-wrap: wrap; align-items: flex-start; }
.org-group { background: transparent; border-radius: 14px; padding: 0; border: none; box-shadow: none; }
.org-label { margin: 0 0 10px; font-weight: 800; color: #0f172a; letter-spacing: 0.4px; text-transform: uppercase; font-size: 0.78rem; }
.org-group.co-organizer .org-label { text-align: center; }
.org-group.co-organizer .org-logos { justify-content: center; }
.org-group.co-organizer .logo-anseditur { height: 82px; width: auto; position: relative; top: -10px; }
.organizadores .eyebrow { margin: 0 0 10px; }
.organizadores .muted { color: #0f172a; }
.organizadores { background: #e5e7eb; color: #1e1e1d; padding-top: 50px; padding-bottom: 50px; }
.organizadores h2,
.organizadores .eyebrow,
.organizadores p { color: #111; }

.news {
  background: #f3f4f6;
  color: #111827;
}
.news-layout {
  display: grid;
  gap: 22px;
}
.news-feed {
  display: grid;
  gap: 22px;
}
.news-actions {
  display: flex;
  justify-content: center;
}
.news-more {
  min-width: 220px;
  border-color: #0b4ab2;
  background: #0b4ab2;
  color: #fff;
}
.news-more:hover {
  border-color: #08398b;
  background: #08398b;
}
.news-intro {
  max-width: 760px;
}
.news .eyebrow,
.news h2 { color: #0f172a; }
.news .news-copy {
  margin: 0;
  max-width: 62ch;
  color: #000 !important;
}
.news-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #dbe1ea;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}
.news-featured-row {
  display: grid;
}
.news-card--featured {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  background: #0f172a;
}
.news-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18) 12%, rgba(15, 23, 42, 0.88) 100%);
  pointer-events: none;
}
.news-card--featured .news-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card--featured .news-content {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: #f8fafc;
}
.news-card--featured .news-content h3,
.news-card--featured .news-content p,
.news-card--featured .news-content .news-meta,
.news-card--featured .news-content .news-tag {
  color: inherit;
  text-shadow: 0 2px 14px rgba(15, 23, 42, 0.45);
}
.news-card--featured .news-content h3 {
  color: #f8fafc;
}
.news-card--featured .news-content p {
  color: rgba(248, 250, 252, 0.92);
}
.news-card--featured .news-content .news-meta {
  color: rgba(248, 250, 252, 0.92);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.news-card--compact .news-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.news-card--compact {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-card--compact .news-content {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card--compact .news-link {
  margin-top: auto;
  padding-top: 18px;
}
.news-content h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.15;
  color: #0f172a;
}
.news-content p {
  margin: 0;
  color: #475569;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e0ecff;
  color: #0b4ab2;
}
.news-card--featured .news-tag {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #0b4ab2;
  font-weight: 700;
}
.news-link::after {
  content: "→";
  transition: transform .16s ease;
}
.news-link:hover::after { transform: translateX(2px); }
.news-card--featured .news-link {
  color: #ffd85c;
  text-shadow: 0 2px 14px rgba(15, 23, 42, 0.45);
}

.article-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: auto;
}
.article-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(248, 211, 71, 0.16), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(30, 75, 158, 0.18), transparent 36%),
    #0f172a;
  color: #f8fafc;
  padding-top: 72px;
  padding-bottom: 72px;
}
.article-hero .eyebrow { color: #ffd85c; }
.article-hero-inner {
  max-width: 860px;
}
.article-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
}
.article-kicker {
  margin: 0 0 18px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  color: #dbeafe;
}
.article-lead {
  margin: 0;
  max-width: 70ch;
  color: #e5e7eb;
  font-size: 1.02rem;
}
.article-body {
  background: #fff;
  color: #111827;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.72fr);
  gap: 28px;
  align-items: start;
}
.article-content {
  min-width: 0;
}
.article-cover {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 24px;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}
.article-content p {
  margin: 0 0 20px;
  color: #111827;
  font-size: 1.02rem;
  line-height: 1.8;
}
.article-aside {
  display: grid;
  gap: 18px;
}
.article-panel {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid #dbe1ea;
  background: #f8fafc;
}
.article-panel-label {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0b4ab2;
}
.article-points {
  margin: 0;
  padding-left: 20px;
  color: #111827;
}
.article-points li + li {
  margin-top: 8px;
}
.article-panel p {
  margin: 0 0 16px;
  color: #334155;
}

.participants {
  background: #fff;
  color: #111827;
  padding-top: 56px;
  padding-bottom: 64px;
}
.participants .section-inner { max-width: 1200px; }
.participants-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.participants .eyebrow,
.participants h2 { color: #0f172a; }
.participants .participants-copy {
  margin: 0 auto;
  max-width: 62ch;
  color: #000 !important;
}
.participants-spotlight {
  margin-top: 28px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid #d7e0ea;
  background: #f3f6f9;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
  gap: 22px;
  align-items: center;
}
.participants-spotlight-copy .eyebrow {
  margin-bottom: 8px;
  color: #0b4ab2;
}
.participants-spotlight-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.15;
  color: #0f172a;
}
.participants-spotlight-copy p {
  margin: 0;
  color: #334155;
}
.participants-spotlight-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.participants-spotlight-logo {
  min-height: 96px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.participants-spotlight-logo img {
  display: block;
  width: 100%;
  height: 56px;
  object-fit: contain;
}
.participants-spotlight-logo--cnc img {
  height: 66px;
}
.participants-logos {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.participant-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}
.participant-logo img {
  display: block;
  width: 100%;
  height: 56px;
  object-fit: contain;
}
.participant-logo--featured img { height: 68px; }
.participant-logo--segittur img { height: 78px; }

.site-footer { padding: 40px 6vw 26px; background: #000; color: var(--muted); border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.9rem; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; align-items: start; }
.footer-brand img { height: 52px; width: auto; display: block; margin-bottom: 12px; }
.foot-tagline { color: var(--text); font-weight: 400; margin: 0 0 6px; font-size: 0.82rem; }
.foot-note { margin: 0; color: var(--muted); font-size: 0.82rem; }
.footer-nav h4, .footer-contact h4 { margin: 0 0 10px; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.8rem; }
.footer-nav a, .footer-contact a { display: block; margin: 4px 0; color: var(--muted); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-bottom { margin-top: 22px; display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 0.85rem; }
.footer-social { display: flex; flex-direction: column; gap: 6px; }
.social-label { margin: 0; color: var(--muted); font-size: 0.82rem; }
.social-icons { display: flex; gap: 10px; align-items: center; }
.social-icons img { height: 22px; width: 22px; display: block; }
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 20;
  min-width: 220px;
  text-align: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #006d23;
  background: #009E31;
  color: #f5f7f0;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

@media (max-width: 820px) {
  .nav {
    position: absolute;
    right: 4vw;
    top: 62px;
    background: #101214;
    padding: 14px;
    min-width: 210px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 22px 34px rgba(0,0,0,0.45);
    z-index: 9;
    display: none;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .lang-toggle { margin-left: 10px; }
  .hero-controls { margin-top: 16px; }
  .hero-control { width: 38px; height: 38px; }
  .hero { padding-top: 40px; }
  .site-header { position: sticky; }
  body { padding-bottom: 82px; }
  .mobile-sticky-cta { display: inline-flex; align-items: center; justify-content: center; }
  .mobility { padding-top: 44px; padding-bottom: 56px; }
  .section#premios .section-text h2 { font-size: clamp(1.8rem, 7vw, 2.2rem); }
  .section#premios .section-card.awards { padding: 20px 18px; }
  .section#premios .section-card .awards-logo { width: min(100%, 240px); margin: 12px auto 18px; }
  .section#premios .section-card .awards-follow { margin: 0 8px; font-size: 0.94rem; }
  .news-layout { grid-template-columns: 1fr; }
  .news-card--featured { min-height: 420px; }
  .news-card--featured .news-content,
  .news-card--compact .news-content { padding: 20px; }
  .news-card--compact .news-media { height: 200px; }
  .article-nav { display: none; }
  .article-hero { padding-top: 52px; padding-bottom: 56px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-panel { padding: 18px; }
  .participants-spotlight {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .participants-spotlight-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .participants-spotlight-logo {
    min-height: 88px;
    padding: 14px;
  }
  .participants-spotlight-logo img { height: 46px; }
  .participants-spotlight-logo--cnc img { height: 54px; }
  .participants-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .participant-logo {
    min-height: 92px;
    padding: 14px;
  }
  .participant-logo img { height: 48px; }
  .participant-logo--featured img { height: 56px; }
  .participant-logo--segittur img { height: 64px; }
}
