/* ═══════════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════════ */
:root {
  --c-primary:      #034d45;
  --c-primary-mid:  #0a8c7e;
  --c-primary-lt:   #0db5a2;
  --c-primary-pale: #e0f5f2;
  --c-navy:         #0d2561;
  --c-orange:       #e07d1a;
  --c-orange-dk:    #c0650e;
  --c-white:        #ffffff;
  --c-off:          #f4fcfa;
  --c-gray:         #637381;
  --c-gray-lt:      #e8f0ee;
  --c-text:         #1a2535;

  --font:   'Montserrat', sans-serif;
  --font-c: 'Dancing Script', cursive;

  --r:    16px;
  --r-sm:  8px;
  --r-xs:  6px;
  --r-pill: 999px;

  --sh-sm:  0 2px 12px rgba(0,0,0,.07);
  --sh:     0 8px 32px rgba(0,0,0,.12);
  --sh-lg:  0 20px 60px rgba(0,0,0,.18);
  --sh-xl:  0 32px 80px rgba(0,0,0,.24);

  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-out:  cubic-bezier(.0,0,.2,1);
  --ease-back: cubic-bezier(.34,1.56,.64,1);

  --nav-h: 86px;
}

/* ═══════════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; }
body   { font-family: var(--font); color: var(--c-text); background: var(--c-white); overflow-x: hidden; line-height: 1.6; }
img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul, ol { list-style: none; }

/* Focus visible */
:focus-visible { outline: 2px solid var(--c-orange); outline-offset: 3px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════════════════════ */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--c-orange), var(--c-primary-lt));
  transition: width .1s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR  (desktop only)
═══════════════════════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"] { cursor: none; }
}
.cursor__dot {
  position: fixed; z-index: 9998;
  width: 8px; height: 8px;
  background: var(--c-orange);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform .1s var(--ease), opacity .2s;
  will-change: transform;
}
.cursor__ring {
  position: fixed; z-index: 9997;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(10,140,126,.6);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform .18s var(--ease), width .25s var(--ease), height .25s var(--ease), opacity .2s, border-color .2s;
  will-change: transform;
}
.cursor__ring.is-hovering {
  width: 56px; height: 56px;
  border-color: var(--c-orange);
  background: rgba(224,125,26,.06);
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════════════════════ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 5.5rem 0; }

.eyebrow {
  display: inline-block;
  background: var(--c-primary-pale);
  color: var(--c-primary);
  font-size: .7rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: var(--r-pill);
  margin-bottom: .9rem;
}
.eyebrow--light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 900; color: var(--c-navy);
  line-height: 1.15; margin-bottom: .6rem;
}
.section-title--light { color: var(--c-white); }
.title-em { font-style: italic; color: var(--c-primary-mid); }

.section-sub { color: var(--c-gray); font-size: .9rem; }
.section-sub--light { color: rgba(255,255,255,.72); }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--r-pill);
  font-family: var(--font); font-weight: 800; font-size: .875rem;
  letter-spacing: .02em; white-space: nowrap;
  transition: transform .2s var(--ease-back), box-shadow .2s var(--ease), background .2s, opacity .2s;
  border: none; cursor: pointer; position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0; transition: opacity .2s;
}
.btn:hover::after  { opacity: 1; }
.btn:hover         { transform: translateY(-2px); }
.btn:active        { transform: translateY(0); }

.btn--primary {
  background: var(--c-orange); color: var(--c-white);
  box-shadow: 0 4px 20px rgba(224,125,26,.4);
}
.btn--primary:hover { box-shadow: 0 8px 28px rgba(224,125,26,.55); }

.btn--ghost {
  background: rgba(255,255,255,.1); color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); }

.btn--lg { padding: .9rem 2.2rem; font-size: .95rem; }

.btn--submit { width: 100%; justify-content: center; padding: 1rem; font-size: .95rem; }
.btn__spinner {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--c-white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn--loading .btn__text { display: none; }
.btn--loading .btn__icon { display: none; }
.btn--loading .btn__spinner { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  background: linear-gradient(180deg, rgba(2,58,51,.85) 0%, rgba(3,77,69,.6) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.nav.is-scrolled {
  background: rgba(2,54,47,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 4px 24px rgba(0,0,0,.25);
  border-bottom-color: rgba(255,255,255,.1);
}
.nav__inner {
  height: 100%; display: flex;
  align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav__brand  { display: flex; align-items: center; gap: 1rem; }
.nav__logo   { height: 68px; object-fit: contain; filter: drop-shadow(0 1px 4px rgba(0,0,0,.2)); }
.nav__logo--sp { height: 48px; opacity: .88; }
.nav__sep    { width: 1px; height: 52px; background: rgba(255,255,255,.2); }

.nav__links {
  display: flex; align-items: center; gap: .35rem;
}
.nav__link {
  color: rgba(255,255,255,.85);
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
  padding: .5rem .9rem; border-radius: var(--r-pill);
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--c-white); background: rgba(255,255,255,.12); }
.nav__link--cta {
  background: var(--c-orange); color: var(--c-white) !important;
  padding: .55rem 1.25rem;
  box-shadow: 0 2px 14px rgba(224,125,26,.45);
  margin-left: .5rem; font-size: .83rem;
}
.nav__link--cta:hover { background: var(--c-orange-dk) !important; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(224,125,26,.5); }

/* Portal alumno link */
.nav__link--portal {
  background: rgba(255,255,255,.12);
  color: var(--c-white) !important;
  padding: .4rem 1rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 99px;
  margin-left: .25rem;
  font-size: .8rem;
  display: inline-flex; align-items: center; gap: .4rem;
}
.nav__link--portal::before {
  content: '';
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
}
.nav__link--portal:hover { background: rgba(255,255,255,.2) !important; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--c-white); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  background: url('../img/bg-2.png') center / cover no-repeat;
}

/* overlay para profundidad y legibilidad del texto */
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,40,35,.55) 0%, rgba(3,60,50,.3) 60%, transparent 100%);
  pointer-events: none; z-index: 0;
}
/* textura extra sutil */
.hero__wm {
  position: absolute; inset: 0;
  background: url('../img/bg.png') center / cover no-repeat;
  opacity: .04;
  pointer-events: none; z-index: 0;
}

/* decorative orbs */
.hero__orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,181,162,.18) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orb-drift 8s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,125,26,.12) 0%, transparent 70%);
  bottom: -100px; left: 0;
  animation: orb-drift 10s ease-in-out infinite alternate-reverse;
}
.hero__orb--3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  top: 40%; left: 40%;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 7fr 5fr;
  gap: 2rem; align-items: center;
}


.hero__edition {
  display: flex; align-items: baseline; gap: .5rem;
  color: rgba(255,255,255,.7);
  font-size: .8rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.hero__edition-num {
  font-size: 1.1rem; font-weight: 900; color: var(--c-white); letter-spacing: 0;
}

.hero__desc {
  font-size: .95rem; color: rgba(255,255,255,.82);
  line-height: 1.8; max-width: 480px; margin-bottom: 1.75rem;
}

.hero__tags {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem;
}
.tag {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: .3rem .85rem; border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* visual / logo graphic */
.hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero__visual-halo {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  animation: halo-pulse 4s ease-in-out infinite;
}
.hero__visual-halo        { width: 85%;  height: 85%;  }
.hero__visual-halo--2     { width: 110%; height: 110%; animation-delay: .8s; border-color: rgba(255,255,255,.05); }

@keyframes halo-pulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.04); opacity: .6; }
}

.hero__logo-curso {
  width: clamp(320px, 52vw, 660px);
  filter: drop-shadow(0 24px 70px rgba(0,0,0,.5));
  animation: float 5s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* scroll cue */
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center;
  animation: fade-down 2s ease infinite;
}
.hero__scroll span {
  display: block; width: 1.5px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5));
}
@keyframes fade-down {
  0%   { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════
   STRIP
═══════════════════════════════════════════════════════════ */
.strip {
  background: #0a4a40;
  padding: 1.6rem 0;
  position: relative;
}
.strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-orange), var(--c-primary-lt), var(--c-orange), transparent);
}
.strip__grid {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center; align-items: stretch;
}
.strip__item {
  display: flex; align-items: center; gap: .9rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-sm);
  padding: 1rem 1.3rem;
  flex: 1; min-width: 170px; max-width: 210px;
  transition: background .25s var(--ease), transform .2s var(--ease-back), border-color .25s;
}
.strip__item:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}
.strip__item--accent {
  max-width: 260px;
  background: rgba(224,125,26,.28);
  border-color: rgba(224,125,26,.65);
}
.strip__item--accent:hover { background: rgba(224,125,26,.4); border-color: rgba(224,125,26,.85); }
.strip__icon {
  width: 46px; height: 46px; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.strip__label {
  font-size: .62rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .09em;
  color: rgba(255,255,255,.75);
  margin-bottom: .25rem;
}
.strip__value { font-size: .95rem; font-weight: 900; color: #ffffff; line-height: 1.2; }

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about { background: var(--c-off); }
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: center;
}
.about__text h2    { text-align: left; }
.about__text p     { color: var(--c-gray); line-height: 1.85; margin-bottom: .9rem; font-size: .93rem; }
.about__text strong { color: var(--c-text); }

.about__highlights { display: flex; flex-direction: column; gap: .6rem; margin: 1.5rem 0; }
.highlight {
  display: flex; align-items: center; gap: .75rem;
  font-size: .88rem; font-weight: 600; color: var(--c-text);
}
.highlight__icon {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--c-primary-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary-mid);
}

.about__organizers {
  display: flex; flex-wrap: wrap; align-items: center; gap: 2rem;
  margin-top: 2rem; padding-top: 1.75rem;
  border-top: 2px solid var(--c-gray-lt);
}
.about__organizers img {
  height: 60px; object-fit: contain;
  opacity: 1;
  transition: transform .2s var(--ease);
}
.about__organizers img:first-child { height: 90px; }
.about__organizers img:hover { transform: scale(1.06); }

/* visual card */
.about__visual { position: relative; }
.about__card {
  position: relative; border-radius: var(--r);
  overflow: hidden; box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
  background: var(--c-primary);
}
.about__card-wm {
  position: absolute; inset: 0; z-index: 1;
  background: url('../img/bg-colmed.png') center / 70% no-repeat;
  opacity: .12;
}
.about__card-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: 1;
  transition: transform .5s var(--ease);
}
.about__card:hover .about__card-img { transform: scale(1.04); }
.about__card-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to top,
    rgba(3,40,35,.85) 0%,
    rgba(3,77,69,.3) 50%,
    transparent 100%
  );
}
.about__card-badge {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 3;
  background: var(--c-orange); color: var(--c-white);
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: 0 4px 20px rgba(224,125,26,.5);
}
.about__card-badge strong { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.about__card-badge span   { font-size: .62rem; font-weight: 700; opacity: .9; }
.about__card-info {
  position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 3;
}
.about__card-tag {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: .2rem;
}
.about__card-sub {
  font-size: 1.1rem; font-weight: 900; color: var(--c-white);
}

/* ═══════════════════════════════════════════════════════════
   SCHEDULE — POSTER / EDITORIAL CARDS
═══════════════════════════════════════════════════════════ */
.schedule { background: var(--c-white); }
.schedule__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.scard {
  position: relative; border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--sh);
  cursor: pointer;
}
.scard__media { position: absolute; inset: 0; }
.scard__photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .6s var(--ease);
}
.scard:hover .scard__photo { transform: scale(1.07); }

/* gradient overlay — always visible bottom, reveals more on hover */
.scard__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(3,40,35,.96) 0%,
    rgba(3,60,50,.65) 40%,
    rgba(3,77,69,.2) 65%,
    transparent 100%
  );
  transition: background .4s var(--ease);
}
.scard:hover .scard__overlay {
  background: linear-gradient(
    to top,
    rgba(3,40,35,.98) 0%,
    rgba(3,60,50,.82) 50%,
    rgba(3,77,69,.45) 75%,
    transparent 100%
  );
}

/* date badge */
.scard__date-badge {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  background: var(--c-orange);
  color: var(--c-white);
  border-radius: var(--r-xs);
  padding: .3rem .55rem;
  text-align: center; line-height: 1;
  box-shadow: 0 2px 10px rgba(224,125,26,.5);
}
.scard__day   { display: block; font-size: 1.3rem; font-weight: 900; }
.scard__month { display: block; font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; opacity: .9; }

/* info panel — slides up on hover */
.scard__info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 1rem 1rem 1.2rem;
  transform: translateY(0);
}
.scard__topic {
  font-size: .78rem; font-weight: 700; font-style: italic;
  color: rgba(255,255,255,.9); line-height: 1.35; margin-bottom: .5rem;
}
.scard__name  {
  font-size: .85rem; font-weight: 900; color: var(--c-white); line-height: 1.2;
}
.scard__role  {
  font-size: .68rem; color: rgba(255,255,255,.55);
  line-height: 1.4; margin-top: .3rem;
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), opacity .35s var(--ease), color .3s var(--ease);
  opacity: 0;
}
.scard:hover .scard__role { max-height: 60px; opacity: 1; color: rgba(255,255,255,.8); }

/* time chip */
.scard__info::after {
  content: '18:00 – 20:00 hrs.';
  display: block;
  margin-top: .5rem;
  font-size: .65rem; font-weight: 700;
  color: var(--c-primary-lt);
  letter-spacing: .04em;
  opacity: 0; transition: opacity .3s var(--ease);
}
.scard:hover .scard__info::after { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
.pricing {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #023d37 0%, #034d45 50%, #066b5e 100%);
}
.pricing__bg {
  position: absolute; inset: 0;
  background: url('../img/bg.png') center / cover no-repeat;
  opacity: .05; pointer-events: none;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; position: relative;
  align-items: end;
}

.pcard {
  border-radius: var(--r);
  padding: 2rem 1.75rem 1.75rem;
  text-align: center; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease-back), box-shadow .3s var(--ease);
}

/* cards secundarias — glass oscuro */
.pcard:not(.pcard--featured) {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}
.pcard:not(.pcard--featured):hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.1);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

/* card destacada — blanca, sube más */
.pcard--featured {
  background: var(--c-white);
  border: none;
  box-shadow: var(--sh-xl);
  transform: translateY(-10px);
  padding-top: 2.5rem;
}
.pcard--featured:hover { transform: translateY(-16px); box-shadow: 0 32px 80px rgba(0,0,0,.3); }

/* stripe naranja superior */
.pcard__stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--c-orange), #f5a623);
  border-radius: var(--r) var(--r) 0 0;
}

.pcard__glow { display: none; }

.pcard__tag {
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  background: var(--c-orange); color: var(--c-white);
  font-size: .6rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: .25rem 1rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  white-space: nowrap;
}

/* icono PNG */
.pcard__ico-img {
  width: 56px; height: 56px; object-fit: contain;
  margin: 0 auto 1.25rem; display: block;
  transition: transform .3s var(--ease-back);
}
.pcard:not(.pcard--featured) .pcard__ico-img {
  filter: brightness(0) invert(1); opacity: .8;
}
.pcard--featured .pcard__ico-img { filter: none; opacity: 1; }
.pcard:hover .pcard__ico-img { transform: scale(1.1) translateY(-2px); }

/* textos */
.pcard__title {
  font-size: .9rem; font-weight: 800; margin-bottom: .75rem;
  color: rgba(255,255,255,.88); line-height: 1.35;
}
.pcard--featured .pcard__title { color: var(--c-navy); }

.pcard__price {
  font-size: 2.8rem; font-weight: 900; line-height: 1;
  margin-bottom: .85rem; letter-spacing: -.03em;
  color: var(--c-white);
}
.pcard--featured .pcard__price { color: var(--c-primary); font-size: 3.2rem; }

.pcard__note {
  font-size: .78rem; line-height: 1.7;
  color: rgba(255,255,255,.58); margin-bottom: 1.75rem; flex: 1;
}
.pcard--featured .pcard__note { color: var(--c-gray); }

/* botones */
.pcard__btn {
  display: inline-block; width: 100%;
  font-family: var(--font); font-size: .82rem; font-weight: 800;
  padding: .65rem 1.5rem; border-radius: var(--r-pill);
  transition: background .2s, transform .2s var(--ease-back), box-shadow .2s;
}
.pcard__btn:hover { transform: scale(1.03); }

.pcard--featured .pcard__btn {
  background: var(--c-orange); color: var(--c-white);
  box-shadow: 0 4px 16px rgba(224,125,26,.4);
}
.pcard--featured .pcard__btn:hover { background: var(--c-orange-dk); box-shadow: 0 6px 20px rgba(224,125,26,.55); }

.pcard__btn--outline {
  background: transparent; color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.pcard__btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* título 2026 */
.title-year {
  color: var(--c-orange);
  font-style: italic;
}

.pricing__note {
  position: relative;
  margin-top: 1.75rem;
  display: flex; align-items: flex-start; gap: .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  font-size: .85rem; color: rgba(255,255,255,.8);
}
.pricing__note svg { min-width: 18px; margin-top: 2px; color: rgba(255,255,255,.5); }
.pricing__note a   { color: #7de8df; font-weight: 700; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--c-navy);
  padding: 3rem 0;
}
.cta-band__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.cta-band__title { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 900; color: var(--c-white); }
.cta-band__sub   { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

/* ═══════════════════════════════════════════════════════════
   FORM
═══════════════════════════════════════════════════════════ */
.form-section { background: var(--c-off); }

.form-card {
  max-width: 680px; margin: 0 auto;
  background: var(--c-white);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.form-card__header {
  background: linear-gradient(120deg, var(--c-primary) 0%, var(--c-primary-mid) 100%);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1rem;
  color: var(--c-white);
  position: relative; overflow: hidden;
}
.form-card__header::after {
  content: ''; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  bottom: -80px; right: -40px; pointer-events: none;
}
.form-card__logo { height: 52px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); }
.form-card__header strong { display: block; font-size: .95rem; font-weight: 900; }
.form-card__header span   { display: block; font-size: .78rem; opacity: .78; margin-top: .15rem; }

.form { padding: 2rem; }

/* floating label fields */
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field {
  position: relative;
  margin-bottom: 1rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--c-gray-lt);
  border-radius: var(--r-sm);
  padding: 1.5rem 1rem .5rem;
  font-size: .9rem; font-family: var(--font);
  color: var(--c-text); background: var(--c-white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-appearance: none; appearance: none;
  line-height: 1.4;
}
.field select { cursor: pointer; }
.field textarea { padding-top: 1.6rem; resize: vertical; min-height: 90px; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-primary-mid);
  box-shadow: 0 0 0 3px rgba(10,140,126,.14);
}

/* Floating label */
.field label {
  position: absolute; left: 1rem;
  top: 50%; transform: translateY(-50%);
  font-size: .88rem; font-weight: 600;
  color: var(--c-gray);
  pointer-events: none;
  transition: top .18s var(--ease), transform .18s var(--ease), font-size .18s var(--ease), color .18s var(--ease);
}
.field--textarea label { top: 1.6rem; transform: none; }
.field--select label   { top: 50%; transform: translateY(-50%); }

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: .6rem; transform: none;
  font-size: .68rem; font-weight: 800;
  color: var(--c-primary-mid);
}
.field--textarea input:focus + label,
.field--textarea textarea:focus + label,
.field--textarea textarea:not(:placeholder-shown) + label {
  top: .6rem;
}
.field select:focus + label,
.field select:valid + label,
.field.has-value select + label {
  top: .6rem; transform: none;
  font-size: .68rem; font-weight: 800;
  color: var(--c-primary-mid);
}
.field label span { color: #e53e3e; }

/* Ayuda visual bajo el campo */
.field__hint {
  display: block;
  font-size: .72rem;
  color: var(--c-gray);
  margin-top: .3rem;
  padding-left: .1rem;
  line-height: 1.4;
}
.field__hint svg { opacity: .7; }

/* select arrow */
.field--select { position: relative; }
.field__arrow {
  position: absolute; right: .9rem; top: 50%; transform: translateY(-50%);
  color: var(--c-gray); pointer-events: none;
}

#form-status {
  border-radius: var(--r-sm); font-size: .85rem; font-weight: 700;
  padding: .85rem 1rem; margin-bottom: 1rem;
  display: none;
}
#form-status.ok  { background: #d1fae5; color: #065f46; display: block; }
#form-status.err { background: #fee2e2; color: #991b1b; display: block; }

/* honeypot — completamente oculto para humanos */
.hp-field {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden;
  opacity: 0; pointer-events: none;
}

.form__privacy {
  display: flex; align-items: center; gap: .4rem;
  font-size: .72rem; color: var(--c-gray);
  text-align: center; justify-content: center;
  margin-top: .75rem;
}
.form__privacy svg { min-width: 13px; color: var(--c-primary-mid); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { background: var(--c-primary); }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem; padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo-colmed { height: 52px; margin-bottom: .5rem; display: block; }
.footer__logo-sp     { height: 36px; margin-bottom: .85rem; display: block; opacity: .7; }
.footer__brand p   { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.75; }
.footer__heading   { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer__link {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.72);
  margin-bottom: .6rem; transition: color .2s;
  line-height: 1.4;
}
.footer__link:hover { color: var(--c-white); }
.footer__link svg   { min-width: 15px; margin-top: 2px; }
.footer__co {
  display: flex; flex-direction: column; justify-content: center; gap: 1.25rem;
}
.footer__co-label {
  font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.footer__co-logos {
  display: flex; flex-direction: column; gap: 1rem;
}
.footer__co-logo-wrap {
  display: inline-flex; align-items: center;
}
.footer__uv-logo {
  height: 44px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: .75; transition: opacity .25s;
}
.footer__uv-logo:hover { opacity: 1; }
.footer__co-text { font-size: .75rem; color: rgba(255,255,255,.55); line-height: 1.4; font-weight: 600; margin-top: .35rem; }
.footer__bottom {
  padding: 1.25rem 0;
  text-align: center; font-size: .75rem; color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
═══════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
[data-reveal="up"]    { transform: translateY(36px); }
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .schedule__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .pricing__grid  { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pcard--featured { transform: none; }
  .pcard--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 900px) {
  .hero__inner   { grid-template-columns: 1fr; }
  .hero__visual  { order: -1; }
  .hero__logo-curso { width: clamp(260px, 72vw, 420px); }
  .hero__actions { justify-content: center; }
  .hero__desc    { text-align: center; margin-left: auto; margin-right: auto; }
  .hero__tags    { justify-content: center; }
  .hero__content { text-align: center; }
  .hero__edition { justify-content: center; }
  .about__grid   { grid-template-columns: 1fr; }
  .about__visual { display: none; }
  .about__text h2, .about__text .eyebrow { text-align: center; display: block; }
  .about__highlights { align-items: flex-start; }
  .about__organizers { justify-content: center; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 3.5rem 0; }

  /* nav mobile */
  .nav__links {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(3,55,48,.98); backdrop-filter: blur(16px);
    padding: 1rem 1.5rem 1.5rem; gap: .25rem; z-index: 99;
  }
  .nav__links.is-open { display: flex; }
  .nav__link { padding: .65rem .75rem; }
  .nav__link--cta    { text-align: center; margin: .25rem 0 0; }
  .nav__link--portal { text-align: center; margin: .25rem 0 0; justify-content: center; }
  .nav__inner  { position: relative; }
  .nav__burger { display: flex; }

  /* nav logos on mobile */
  .nav__logo      { height: 52px; }
  .nav__logo--sp  { height: 36px; }
  .nav__sep       { height: 34px; }
  /* ocultar sep + logo SP en pantallas muy pequeñas */
  @media (max-width: 400px) {
    .nav__logo--sp { display: none; }
    .nav__sep      { display: none; }
    .nav__logo     { height: 48px; }
  }

  .strip__item      { min-width: 42%; max-width: none; flex: 1 1 42%; }
  .strip__item--accent { flex: 1 1 100%; max-width: none; }

  .schedule__grid   { grid-template-columns: repeat(2, 1fr); }
  .scard            { aspect-ratio: 2 / 3; }

  .form__row        { grid-template-columns: 1fr; }
  .form             { padding: 1.5rem 1.25rem; }
  .form-card__header { padding: 1.25rem; }

  .cta-band__inner  { flex-direction: column; text-align: center; align-items: center; }

  .footer__inner    { grid-template-columns: 1fr; gap: 2rem; }

  .cursor__dot, .cursor__ring { display: none; }
}

@media (max-width: 420px) {
  .schedule__grid { grid-template-columns: 1fr; }
  .scard          { aspect-ratio: 3 / 2; }
  .scard__role    { max-height: none !important; opacity: 1 !important; }
  .scard__info::after { opacity: 1 !important; }
}
