:root {
  /* Surfaces (dark-mode body) */
  --bg: #0e0e10;
  --bg-alt: #17171a;
  --text: #f4f3ef;
  --text-muted: #b8b6b1;

  /* Brand palette (Constelar — official) */
  --c-blue: #29ABE2;      /* títulos secundarios — cyan oscuro */
  --c-cyan: #2AC3FF;      /* primario brand (oficial) */
  --c-yellow: #FFD400;    /* primario brand (oficial) */
  --c-red: #EB141E;       /* primario brand (oficial) */
  --c-green: #00C93D;     /* primario brand (oficial) */
  --c-purple: #8E44AD;    /* secundario */
  --c-magenta: #E91E63;   /* secundario */
  --c-teal: #00BFA5;      /* secundario */
  --c-orange: #FF6F00;    /* secundario */

  /* Neutrals */
  --c-ink: #3c3f45;
  --c-navy: #0a1a2a;
  --c-bg-light: #eef0f3;

  /* Accents (cards / secondary surfaces) */
  --accent: #ff5a36;
  --accent-2: #ffd166;
  --line: rgba(255,255,255,0.1);

  /* Radii */
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 40px;
  --radius-pill: 100px;

  /* Spacing scale (base 8) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 100px;

  /* Responsive physical unit mapping (1cm ≈ 37.8px on 1440px width design) */
  --cm: 2.625vw;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Accessibility utility for screen-readers only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--c-bg-light) url("assets/img/nav-bg.png") left top / 100% 100% no-repeat;
  overflow: hidden;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 32px;
  flex: 1;
  justify-content: flex-end;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.logo-img {
  height: 95px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-left: 55px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-ink);
}

.nav-links a.active {
  background: var(--c-blue);
  color: #fff;
  padding: 14px 22px;
  border-radius: 6px;
  text-decoration: none;
  align-self: center;
}

.nav-links a:not(.active):not(.nav-cta) {
  position: relative;
  padding: 6px 2px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.nav-links a:not(.active):not(.nav-cta):hover,
.nav-links a:not(.active):not(.nav-cta):focus-visible {
  color: var(--c-blue);
  border-bottom-color: var(--c-blue);
  outline: none;
}

.nav-cta {
  background: var(--c-yellow);
  color: var(--c-ink) !important;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 800;
  text-decoration: none !important;
}
.nav-cta:hover { opacity: 0.85; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--c-ink);
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  line-height: 0;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.menu-toggle:hover { background-color: rgba(0, 0, 0, 0.06); color: var(--c-blue); }
.menu-toggle:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 2px; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--c-bg-light) url("assets/img/hero-bg.png") center top / cover no-repeat;
  color: var(--c-ink);
  overflow: hidden;
}

.hero-content {
  padding-top: 16px;
  max-width: 650px;
}

.hero-deco { display: none; }

.hero-deco {
  position: absolute;
  pointer-events: none;
}

/* Diamond checkerboard helper, reused via background-image */
.hero-deco-yellow,
.hero-deco-green,
.hero-deco-red {
  background-repeat: repeat;
}

/* Yellow diamonds top-left */
.hero-deco-yellow {
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  background-image:
    linear-gradient(45deg, var(--c-yellow) 25%, transparent 25%, transparent 75%, var(--c-yellow) 75%),
    linear-gradient(45deg, var(--c-yellow) 25%, transparent 25%, transparent 75%, var(--c-yellow) 75%);
  background-size: 70px 70px;
  background-position: 0 0, 35px 35px;
  -webkit-mask: radial-gradient(circle at 0 0, #000 0 60%, transparent 60% 100%);
          mask: radial-gradient(circle at 0 0, #000 0 60%, transparent 60% 100%);
}

/* small loose diamonds below the yellow cluster */
.hero-deco-yellow::before,
.hero-deco-yellow::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  background: var(--c-yellow);
  transform: rotate(45deg);
}
.hero-deco-yellow::before { top: 230px; left: 10px; }
.hero-deco-yellow::after { top: 270px; left: 90px; width: 40px; height: 40px; }

/* Green diamonds bottom-right with constellation overlay */
.hero-deco-green {
  bottom: -180px;
  right: -180px;
  width: 560px;
  height: 560px;
  background-image:
    linear-gradient(45deg, var(--c-green) 25%, transparent 25%, transparent 75%, var(--c-green) 75%),
    linear-gradient(45deg, var(--c-green) 25%, transparent 25%, transparent 75%, var(--c-green) 75%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cg stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='rgba(255,255,255,0.55)'%3E%3Cline x1='60' y1='320' x2='200' y2='200'/%3E%3Cline x1='200' y1='200' x2='340' y2='80'/%3E%3Cline x1='200' y1='200' x2='320' y2='300'/%3E%3Cline x1='60' y1='320' x2='150' y2='360'/%3E%3Ccircle cx='60' cy='320' r='8'/%3E%3Ccircle cx='200' cy='200' r='10'/%3E%3Ccircle cx='340' cy='80' r='7'/%3E%3Ccircle cx='320' cy='300' r='6'/%3E%3Ccircle cx='150' cy='360' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px, 100px 100px, cover;
  background-position: 0 0, 50px 50px, center;
  -webkit-mask: radial-gradient(circle at 100% 100%, #000 0 60%, transparent 60% 100%);
          mask: radial-gradient(circle at 100% 100%, #000 0 60%, transparent 60% 100%);
}

/* Red checkered bottom-left with constellation overlay */
.hero-deco-red {
  bottom: -100px;
  left: -100px;
  width: 460px;
  height: 380px;
  background-image:
    linear-gradient(45deg, var(--c-red) 25%, transparent 25%, transparent 75%, var(--c-red) 75%),
    linear-gradient(45deg, var(--c-red) 25%, transparent 25%, transparent 75%, var(--c-red) 75%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='340' viewBox='0 0 400 340'%3E%3Cg stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='rgba(255,255,255,0.6)'%3E%3Cline x1='40' y1='250' x2='160' y2='160'/%3E%3Cline x1='160' y1='160' x2='280' y2='220'/%3E%3Cline x1='160' y1='160' x2='220' y2='40'/%3E%3Cline x1='40' y1='250' x2='100' y2='320'/%3E%3Ccircle cx='40' cy='250' r='9'/%3E%3Ccircle cx='160' cy='160' r='11'/%3E%3Ccircle cx='280' cy='220' r='6'/%3E%3Ccircle cx='220' cy='40' r='6'/%3E%3Ccircle cx='100' cy='320' r='6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 90px 90px, 90px 90px, cover;
  background-position: 0 0, 45px 45px, center;
  -webkit-mask: radial-gradient(circle at 0 100%, #000 0 60%, transparent 60% 100%);
          mask: radial-gradient(circle at 0 100%, #000 0 60%, transparent 60% 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 80px;
  text-align: left;
  width: 100%;
}

.hero-title {
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 1.01;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-year {
  display: inline-block;
  background: var(--c-blue);
  padding: 0.05em 0.3em;
  font-size: 0.32em;
  border-radius: 6px;
  align-self: flex-end;
  margin-left: -0.3em;
  margin-bottom: 0.15em;
}

.hero-eyebrow {
  font-size: 12pt;
  color: var(--c-navy);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.35;
  padding-left: 14px;
  border-left: 3px solid var(--c-blue);
}

.hero-date {
  font-size: 18pt;
  font-weight: 800;
  margin-bottom: 8px;
}

.date-range { color: var(--c-red); }

.hero-place {
  font-size: 14pt;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero-place strong { font-weight: 800; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 20px 44px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.25rem;
  transition: all 0.2s ease;
}

.hero-content .btn-primary {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.btn-primary {
  background: var(--c-yellow);
  color: var(--c-ink);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(246,199,0,0.4); }

.btn-outline {
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: #000 url("assets/img/que-es-bg.png") right top / 98% auto no-repeat;
  color: #fff;
}

.section-dark .container {
  padding-right: 76px;
  margin-left: 38px;
}

.section-title.left,
.section-lead.left,
.sub-title.left {
  text-align: left;
  margin-left: 0;
}

.section-title.left {
  position: relative;
  color: var(--c-blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 1.15;
  padding-top: 40px;
  margin-top: -57px;
}


.section-lead.left {
  max-width: 700px;
  color: #fff;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  margin-top: 32px;
}
.section-lead.left strong {
  color: #fff;
  font-weight: 700;
}

.dims-row {
  align-items: start;
  margin-top: 102px;
  margin-left: 76px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.sub-title.left {
  position: relative;
  margin-left: -76px;
  font-weight: 700;
  font-size: 23.4pt;
  color: var(--c-cyan);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.sub-title.left strong { color: var(--c-cyan); }
.sub-title-white { color: #fff; }

.dim-arrow {
  position: absolute;
  top: 50%;
  right: 19px;
  transform: translateY(-50%);
  color: var(--c-cyan);
  font-size: 1.6rem;
}

.dim-card { background: none; border: none; }

.dim-tag {
  display: inline-block;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 8px 22px;
  border-radius: 13px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.dim-yellow { background: var(--c-yellow); color: #000; }
.dim-green { background: var(--c-green); color: #000; }
.dim-red { background: var(--c-red); color: #fff; }

.dim-card p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

/* SECTION — POSTULA TU PROYECTO (compact, mockup-faithful) */
.section-cta {
  position: relative;
  background: var(--c-bg-light) url("assets/img/postula-bg.png") center center / cover no-repeat;
  color: var(--c-ink);
  padding: 64px 0;
  overflow: hidden;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 44px;
  align-items: start;
  max-width: 1400px;
  padding: 0 65px;
}

/* Left column — pill + title + actions */
.cta-pill {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-ink);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.cta-pill strong { font-weight: 800; }

.cta-title-big {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  font-weight: 400;
  color: var(--c-ink);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.cta-title-big strong { font-weight: 800; }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
}

/* Pill button with arrow circle (image-based) — NO shadow */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 6px 6px 22px;
  min-height: 58px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.25s cubic-bezier(0.2, 0.85, 0.25, 1), filter 0.25s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.cta-btn:active {
  transform: translateY(0);
  filter: brightness(0.97);
}
.cta-btn:focus-visible {
  outline: 3px solid var(--c-ink);
  outline-offset: 4px;
}

.cta-btn-red    { background: var(--c-red);    color: #fff; }
.cta-btn-cyan   { background: var(--c-cyan);   color: var(--c-ink); }
.cta-btn-yellow { background: var(--c-yellow); color: var(--c-ink); }

/* Button widths follow mockup ratio (rojo < cyan < amarillo) */
.cta-btn-red    { width: 232px; }
.cta-btn-cyan   { width: 286px; }
.cta-btn-yellow { width: 334px; }

.cta-btn-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: block;
  transition: transform 0.28s cubic-bezier(0.2, 0.85, 0.25, 1);
}
.cta-btn:hover .cta-btn-arrow { transform: translateX(3px); }

/* Right column — lead-box + 3 cards (scaled up) */
.cta-lead-box {
  background: rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--c-ink);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 26px;
}
.cta-lead-box p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--c-ink);
}
.cta-lead-box strong { font-weight: 700; }

.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* Card uses rectangulo-*.png as full background */
.cta-card {
  position: relative;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  border-radius: 0;
  box-shadow: none;
  padding: 34px 20px 22px;
  min-height: 260px;
}
.cta-card-yellow { background-image: url("assets/img/rectangulo-amarillo.png"); }
.cta-card-green  { background-image: url("assets/img/rectangulo-verde.png"); }
.cta-card-purple { background-image: url("assets/img/rectangulo-morado.png"); }

.cta-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--c-ink);
}
.cta-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--c-ink);
}
.cta-card p strong { font-weight: 700; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cta-btn,
  .cta-btn:hover,
  .cta-btn:active,
  .cta-btn-arrow,
  .cta-btn:hover .cta-btn-arrow {
    transition: none;
    transform: none;
    filter: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .cta-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 40px; }
  .cta-btn-red, .cta-btn-cyan, .cta-btn-yellow { width: 100%; max-width: 420px; }
}
@media (max-width: 768px) {
  .section-cta { padding: 48px 0; }
  .cta-grid { padding: 0 20px; }
  .cta-cards { grid-template-columns: 1fr; }
  .cta-btn { padding: 6px 6px 6px 18px; font-size: 0.75rem; min-height: 52px; }
  .cta-btn-arrow { width: 40px; height: 40px; }
  .cta-card { min-height: 170px; padding: 22px 16px 14px; }
}

/* Remove the old final-CTA section styles (section was deleted) */
.section-final-cta { display: none; }

/* FECHAS IMPORTANTES */
.section-dates {
  background: #000 url("assets/img/fechas-bg.png") center center / 113% auto no-repeat;
  color: #fff;
  padding: 64px 0;
}

.dates-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.dates-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 56px;
}

.timeline {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.timeline-line {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 1px;
  background: #fff;
  z-index: 0;
}

.timeline-label {
  position: absolute;
  top: -34px;
  left: 70px;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-bottom: 24px;
}

.dot-red { background: var(--c-red); }
.dot-yellow { background: var(--c-yellow); }
.dot-blue { background: var(--c-cyan); }
.dot-green { background: var(--c-green); }
.dot-purple { background: var(--c-purple); }

.timeline-date {
  font-weight: 800;
  font-size: 1.2rem;
}

.timeline-text {
  font-size: 1rem;
  color: #ddd;
}

/* PALMIRA, VALLE — full-width PNG with aspect-ratio + absolute content */
.section-palmira {
  position: relative;
  background: var(--c-bg-light) url("assets/img/palmira-bg.png") center center / 100% 100% no-repeat;
  color: var(--c-ink);
  aspect-ratio: 1920 / 1080;
  padding: 0;
  overflow: hidden;
}

.section-palmira .container {
  position: absolute;
  top: 4.5%;
  left: 6%;
  right: 6%;
  bottom: 0;
  max-width: none;
  padding: 0;
  margin: 0;
}

.palmira-eyebrow,
.palmira-title,
.palmira-lead {
  margin-left: 0;
}

.palmira-eyebrow {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.palmira-title {
  color: var(--c-cyan);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.palmira-lead {
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.palmira-info {
  position: absolute;
  left: -1.5%;
  bottom: 6%;
  width: 38%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  z-index: 1;
}

.palmira-row:nth-child(2),
.palmira-row:nth-child(3) {
  margin-top: 0;
}

.palmira-row {
  min-height: 5.8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5vw 2vw;
}

.palmira-row h3 {
  font-size: 1vw;
  font-weight: 700;
  margin-bottom: 0.15vw;
}
.palmira-row p {
  font-size: 0.95vw;
}

.palmira-row h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.palmira-row p {
  font-size: 1rem;
}

/* CIFRAS DE LA 1A EDICION */
.section-cifras {
  background: var(--c-blue) url("assets/img/cifras-bg.png") center center / 100% auto no-repeat;
  color: var(--c-navy);
}

.cifras-eyebrow {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.cifras-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cifras-subtitle {
  font-size: 1.05rem;
  margin-bottom: 56px;
}

.cifras-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cifra {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.cifra-tag {
  display: inline-block;
  font-weight: 800;
  font-size: 1.8rem;
  padding: 8px 24px;
  border-radius: 6px;
  color: #fff;
  width: fit-content;
}

.tag-yellow { background: var(--c-yellow); color: var(--c-navy); }
.tag-red { background: var(--c-red); }
.tag-green { background: var(--c-green); }

.cifra-label {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
  text-align: center;
}

.section-convocatoria {
  background: #000 url("assets/img/convocatoria-bg.png") center center / 100% 100% no-repeat;
  color: #fff;
  padding: 64px 0 140px;
}

.convocatoria-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 24px;
  margin-top: 76px;
  max-width: 600px;
  color: var(--c-blue);
}

.convocatoria-lead {
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 160px;
}

.convocatoria-desktop-view {
  display: block;
}

.convocatoria-mobile-view {
  display: none;
}

.convocatoria-headers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: #e6e6e6;
  border-radius: 40px;
  padding: 24px 48px;
  margin: 0 -48px 24px;
}

.convocatoria-header-item {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy);
}

.convocatoria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.convocatoria-col p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
}

.section-categorias {
  padding: 0;
}

.categorias-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 2646 / 3780;
  background: #fff url("assets/img/categorias-bg.png") center center / 100% 100% no-repeat;
  color: var(--c-navy);
}

.categorias-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 21%;
  padding: 4% 4%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.categorias-eyebrow {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 4px;
  margin-top: var(--cm);
}

.categorias-title {
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 12px;
  margin-top: calc(2 * var(--cm));
}

.categorias-lead {
  font-size: 18px;
  line-height: 1.5;
  max-width: 460px;
}

.categoria-block {
  position: absolute;
  box-sizing: border-box;
  padding: 2% 3%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.categoria-letter {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.categoria-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 4px;
}

.categoria-eje {
  font-size: 0.9rem;
  font-weight: 700;
  font-style: italic;
}

.block-a, .block-c, .block-e {
  padding-left: calc(3% + 4.5 * var(--cm));
}

.block-a, .block-c {
  padding-left: calc(3% + 6.5 * var(--cm));
}

.block-a { left: 0%; top: 23.5%; width: 41%; height: 12%; color: var(--c-navy); overflow: visible; z-index: 2; }
.block-b { left: 58.8%; top: 37.9%; width: 41.2%; height: 12%; }
.block-c { left: 0%; top: 53.2%; width: 41%; height: 12.1%; color: var(--c-navy); overflow: visible; z-index: 2; }
.block-d { left: 58.8%; top: 67.4%; width: 41.2%; height: 12.1%; }
.block-e { left: 6.6%; top: 82.2%; width: 34.4%; height: 12%; }

.categoria-text {
  position: absolute;
  box-sizing: border-box;
  padding: 1% 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.categoria-text p {
  font-size: 0.78rem;
  line-height: 1.45;
  margin-bottom: 24px;
}

.categoria-text h4 {
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 14px;
  margin-top: 10px;
}

.text-a { left: 44%; top: 23.5%; width: 38%; height: 12%; }
.text-b { left: 3%; top: 37.9%; width: 38%; height: 12%; transform: translate(calc(5 * var(--cm)), var(--cm)); }
.text-c { left: 44%; top: 53.2%; width: 42%; height: 12.1%; }
.text-d { left: 3%; top: 67.4%; width: 38%; height: 12.1%; transform: translate(calc(5 * var(--cm)), var(--cm)); }
.text-e { left: 44%; top: 82.2%; width: 40%; height: 12%; transform: translateY(calc(0.5 * var(--cm))); }

.section-modalidades {
  padding: 0;
}

.modalidades-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1080;
  background: #000 url("assets/img/modalidades-bg.png") center center / 100% 100% no-repeat;
  color: #fff;
}

.modalidades-line {
  position: absolute;
  left: 9.4%;
  top: 11.6%;
  width: 7.8%;
  height: 4px;
  background: var(--c-blue);
}

.modalidades-eyebrow {
  position: absolute;
  left: 9.4%;
  top: 16.5%;
  font-size: clamp(1.1rem, 2vw, 2rem);
  font-weight: 800;
  margin: 0;
}

.modalidades-title {
  position: absolute;
  left: 9.4%;
  top: 23%;
  width: 80%;
  font-size: clamp(1.6rem, 4vw, 3.6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-blue);
  margin: 0;
  line-height: 1.1;
}

.modalidades-lead {
  position: absolute;
  left: 9.4%;
  top: 36%;
  width: 39.6%;
  font-size: clamp(0.8rem, 1.3vw, 1.1rem);
  line-height: 1.5;
  margin: 0;
}

.modalidades-fechas-title {
  position: absolute;
  left: 9.4%;
  top: 62%;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 800;
  margin: 0;
}

.modalidades-fechas-subtitle {
  position: absolute;
  left: 9.4%;
  top: 66.2%;
  font-size: clamp(0.75rem, 1.1vw, 0.95rem);
  color: #ccc;
  margin: 0;
}

.modalidades-timeline {
  position: absolute;
  left: 0;
  top: 83%;
  width: 100%;
}

.modalidades-timeline .timeline-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
}

.modalidades-timeline .timeline-item:nth-child(1) { left: 10.9%; }
.modalidades-timeline .timeline-item:nth-child(2) { left: 31.4%; }
.modalidades-timeline .timeline-item:nth-child(3) { left: 44.8%; }
.modalidades-timeline .timeline-item:nth-child(4) { left: 61.6%; }
.modalidades-timeline .timeline-item:nth-child(5) { left: 79%; }

.modalidades-timeline .timeline-tag {
  position: absolute;
  top: calc(-55px - 0.3 * var(--cm));
  left: 50%;
  transform: translateX(calc(-50% + 10.25vw));
  font-weight: 800;
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  white-space: nowrap;
  color: #fff;
}

.modalidades-timeline .timeline-date {
  display: block;
  font-weight: 800;
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  color: #fff;
  margin-top: 18px;
}

.modalidades-timeline .timeline-label {
  display: block;
  position: static;
  top: auto;
  left: auto;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 400;
  color: #ccc;
  margin: 0;
}


.section-programa {
  padding: 0;
}

.programa-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 533;
  background: #000 url("assets/img/programa-bg.png") center center / 100% 100% no-repeat;
  color: #fff;
}

.programa-line {
  position: absolute;
  left: 9.4%;
  top: 18%;
  width: 7.8%;
  height: 4px;
  background: var(--c-blue);
}

.programa-eyebrow {
  position: absolute;
  left: 9.4%;
  top: 33%;
  font-size: clamp(0.9rem, 1.6vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0;
}

.programa-title {
  position: absolute;
  left: 9.4%;
  top: 47%;
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-blue);
  margin: 0;
}

.programa-lead {
  position: absolute;
  left: 9.4%;
  top: 70%;
  width: 38%;
  font-size: clamp(0.8rem, 1.3vw, 1.1rem);
  line-height: 1.5;
  margin: 0;
}

.section-modalidades-detalle {
  padding: 0;
}

.modalidades2-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 1545 / 1999;
  background: #fff url("assets/img/modalidades-detalle-bg.png") center center / 100% 100% no-repeat;
  color: var(--c-navy);
}

.modalidad-block {
  position: absolute;
  box-sizing: border-box;
  padding: 1% 3%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.modalidad-block h3 {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  font-style: italic;
  margin: 0;
}

.block-producto { left: 0%; top: 12%; width: 39.5%; height: 14.5%; transform: translate(calc(3 * var(--cm)), calc(-0.5 * var(--cm))); }
.block-servicio { left: 59.8%; top: 34.3%; width: 40.2%; height: 14.4%; }
.block-comunicacion { left: 0%; top: 53.3%; width: 39.5%; height: 14.5%; transform: translate(calc(3 * var(--cm)), calc(-0.5 * var(--cm))); }
.block-espacio { left: 57.5%; top: 75.2%; width: 42.5%; height: 14.5%; color: var(--c-navy); }

.modalidad-text {
  position: absolute;
  box-sizing: border-box;
  padding: 1% 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modalidad-text p {
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0 0 10px;
}

.modalidad-text h4 {
  font-size: 0.85rem;
  font-weight: 800;
  margin: 4px 0 6px;
}

.text-producto { left: 44%; top: 12%; width: 38%; height: 28%; transform: translateY(calc(-3 * var(--cm))); }
.text-servicio { left: 3%; top: 31%; width: 40%; height: 26%; transform: translate(calc(3 * var(--cm)), calc(-1 * var(--cm))); }
.text-comunicacion { left: 44%; top: 53.3%; width: 40%; height: 26%; transform: translateY(calc(-1.5 * var(--cm))); }
.text-espacio { left: 3%; top: 70%; width: 38%; height: 26%; transform: translate(calc(3 * var(--cm)), 0px); }

.section-exhibicion {
  padding: 0;
}

.exhibicion-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 1545 / 1304;
  background: var(--c-bg-light) url("assets/img/exhibicion-bg.png") center center / 100% 100% no-repeat;
  color: var(--c-navy);
}

.exh-block {
  position: absolute;
  box-sizing: border-box;
  padding: 2% 3%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
}

.exh-block h3 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  text-align: right;
  margin: 0;
}

/* Columna izquierda */
.block-cyan  { left: 0%;   top: 4%;  width: 44%; height: 12%; background: transparent; transform: translateY(calc(0.5 * var(--cm))); }
.block-green { left: 0%;   top: 35%; width: 44%; height: 12%; background: transparent; transform: translateY(var(--cm)); }
.block-black { left: 0%;   top: 65%; width: 44%; height: 12%; background: transparent; transform: translateY(calc(1.3 * var(--cm))); }

/* Columna derecha */
.block-red    { left: 54%; top: 4%;  width: 46%; height: 14%; background: transparent; transform: translate(calc(-9 * var(--cm)), calc(0.5 * var(--cm))); }
.block-yellow { left: 54%; top: 35%; width: 46%; height: 12%; background: transparent; transform: translate(calc(-9 * var(--cm)), var(--cm)); }
.block-purple { left: 54%; top: 65%; width: 46%; height: 12%; background: transparent; transform: translate(calc(-9 * var(--cm)), calc(1.3 * var(--cm))); }

.exh-text {
  position: absolute;
  box-sizing: border-box;
  padding: 1% 2%;
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  line-height: 1.55;
  text-align: center;
}

.exh-text p { margin: 0; }

/* Textos columna izquierda — centrados bajo bloque */
.text-cyan  { left: 5%;   top: 17%; width: 28%; text-align: right; transform: translate(calc(3 * var(--cm)), calc(0.7 * var(--cm))); }
.text-green { left: 5%;   top: 48%; width: 30%; text-align: right; transform: translate(calc(3 * var(--cm)), var(--cm)); }
.text-black { left: 5%;   top: 78%; width: 30%; text-align: right; transform: translate(calc(3 * var(--cm)), var(--cm)); }

/* Textos columna derecha */
.text-red    { left: 54%; top: 20%; width: 38%; text-align: left; transform: translateX(calc(1.5 * var(--cm))); }
.text-yellow { left: 54%; top: 48%; width: 38%; text-align: left; transform: translate(calc(1.5 * var(--cm)), var(--cm)); }
.text-purple { left: 54%; top: 78%; width: 30%; text-align: left; transform: translate(calc(1.5 * var(--cm)), var(--cm)); }

.section-phrase {
  background: #000 url("assets/img/frase-bg.png") center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 0;
}

.section-aliados {
  background: #000;
  padding: 0;
  line-height: 0;
}
.aliados-img {
  display: block;
  width: 100%;
  height: auto;
}

.phrase-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.4;
  color: #000;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 24px;
  text-align: center;
}
.section-title.light { color: var(--bg); }

.section-lead {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-lead.small { margin-bottom: 24px; }
.section-lead.light { color: rgba(14,14,16,0.8); }

.sub-title.centered {
  text-align: center;
  font-size: 1.4rem;
  margin: 48px 0 28px;
  color: var(--accent-2);
}

/* CARDS */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.cards-grid.two { grid-template-columns: repeat(2, 1fr); }
.cards-grid.four { grid-template-columns: repeat(4, 1fr); gap: 56px; }

.card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.card.outline {
  background: transparent;
  border: 1px solid var(--line);
}
.card.span-full { grid-column: 1 / -1; }

.card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--accent-2);
}

.card h5 {
  font-size: 0.95rem;
  margin: 16px 0 8px;
  color: var(--accent);
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.modalidades h4 { color: var(--accent); }

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CATEGORIES */
.categories {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.category {
  display: flex;
  gap: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}

.category-letter {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.category-body h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.category-tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.category-body p {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.category-body h5 {
  font-size: 0.95rem;
  margin: 16px 0 6px;
  color: var(--accent);
}

.category-profile {
  color: var(--text) !important;
}

/* FOOTER */
.footer {
  background: var(--c-bg-light);
  border-top: 1px solid var(--line);
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--c-navy);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col a {
  color: #2a3a4a;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet ancho (≤ 1024px) ── */
@media (max-width: 1024px) {
  .cifras-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .convocatoria-headers { grid-template-columns: repeat(2, 1fr); margin: 0 0 16px; border-radius: 20px; padding: 20px 24px; }
  .convocatoria-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid.three, .cards-grid.two, .cards-grid.four { grid-template-columns: 1fr; gap: 24px; }
  .cta-cards { grid-template-columns: 1fr; }
  .timeline { flex-direction: column; align-items: flex-start; gap: 32px; }
  .timeline-line { display: none; }
  .timeline-label { position: static; margin-bottom: 8px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .dims-row { margin-left: 0; margin-top: 48px; }
  .sub-title.left { margin-left: 0; }
  .section-dark .container { padding-right: 24px; margin-left: 0; }
  .section-dark { background-position: right top; background-size: 60% auto; }
  .palmira-eyebrow, .palmira-title, .palmira-lead, .palmira-info { margin-left: 0; }
  .palmira-info { margin-top: 32px; }
}

/* ── Móvil (≤ 768px) ── */
@media (max-width: 768px) {
  /* Navbar */
  .nav-right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--c-blue);
    margin: 0;
    padding: 20px 24px;
    border-bottom: 3px solid var(--c-ink);
    z-index: 99;
  }
  .nav-right.open { display: flex; flex-direction: column; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 16px; width: 100%; }
  .menu-toggle { display: block; position: relative; z-index: 1; }
  .logo-img { height: 60px; margin-left: 0; }
  .nav-container { padding: 10px 16px; }

  /* Hero */
  .hero-content { padding: 80px 20px 40px; }
  .hero-date { font-size: 13pt; }
  .hero-place { font-size: 11pt; }

  /* Secciones generales */
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .section-dark { background-image: none; background-color: #000; }
  .section-dark .container { padding-right: 16px; margin-left: 0; }
  .dims-row { margin-left: 0; margin-top: 32px; }
  .sub-title.left { margin-left: 0; font-size: 16pt; }

  /* Palmira */
  .section-palmira { background-size: 0; }
  .palmira-eyebrow, .palmira-title, .palmira-lead, .palmira-info { margin-left: 0; }
  .palmira-info { margin-top: 24px; }

  /* Cifras */
  .cifras-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Convocatoria */
  .convocatoria-title { margin-top: 24px; font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .convocatoria-lead { margin-bottom: 40px; }
  .convocatoria-desktop-view { display: none; }
  .convocatoria-mobile-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .convocatoria-mobile-card {
    background: #e6e6e6;
    border-radius: 14px;
    padding: 24px;
    color: var(--c-navy);
  }
  .convocatoria-mobile-card .convocatoria-header-item {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--c-navy);
  }
  .convocatoria-mobile-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--c-ink);
    margin: 0;
  }

  /* CTA botones */
  .cta-buttons { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn { padding: 14px 28px; font-size: 1rem; }

  /* ── Secciones con posicionamiento absoluto sobre imagen ──
     Como usan aspect-ratio + porcentajes, escalan proporcionalmente.
     Solo hay que resetear los transforms en cm que NO escalan. */

  /* Categorías */
  .categorias-eyebrow { font-size: 4vw; margin-top: 0; }
  .categorias-title   { font-size: 4.5vw; margin-top: 3%; }
  .categorias-lead    { font-size: 2vw; max-width: 100%; }
  .block-a, .block-c  { padding-left: 3%; }
  .block-a, .block-c, .block-e { padding-left: 3%; }
  .categoria-letter   { font-size: 4vw; }
  .categoria-block h3 { font-size: 2.2vw; }
  .categoria-eje      { font-size: 1.6vw; }
  .categoria-text p   { font-size: 1.6vw; line-height: 1.35; margin-bottom: 12px; }
  .categoria-text h4  { font-size: 1.8vw; margin-bottom: 8px; margin-top: 6px; }
  .text-b { transform: none; }
  .text-d { transform: none; }
  .text-e { transform: none; }

  /* Cuatro modalidades transversales */
  .modalidades-eyebrow       { font-size: 2.2vw; }
  .modalidades-title         { font-size: 3.5vw; }
  .modalidades-lead          { font-size: 1.6vw; }
  .modalidades-fechas-title  { font-size: 1.8vw; }
  .modalidades-fechas-subtitle { font-size: 1.4vw; }
  .modalidades-timeline .timeline-date  { font-size: 1.4vw; margin-top: 10px; }
  .modalidades-timeline .timeline-label { font-size: 1.2vw; }
  .modalidades-timeline .timeline-tag   { font-size: 1.2vw; }

  /* Detalle modalidades */
  .block-producto    { transform: none; }
  .block-comunicacion { transform: none; }
  .text-producto     { transform: none; }
  .text-servicio     { transform: none; }
  .text-comunicacion { transform: none; }
  .text-espacio      { transform: none; }
  .modalidad-block h3 { font-size: 1.8vw; }
  .modalidad-text p   { font-size: 1.4vw; }
  .modalidad-text h4  { font-size: 1.6vw; }

  /* Exhibición curatorial */
  .block-cyan, .block-green, .block-black  { transform: none; }
  .block-red, .block-yellow, .block-purple { transform: none; }
  .exh-block h3 { font-size: 2vw; }
  .text-cyan, .text-green, .text-black     { transform: none; }
  .text-red, .text-yellow, .text-purple    { transform: none; }
  .exh-text { font-size: 1.4vw; }

  /* Footer */
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-logo { max-width: 160px; }

  /* Otros */
  .category { flex-direction: column; gap: 16px; }
}

/* ── Móvil pequeño (≤ 480px) ── */
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero-content { padding: 70px 14px 32px; }
  .container { padding: 0 14px; }
  .cifras-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cifra-tag { font-size: 1.4rem; padding: 6px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .section-dates { padding: 32px 0; }
  .dates-title { font-size: 1.2rem; }
  .dates-subtitle { margin-bottom: 36px; }

  /* Textos aún más pequeños en las secciones de imagen */
  .categorias-eyebrow { font-size: 3vw; }
  .categorias-title   { font-size: 3.5vw; }
  .categorias-lead    { font-size: 1.6vw; }
  .categoria-letter   { font-size: 3vw; }
  .categoria-block h3 { font-size: 1.8vw; }
  .categoria-eje      { font-size: 1.4vw; }
  .categoria-text p   { font-size: 1.4vw; }
  .categoria-text h4  { font-size: 1.5vw; }
  .modalidad-block h3 { font-size: 1.5vw; }
  .modalidad-text p   { font-size: 1.2vw; }
  .exh-block h3       { font-size: 1.6vw; }
  .exh-text           { font-size: 1.2vw; }
}

/* ============================================================
   BUTTON STATES (hover + focus-visible, no transforms)
   ============================================================ */

.btn {
  cursor: pointer;
  transition: box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--c-cyan);
  outline-offset: 4px;
}

.btn-primary {
  box-shadow: 0 4px 14px rgba(255, 214, 0, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(255, 214, 0, 0.55);
  transform: none;
}
.btn-primary:active {
  box-shadow: 0 2px 6px rgba(255, 214, 0, 0.4);
}

.cta-buttons .btn-primary {
  box-shadow: 0 4px 14px rgba(0, 191, 255, 0.25);
}
.cta-buttons .btn-primary:hover {
  box-shadow: 0 10px 28px rgba(0, 191, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(0, 191, 255, 0.08);
  box-shadow: 0 4px 14px rgba(0, 191, 255, 0.2);
}

/* ============================================================
   SECTION — FINAL CTA (¿Listo para postular?)
   ============================================================ */

.section-final-cta {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 191, 255, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 214, 0, 0.12), transparent 55%),
    var(--bg);
  color: var(--text);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section-final-cta .container {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.final-cta-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cyan);
  border: 1px solid var(--c-cyan);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.final-cta-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--c-yellow);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 24px;
}

.final-cta-lead {
  max-width: 540px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.section-final-cta .btn-outline {
  border: 2px solid var(--c-cyan);
  color: var(--c-cyan);
}
.section-final-cta .btn-outline:hover {
  background: rgba(0, 191, 255, 0.12);
  color: var(--c-cyan);
}

/* Mobile tweaks for final-cta */
@media (max-width: 768px) {
  .section-final-cta { padding: 72px 0; }
  .final-cta-buttons { flex-direction: column; align-items: stretch; padding: 0 16px; }
  .final-cta-buttons .btn { width: 100%; text-align: center; }
}
