/* ============================================
   SCHOLARSHIP MODELING — STYLES
   Editorial premium · navy + gold · serif display
============================================ */

:root {
  --navy: #0B132B;
  --navy-2: #1A2342;
  --navy-3: #2A3457;
  --gold: #C9A227;
  --gold-soft: #D9B84A;
  --gold-pale: #F5EAC4;
  --cream: #F8F7F3;
  --cream-2: #EFEDE5;
  --gray: #6B7280;
  --gray-light: #B4B7BF;
  --black-soft: #111827;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max: 1240px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 2px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--black-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  padding-bottom: 0.8rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 1px;
  background: var(--gold);
}
.eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  max-width: 880px;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}

.section-lede {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 720px;
  margin-bottom: 3rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(11, 19, 43, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn--lg {
  padding: 1.2rem 2.4rem;
  font-size: 0.85rem;
}

/* ============================================
   NAV
============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 247, 243, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 19, 43, 0.06);
  transition: all 0.3s var(--ease);
}
.nav--scrolled {
  background: rgba(11, 19, 43, 0.95);
  border-bottom-color: rgba(201, 162, 39, 0.2);
}
.nav--scrolled .nav__brand-name,
.nav--scrolled .nav__links a { color: var(--cream); }
.nav--scrolled .nav__brand-mark { background: var(--gold); color: var(--navy); }
.nav--scrolled .nav__burger span { background: var(--cream); }

.nav__wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.nav__brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease);
}
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav__links {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--navy);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  padding: 0.7rem 1.4rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--navy);
  color: var(--gold);
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s var(--ease);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1.5rem var(--pad);
  background: var(--navy);
  gap: 1.2rem;
}
.nav__mobile a {
  color: var(--cream);
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile-cta {
  background: var(--gold);
  color: var(--navy) !important;
  text-align: center;
  padding: 1rem !important;
  border: none !important;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem !important;
}
.nav__mobile.is-open { display: flex; }

@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================
   HERO
============================================ */
.hero {
  padding: clamp(7rem, 14vh, 11rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(201, 162, 39, 0.06), transparent 60%);
  pointer-events: none;
}

.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 2rem;
}
.hero__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.hero__lede {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 540px;
}
.hero__lede strong {
  color: var(--navy);
  font-weight: 600;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.hero__fineprint {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.hero__visual {
  position: relative;
  display: block;
  min-height: 560px;
}
.hero__img-frame {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(11, 19, 43, 0.35);
}
.hero__img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero__img-frame:hover img { transform: scale(1.04); }
.hero__img-frame--main {
  top: 0; right: 0;
  width: 78%;
  aspect-ratio: 3/4;
  max-height: 540px;
  z-index: 2;
}
.hero__img-frame--small {
  bottom: 0; left: 0;
  width: 48%;
  aspect-ratio: 3/4;
  max-height: 320px;
  border: 8px solid var(--cream);
  z-index: 3;
}
.hero__decor {
  position: absolute;
  top: 8%; left: 4%;
  width: 35%; height: 35%;
  border: 1px solid var(--gold);
  z-index: 1;
  opacity: 0.5;
}
.hero__img-tag {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: rgba(11, 19, 43, 0.88);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  backdrop-filter: blur(8px);
  z-index: 4;
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 440px; max-width: 480px; margin: 0 auto; }
  .hero__decor { display: none; }
}

/* ---------- Credentials strip ---------- */
.creds {
  max-width: var(--max);
  margin: 5rem auto 0;
  padding: 2.5rem var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(11, 19, 43, 0.1);
  border-bottom: 1px solid rgba(11, 19, 43, 0.1);
}
.creds__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}
.creds__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.creds__lbl {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
@media (max-width: 720px) {
  .creds { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ============================================
   SECCIONES GENERALES
============================================ */
section { padding: clamp(4rem, 9vh, 7rem) 0; }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 2rem;
}
.about__text p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 1.4rem;
}
.about__text p strong {
  color: var(--navy);
  font-weight: 600;
}
.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.card {
  padding: 1.8rem 1.4rem;
  background: var(--white);
  border: 1px solid rgba(11, 19, 43, 0.08);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -20px rgba(11, 19, 43, 0.2);
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
}
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .about__cards { grid-template-columns: 1fr; }
}

/* ---------- What we do ---------- */
.what { background: var(--cream-2); }
.what__head { margin-bottom: 3rem; }
.what__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: 4rem;
}
.what__img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.what__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.what__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  transform: translate(15px, 15px);
  pointer-events: none;
}
.what__text p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.3rem;
}
.what__text p strong { color: var(--navy); font-weight: 600; }

.what__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(11, 19, 43, 0.1);
}
.list-block__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.list-block__items {
  list-style: none;
}
.list-block__items li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(11, 19, 43, 0.08);
  color: var(--navy);
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.list-block__items li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .what__grid { grid-template-columns: 1fr; }
  .what__lists { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Scholarships ---------- */
.scholarships .tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tier {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid rgba(11, 19, 43, 0.1);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.4s var(--ease);
}
.tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -25px rgba(11, 19, 43, 0.3);
}
.tier--signature {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.tier__badge {
  position: absolute;
  top: -12px; left: 2rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
}
.tier__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.tier--signature .tier__name { color: var(--cream); }
.tier__name em { color: var(--gold); font-style: italic; }
.tier__pct {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0.5rem 0 1rem;
  line-height: 1;
}
.tier__desc {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.tier--signature .tier__desc { color: rgba(248, 247, 243, 0.7); }
.tier__feats {
  list-style: none;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(11, 19, 43, 0.08);
}
.tier--signature .tier__feats { border-color: rgba(248, 247, 243, 0.12); }
.tier__feats li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--navy);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.tier--signature .tier__feats li { color: var(--cream); }
.tier__feats li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.disclaimer {
  font-size: 0.88rem;
  color: var(--gray);
  padding: 1.2rem 1.4rem;
  background: var(--cream-2);
  border-left: 2px solid var(--gold);
  max-width: 880px;
}
.disclaimer strong { color: var(--navy); }

@media (max-width: 880px) {
  .scholarships .tiers { grid-template-columns: 1fr; }
}

/* ---------- Universidades ---------- */
.unis { background: var(--navy); color: var(--cream); }
.unis .eyebrow { color: var(--gold-soft); }
.unis .eyebrow::after { background: var(--gold); }
.unis .section-title { color: var(--cream); }
.unis .section-title em { color: var(--gold); }
.unis .section-lede { color: rgba(248, 247, 243, 0.75); }

.unis__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(248, 247, 243, 0.1);
  border-left: 1px solid rgba(248, 247, 243, 0.1);
}
.unis__list li {
  padding: 1.8rem 1.5rem;
  border-right: 1px solid rgba(248, 247, 243, 0.1);
  border-bottom: 1px solid rgba(248, 247, 243, 0.1);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  cursor: default;
}
.unis__list li:hover {
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold);
}
.unis__note {
  padding: 2.5rem;
  background: rgba(248, 247, 243, 0.04);
  border-left: 3px solid var(--gold);
  max-width: 880px;
}
.unis__note h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.unis__note p {
  color: rgba(248, 247, 243, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 720px) {
  .unis__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .unis__list { grid-template-columns: 1fr; }
}

/* ---------- Audience ---------- */
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.audience__visual {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.audience__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--navy);
  transform: translate(-15px, -15px);
  z-index: -1;
}
.audience__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.audience__copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.3rem;
}
.audience__copy p strong { color: var(--navy); font-weight: 600; }
.audience__list {
  list-style: none;
  margin: 1.8rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}
.audience__list li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--navy);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.audience__list li::before {
  content: '·';
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 0.4;
  flex-shrink: 0;
}
.audience__age {
  padding: 1.3rem 1.5rem;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.6;
}
.audience__age strong { color: var(--navy); font-weight: 700; }

@media (max-width: 880px) {
  .audience__grid { grid-template-columns: 1fr; }
  .audience__list { grid-template-columns: 1fr; }
}

/* ---------- Requisitos ---------- */
.reqs { background: var(--cream-2); }
.reqs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.reqs__col h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(11, 19, 43, 0.15);
}
.reqs__list {
  list-style: none;
  counter-reset: req;
}
.reqs__list li {
  padding: 0.9rem 0 0.9rem 2.4rem;
  border-bottom: 1px solid rgba(11, 19, 43, 0.07);
  font-size: 0.97rem;
  color: var(--navy);
  line-height: 1.6;
  position: relative;
  counter-increment: req;
}
.reqs__list:not(.reqs__list--bullets) li::before {
  content: counter(req, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0.9rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
}
.reqs__list--bullets li {
  padding-left: 1.6rem;
}
.reqs__list--bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.3rem;
  width: 12px; height: 1px;
  background: var(--gold);
}
@media (max-width: 880px) {
  .reqs__grid { grid-template-columns: 1fr; }
}

/* ---------- Proceso ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.step {
  padding: 2rem 1.6rem;
  background: var(--white);
  border: 1px solid rgba(11, 19, 43, 0.08);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.4s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -20px rgba(11, 19, 43, 0.2);
}
.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ---------- Activities ---------- */
.activities { background: var(--cream-2); }
.activities__head { margin-bottom: 3rem; }
.activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(11, 19, 43, 0.1);
  border-left: 1px solid rgba(11, 19, 43, 0.1);
  margin-bottom: 2.5rem;
}
.act-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(11, 19, 43, 0.1);
  border-bottom: 1px solid rgba(11, 19, 43, 0.1);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.3s var(--ease);
  cursor: default;
}
.act-item:hover {
  background: var(--navy);
  color: var(--gold);
}
.activities__note {
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 1000px;
}
.activities__note strong { color: var(--navy); }
@media (max-width: 720px) {
  .activities__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .activities__grid { grid-template-columns: 1fr; }
}

/* ---------- Security ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.principle {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--gold);
  background: var(--white);
}
.principle h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.principle p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.65;
}
.legal-blurb {
  padding: 1.5rem 1.8rem;
  background: var(--cream-2);
  border-left: 3px solid var(--navy);
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 1000px;
}
@media (max-width: 880px) {
  .principles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .principles { grid-template-columns: 1fr; }
}

/* ---------- Benefits ---------- */
.benefits { background: var(--navy); color: var(--cream); }
.benefits .eyebrow { color: var(--gold-soft); }
.benefits .eyebrow::after { background: var(--gold); }
.benefits .section-title { color: var(--cream); }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(248, 247, 243, 0.12);
}
.benefit {
  padding: 2.2rem 1.6rem;
  border-bottom: 1px solid rgba(248, 247, 243, 0.12);
  border-right: 1px solid rgba(248, 247, 243, 0.12);
}
.benefit:last-child { border-right: none; }
.benefit__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.benefit h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.7rem;
}
.benefit p {
  font-size: 0.92rem;
  color: rgba(248, 247, 243, 0.7);
  line-height: 1.7;
}

/* ---------- Slots ---------- */
.slots {
  background: var(--cream);
  padding: clamp(5rem, 12vh, 8rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.slots::before {
  content: '20';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(20rem, 50vw, 38rem);
  font-weight: 500;
  color: rgba(201, 162, 39, 0.04);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.slots__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.slots__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.05;
  margin: 0.5rem 0 1.5rem;
}
.slots__title em { color: var(--gold); font-style: italic; }
.slots__lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.slots__highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 2.5rem;
}

/* ---------- FAQ ---------- */
.faq { background: var(--cream-2); }
.faq__list {
  max-width: 880px;
  margin: 2rem auto 0;
}
.faq__item {
  border-bottom: 1px solid rgba(11, 19, 43, 0.12);
  padding: 1.4rem 0;
}
.faq__item summary {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 0.5rem;
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item[open] summary { color: var(--gold); }
.faq__item p {
  margin-top: 1rem;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 720px;
}

/* ---------- Apply / Form ---------- */
.apply { background: var(--cream); }
.form {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(11, 19, 43, 0.08);
  border-top: 4px solid var(--gold);
}
.form__section {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(11, 19, 43, 0.08);
}
.form__section:last-of-type { border-bottom: none; }
.form__section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.4rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--gray);
  font-weight: 500;
}
.form__full { margin-bottom: 1rem; }
.form input,
.form select,
.form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(11, 19, 43, 0.15);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--navy);
  transition: all 0.25s var(--ease);
  width: 100%;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}
.form textarea {
  resize: vertical;
  min-height: 90px;
  font-family: var(--font-body);
}

.check {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 0.7rem !important;
  font-size: 0.92rem !important;
  color: var(--navy) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  padding: 0.5rem 0;
  cursor: pointer;
  line-height: 1.5;
}
.check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.check a { color: var(--gold); text-decoration: underline; }
.form__legal { background: var(--cream); margin: 2rem -1.5rem -1.5rem; padding: 1.8rem 1.5rem !important; border-bottom: none; }
.form__submit { width: 100%; margin-top: 1.5rem; }
.form__note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
}
@media (max-width: 720px) {
  .form__row { grid-template-columns: 1fr; }
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream-2); }
.testimonials .section-lede { margin-bottom: 3rem; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  position: relative;
  background: var(--white);
  padding: 2.5rem 2rem 2rem;
  border: 1px solid rgba(11, 19, 43, 0.08);
  border-top: 3px solid var(--gold);
  transition: all 0.4s var(--ease);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -25px rgba(11, 19, 43, 0.25);
}
.testimonial__quote {
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
}
.testimonial__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--navy);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial__meta {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(11, 19, 43, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.testimonial__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.testimonial__detail {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
@media (max-width: 880px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ---------- Contact (rebuilt) ---------- */
.contact { background: var(--navy); color: var(--cream); }
.contact .eyebrow { color: var(--gold-soft); }
.contact .eyebrow::after { background: var(--gold); }
.contact .section-title { color: var(--cream); margin-bottom: 1rem; }
.contact__head { max-width: 720px; margin-bottom: 3rem; }
.contact__lede {
  font-size: 1.02rem;
  color: rgba(248, 247, 243, 0.75);
  line-height: 1.7;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.contact__card {
  padding: 2rem 1.8rem;
  background: rgba(248, 247, 243, 0.04);
  border: 1px solid rgba(248, 247, 243, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s var(--ease);
}
.contact__card:hover {
  border-color: var(--gold);
  background: rgba(248, 247, 243, 0.06);
}
.contact__card--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.contact__card--primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}
.contact__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}
.contact__card--primary .contact__label { color: var(--navy); opacity: 0.7; }
.contact__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  word-break: break-word;
  letter-spacing: -0.005em;
  border-bottom: 1px dotted var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
}
.contact__card--primary .contact__value {
  color: var(--navy);
  border-color: var(--navy);
}
.contact__note {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(248, 247, 243, 0.7);
  margin-top: auto;
}
.contact__card--primary .contact__note { color: var(--navy); opacity: 0.85; }
.contact__card--primary .btn--gold {
  background: var(--navy);
  color: var(--gold);
  align-self: flex-start;
  margin-top: 0.5rem;
}
.contact__card--primary .btn--gold:hover {
  background: var(--black-soft);
  color: var(--gold-soft);
}
.contact__address {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--cream);
}
.contact__address strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact__address-extra {
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(248, 247, 243, 0.12);
  font-size: 0.88rem;
  color: rgba(248, 247, 243, 0.7);
}
.contact__address-extra span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.3rem;
}
.contact__hours {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact__hours div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(248, 247, 243, 0.08);
  font-size: 0.92rem;
  color: var(--cream);
}
.contact__hours span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

@media (max-width: 980px) {
  .contact__grid { grid-template-columns: 1fr 1fr; }
  .contact__card--primary { grid-column: span 2; }
}
@media (max-width: 640px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card--primary { grid-column: auto; }
}

/* ---------- Footer (rebuilt) ---------- */
.footer {
  background: var(--black-soft);
  color: var(--cream);
  padding: 4.5rem 0 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(248, 247, 243, 0.12);
  margin-bottom: 2rem;
  align-items: start;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__mark {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}
.footer__brand p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.footer__tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 0.3rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__col-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.footer__addr {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(248, 247, 243, 0.78);
}
.footer__email {
  font-size: 0.88rem;
  color: var(--gold-soft);
  word-break: break-word;
  border-bottom: 1px dotted rgba(201, 162, 39, 0.4);
  padding-bottom: 2px;
  align-self: flex-start;
  margin-top: 0.5rem;
  transition: color 0.3s var(--ease);
}
.footer__email:hover { color: var(--gold); }
.footer__nav,
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__nav a,
.footer__legal a {
  font-size: 0.9rem;
  color: rgba(248, 247, 243, 0.7);
  transition: color 0.3s var(--ease);
}
.footer__nav a:hover,
.footer__legal a:hover { color: var(--gold); }
.footer__disclaimer {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(248, 247, 243, 0.5);
  max-width: 1000px;
  margin-bottom: 1.5rem;
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(248, 247, 243, 0.4);
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ---------- Floating email button ---------- */
.float-mail {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  background: var(--navy);
  color: var(--gold);
  border-radius: 999px;
  box-shadow: 0 14px 35px -10px rgba(11, 19, 43, 0.55);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--gold);
}
.float-mail:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.float-mail svg {
  width: 18px; height: 18px;
  fill: currentColor;
}
.float-mail__label { display: inline; }
@media (max-width: 640px) {
  .float-mail {
    padding: 0.85rem 0.95rem;
    bottom: 1.1rem;
    right: 1.1rem;
  }
  .float-mail__label { display: none; }
}

/* ============================================
   LEGAL PAGES
============================================ */
.legal-hero {
  padding: 9rem 0 3rem;
  background: var(--navy);
  color: var(--cream);
}
.legal-hero .eyebrow { color: var(--gold-soft); }
.legal-hero .eyebrow::after { background: var(--gold); }
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.legal-hero p {
  color: rgba(248, 247, 243, 0.7);
  font-size: 1.02rem;
  max-width: 720px;
}
.legal-body {
  padding: 4rem 0 6rem;
  background: var(--cream);
}
.legal-body .container {
  max-width: 880px;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(11, 19, 43, 0.12);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin: 1.8rem 0 0.8rem;
}
.legal-body p,
.legal-body li {
  font-size: 0.98rem;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-body ul,
.legal-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.legal-body li { margin-bottom: 0.4rem; }
.legal-body strong { color: var(--navy); font-weight: 600; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  transition: color 0.3s var(--ease);
}
.legal-back:hover { color: var(--navy); }

/* ============================================
   REVEAL ANIMATION
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ACCESSIBILITY
============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

::selection { background: var(--gold); color: var(--navy); }

/* ---------- Convocatoria / Lead-gen Ciclo 2026 ---------- */
.convocatoria {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(4.5rem, 11vh, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.convocatoria::before {
  content: '2026';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 36vw, 26rem);
  font-weight: 500;
  color: rgba(201, 162, 39, 0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.convocatoria__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 940px;
}
.convocatoria__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin: 0.6rem 0 1.2rem;
}
.convocatoria__title em { color: var(--gold-soft); font-style: italic; }
.convocatoria__lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-light);
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.convocatoria__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  text-align: left;
}
.conv-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 184, 74, 0.18);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}
.conv-item__icon { font-size: 1.6rem; display: block; margin-bottom: 0.6rem; }
.conv-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.4rem;
}
.conv-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-light);
  margin: 0;
}
.convocatoria__note {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-top: 1.4rem;
}
.convocatoria__note strong { color: var(--gold-soft); }
@media (max-width: 760px) {
  .convocatoria__items { grid-template-columns: 1fr; }
}
