:root {
  --primary: #17324D;
  --primary-dark: #0D1B2D;
  --secondary: #9B111E;
  --secondary-dark: #650910;
  --accent: #C59A3D;
  --success: #4F684A;
  --purple: #59637E;
  --bg-soft: #F2F5F8;
  --bg-warm: #FBF6EA;
  --white: #FFFFFF;
  --text: #1F2933;
  --muted: #667085;
  --border: #E5E7EB;
  --shadow: 0 24px 70px rgba(31, 41, 51, .10);
  --radius: 24px;
  --font-body: Raleway, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: Raleway, Inter, system-ui, sans-serif;
  --font-ui: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
main section[id] { scroll-margin-top: 112px; }
@media (hover: hover) and (pointer: fine) {
  html, body, a, button, input, select, textarea, summary, label { cursor: none !important; }
  .graduation-cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    pointer-events: none;
    opacity: 0;
    font-size: 29px;
    line-height: 1;
    filter: drop-shadow(0 7px 7px rgba(13,27,45,.25));
    transform: translate(-50%, -50%) rotate(-10deg);
    transition: opacity .16s ease, filter .16s ease;
    will-change: left, top;
  }
  .graduation-cursor.is-visible { opacity: 1; }
  .graduation-cursor.is-hovering { filter: drop-shadow(0 9px 9px rgba(155,17,30,.3)); }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  pointer-events: none;
}
.nav {
  position: relative;
  height: 74px;
  padding: 8px 12px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(229,231,235,.92);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 50px rgba(31,41,51,.14);
  pointer-events: auto;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; box-shadow: 0 10px 20px rgba(23,50,77,.12); }
.brand span { display: grid; line-height: 1.05; text-transform: uppercase; letter-spacing: .02em; font-family: var(--font-ui); }
.brand strong { font-size: .8rem; color: var(--muted); font-weight: 700; }
.brand b { color: var(--secondary); font-size: 1.08rem; }
.nav-links { display: flex; align-items: center; gap: 20px; font-family: var(--font-ui); font-weight: 700; font-size: .86rem; }
.nav-links a { position: relative; color: #26323f; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -13px; height: 3px; width: 0; background: var(--primary); border-radius: 99px; transition: width .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-item { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown > a::before { content: ""; position: absolute; inset: -18px -12px; }
.nav-dropdown > a::after { bottom: -13px; }
.nav-dropdown-menu {
  position: absolute;
  left: -18px;
  top: 34px;
  width: 190px;
  padding: 10px;
  display: grid;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(31,41,51,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  padding: 9px 10px;
  border-radius: 8px;
  font-size: .84rem;
}
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--primary); }
.nav-dropdown-menu a::after { display: none; }
.mobile-only { display: none; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 22px; border-radius: 11px;
  font-family: var(--font-ui);
  font-weight: 800; font-size: .88rem; border: 1px solid transparent; cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--secondary); color: var(--white); box-shadow: 0 12px 28px rgba(155,17,30,.18); }
.btn-primary:hover { background: var(--secondary-dark); }
.btn-ghost { background: var(--white); color: var(--primary); border-color: rgba(23,50,77,.22); }
.btn-campus {
  min-height: 48px;
  padding: 0 21px;
  overflow: hidden;
  position: relative;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 12px 28px rgba(23,50,77,.3);
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
  transition: transform .3s cubic-bezier(.25,1,.5,1), box-shadow .3s ease, background-color .3s ease;
}
.btn-campus:hover {
  background: #244B70;
  color: var(--white);
  box-shadow: 0 18px 38px rgba(23,50,77,.4);
}
.eva-content { position: relative; z-index: 2; display: flex; align-items: center; gap: 10px; transition: transform .3s ease; }
.eva-icon { color: var(--white); font-size: 1.25rem; transition: transform .4s ease, color .3s ease; }
.eva-shine { position: absolute; z-index: 1; top: -10%; left: -42%; width: 24%; height: 120%; background: rgba(255,255,255,.34); transform: skewX(-22deg); opacity: 0; }
.eva-button.is-hovered .eva-content { transform: translateZ(10px); }
.eva-button:hover .eva-icon { color: var(--accent); transform: scale(1.12) rotate(-10deg); }
.eva-button.shine-active .eva-shine { animation: evaShine .62s ease-in-out; }
.motion-button {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 900px;
  will-change: transform;
  transition: transform .3s cubic-bezier(.25,1,.5,1), box-shadow .3s ease, background-color .3s ease, border-color .3s ease;
}
.motion-button.is-hovered { box-shadow: 0 18px 38px rgba(23,50,77,.2); }
.motion-shine { position: absolute; z-index: 3; top: -10%; left: -42%; width: 24%; height: 120%; background: rgba(255,255,255,.34); transform: skewX(-22deg); opacity: 0; pointer-events: none; }
.motion-button.shine-active .motion-shine { animation: evaShine .62s ease-in-out; }
.motion-button > *:not(.motion-shine) { position: relative; z-index: 2; }
.motion-button:hover .mini-play { transform: scale(1.1) rotate(-8deg); color: var(--secondary); }
.motion-button.more:hover::after { transform: translateX(3px); }
.btn-light { background: var(--white); color: var(--secondary-dark); }
.btn-large { min-height: 54px; padding-inline: 26px; }
.menu-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; padding: 9px; }
.menu-toggle span { display: block; height: 2px; background: var(--text); margin: 6px 0; border-radius: 99px; }
.hero { position: relative; overflow: visible; min-height: 660px; margin-bottom: 0; background: #F1F5F8; border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; isolation: isolate; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 112px; border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; background: rgba(255,255,255,.28); pointer-events: none; z-index: 1; }
.hero-bg-lines { position: absolute; inset: 0; overflow: hidden; border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; background: transparent; pointer-events: none; }
.hero-grid { min-height: 660px; display: grid; grid-template-columns: minmax(0, .58fr) minmax(0, .42fr); align-items: center; gap: 24px; position: static; padding: 132px 0 78px; }
.hero-copy { position: relative; z-index: 4; max-width: 620px; }
.eyebrow { display: inline-flex; background: rgba(23,50,77,.08); color: var(--primary); padding: 8px 18px; border-radius: 999px; font-family: var(--font-ui); font-weight: 800; font-size: .86rem; margin-bottom: 22px; }
.eyebrow.soft { background: rgba(22,135,93,.09); color: var(--success); }
.hero h1 { font-family: var(--font-heading); font-size: clamp(2.65rem, 4.55vw, 4.55rem); line-height: 1.03; letter-spacing: 0; margin: 0 0 22px; max-width: 720px; color: var(--primary); }
.hero h1 span { color: var(--secondary); }
.hero p { font-size: 1.04rem; color: var(--muted); max-width: 550px; margin: 0 0 24px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.video-trigger { display: inline-flex; align-items: center; gap: 12px; min-height: 48px; border: 1px solid rgba(31,41,51,.14); border-radius: 10px; background: rgba(255,255,255,.72); font-family: var(--font-ui); font-weight: 800; color: var(--text); cursor: pointer; padding: 0 16px 0 8px; box-shadow: 0 12px 30px rgba(31,41,51,.07); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.video-trigger:hover { transform: translateY(-2px); border-color: rgba(23,50,77,.28); box-shadow: 0 18px 38px rgba(31,41,51,.10); }
.mini-play { width: 34px; height: 34px; border: 1px solid rgba(23,50,77,.18); background: var(--white); border-radius: 50%; display: grid; place-items: center; color: var(--primary); box-shadow: 0 10px 26px rgba(31,41,51,.08); font-size: .82rem; }
.social-proof { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.avatars { display: flex; }
.avatars span { width: 38px; height: 38px; border-radius: 50%; border: 3px solid var(--white); margin-left: -10px; background: #D8DEE8; box-shadow: 0 8px 20px rgba(31,41,51,.08); }
.avatars span:first-child { margin-left: 0; background: var(--primary); }
.avatars span:nth-child(2) { background: var(--secondary); }
.avatars span:nth-child(3) { background: var(--accent); }
.social-proof strong, .social-proof small { display: block; }
.social-proof strong { color: #111827; letter-spacing: 1px; font-size: .96rem; }
.social-proof small { color: var(--muted); }
.hero-media { position: absolute; inset: 0; z-index: 2; min-height: 100%; border-radius: inherit; overflow: hidden; pointer-events: none; }
.hero-media::before { content: ""; position: absolute; inset: 0; background: rgba(241,245,248,.08); z-index: 1; }
.hero-media::after { content: ""; position: absolute; right: 8%; top: 26%; width: 54px; height: 54px; border-radius: 16px; background: var(--accent); box-shadow: 0 18px 36px rgba(197,154,61,.24); animation: float 5.2s ease-in-out infinite; z-index: 3; }
.hero-media > img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center right; border-radius: inherit; box-shadow: none; filter: none; }
.floating-card { position: absolute; z-index: 4; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.8); border-radius: 16px; padding: 18px 20px; box-shadow: 0 20px 50px rgba(31,41,51,.14); display: grid; gap: 3px; animation: float 5.5s ease-in-out infinite; pointer-events: auto; }
.floating-card strong,
.floating-card small,
.floating-card b {
  font-family: var(--font-ui);
}
.floating-card strong { color: var(--secondary); }
.floating-card small { color: var(--muted); }
.floating-card b { font-size: .82rem; }
.card-years { right: 35%; top: 32%; }
.card-valid { right: 23%; bottom: 24%; animation-delay: -2s; }
.card-eva { right: 5%; top: 48%; animation-delay: -3.2s; }
.icon-circle { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(155,17,30,.10); color: var(--secondary); margin-bottom: 4px; }
.icon-circle.teal { background: rgba(23,50,77,.10); color: var(--primary); }
.icon-circle.navy { width: 46px; border-radius: 14px; background: var(--primary); color: var(--white); font-size: .72rem; letter-spacing: 0; }
.play-orbit { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); width: 116px; height: 116px; padding: 0; border: 0; border-radius: 50%; background: var(--primary); color: var(--white); display: grid; place-items: center; cursor: pointer; z-index: 5; box-shadow: 0 22px 55px rgba(23,50,77,.24), inset 0 0 0 1px rgba(255,255,255,.16); }
.play-orbit::before, .play-orbit::after { content: ""; position: absolute; border-radius: inherit; pointer-events: none; }
.play-orbit::before { inset: -12px; border: 12px solid var(--white); box-shadow: 0 18px 42px rgba(23,50,77,.14); z-index: 0; }
.play-orbit::after { inset: -20px; border: 2px solid rgba(23,50,77,.18); animation: playPulse 2.8s ease-in-out infinite; z-index: -1; }
.play-orbit:focus-visible { outline: 4px solid rgba(197,154,61,.36); outline-offset: 7px; }
.play-orbit:hover { animation: buttonHover .9s ease both; }
.play-orbit .play-icon { position: absolute; z-index: 2; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--primary); font-size: 1.35rem; line-height: 1; padding-left: 3px; box-shadow: inset 0 0 0 1px rgba(23,50,77,.10), 0 12px 26px rgba(31,41,51,.15); }
.play-orbit svg { position: absolute; inset: 9px; width: calc(100% - 18px); height: calc(100% - 18px); animation: spin 14s linear infinite; z-index: 1; }
.play-orbit text { font-size: 11px; fill: var(--white); font-weight: 800; letter-spacing: 1.7px; }
.section { padding: 72px 0 0; }
.section-soft { background: var(--bg-soft); padding: 86px 0 96px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.section-head h2 { color: var(--primary); font-family: var(--font-heading); font-size: clamp(2rem, 3vw, 3rem); line-height: 1; letter-spacing: 0; margin: 0 0 14px; position: relative; display: inline-block; }
.section-head h2::after { content: ""; position: absolute; left: 28%; right: 0; bottom: -11px; height: 3px; border-radius: 99px; background: var(--accent); transform: rotate(-3deg); }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.tabs { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.tab { border: 1px solid var(--border); background: var(--white); color: var(--muted); border-radius: 8px; height: 38px; padding: 0 22px; font-weight: 800; cursor: pointer; transition: all .2s ease; }
.tab.active, .tab:hover { background: var(--primary); color: var(--white); border-color: var(--primary); box-shadow: 0 14px 28px rgba(23,50,77,.14); }
.program-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 18px 40px rgba(31,41,51,.07); transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease; }
.program-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(31,41,51,.12); }
.program-card.is-hidden { transform: scale(.94); opacity: .1; pointer-events: none; display: none; }
.program-card h3 { margin: 0 0 10px; color: var(--primary); font-family: var(--font-ui); line-height: 1.15; }
.program-card p { color: var(--muted); font-size: .92rem; margin: 0 0 18px; }
.course-carousel-section { position: relative; background: var(--bg-soft); margin-top: 0; padding: 96px 0 92px; overflow: hidden; }
.course-carousel-section::before {
  content: "OFERTA ACADÉMICA";
  position: absolute;
  left: 50%;
  top: 62px;
  transform: translateX(-50%);
  color: rgba(23,50,77,.04);
  font-family: var(--font-ui);
  font-size: clamp(3.5rem, 10vw, 8.6rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}
.carousel-hero { position: relative; z-index: 5; margin-bottom: 56px; }
.carousel-hero .eyebrow { margin-bottom: 14px; }
.carousel-shell { position: relative; z-index: 2; min-height: 545px; padding: 0 58px 34px; display: grid; justify-items: center; perspective: 1200px; }
.course-track.course-3d {
  position: relative;
  width: min(390px, 72vw);
  height: 500px;
  margin-top: 0;
  transform-style: preserve-3d;
}
.course-3d-card {
  position: absolute;
  inset: 0;
  min-height: 500px;
  min-width: 0;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 70px rgba(31,41,51,.17);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), opacity .7s ease, filter .7s ease;
  user-select: none;
}
.course-3d-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: var(--secondary);
}
.topline { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; position: relative; z-index: 2; }
.students-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  padding: 8px 11px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--primary);
  font-family: var(--font-ui);
}
.students-pill strong { font-size: 1rem; line-height: 1; }
.students-pill span { color: var(--muted); font-size: .68rem; font-weight: 800; }
.level-pill {
  max-width: 148px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 900;
  text-align: center;
}
.course-card-art {
  display: block;
  width: calc(100% + 32px);
  max-width: none;
  height: 175px;
  margin: 14px -16px 0;
  object-fit: cover;
  object-position: center;
  align-self: stretch;
  border-top: 1px solid rgba(23,50,77,.08);
  border-bottom: 1px solid rgba(23,50,77,.08);
}
.course-3d-card .program { margin-top: 12px; text-align: left; }
.course-3d-card .level {
  color: var(--secondary);
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.course-3d-card h3 {
  margin: 0 0 6px;
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.08;
}
.course-3d-card p { margin: 0; color: var(--muted); font-size: .74rem; line-height: 1.35; }
.features { display: flex; flex-wrap: wrap; gap: 5px; list-style: none; padding: 0; margin: 10px 0 0; }
.features li {
  padding: 4px 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: .62rem;
  font-weight: 800;
}
.more {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: .74rem;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(155,17,30,.16);
}
.more::after { content: "→"; margin-left: 8px; display: inline-block; transition: transform .25s ease; }
.carousel-control {
  position: absolute;
  top: 44%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23,50,77,.16);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(31,41,51,.11);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.carousel-control:hover { transform: translateY(-2px); background: var(--primary); color: var(--white); }
.carousel-control.prev { left: max(0px, calc(50% - 460px)); }
.carousel-control.next { right: max(0px, calc(50% - 460px)); }
.carousel-dots { position: absolute; left: 0; right: 0; bottom: -18px; display: flex; justify-content: center; gap: 10px; z-index: 5; }
.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.carousel-dots button.is-active { background: var(--primary); }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.category-card { min-height: 220px; padding: 28px 20px; border: 1px solid var(--border); background: var(--white); border-radius: 18px; text-align: center; box-shadow: 0 16px 45px rgba(31,41,51,.05); transition: transform .25s ease, box-shadow .25s ease; }
.category-card:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(31,41,51,.10); }
.cat-icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 22px; font-size: 2rem; }
.cat-icon.green { background: rgba(79,104,74,.12); color: var(--success); }
.cat-icon.teal { background: rgba(23,50,77,.10); color: var(--primary); }
.cat-icon.orange { background: rgba(197,154,61,.16); color: #8A6821; }
.cat-icon.purple { background: rgba(109,91,208,.12); color: var(--purple); }
.cat-icon.blue { background: rgba(22,59,92,.10); color: var(--secondary-dark); }
.category-card h3 { margin: 0 0 10px; color: var(--primary); font-family: var(--font-ui); }
.category-card p { margin: 0 0 12px; color: var(--muted); font-size: .92rem; }
.category-card small { color: var(--text); font-weight: 800; }
.benefits-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; background: var(--bg-soft); border-radius: 26px; padding: 56px; box-shadow: 0 20px 60px rgba(31,41,51,.06); }
.benefits-copy h2 { font-family: var(--font-heading); font-size: clamp(2.1rem, 4vw, 3.6rem); line-height: 1; letter-spacing: 0; margin: 0 0 24px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; color: var(--muted); }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--success); color: var(--white); display: grid; place-items: center; font-size: .85rem; font-weight: 900; }
.student-card { width: min(100%, 470px); justify-self: center; background: var(--white); border-radius: 18px; padding: 28px; box-shadow: 0 28px 80px rgba(31,41,51,.15); border: 1px solid rgba(229,231,235,.85); position: relative; overflow: hidden; }
.student-card::after { content: ""; position: absolute; top: 0; right: 0; width: 120px; height: 120px; background: var(--secondary); clip-path: polygon(100% 0, 0 0, 100% 100%); }
.id-top { display: flex; align-items: center; gap: 12px; text-transform: uppercase; color: var(--secondary); font-weight: 900; margin-bottom: 24px; }
.id-top img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.id-body { display: flex; gap: 24px; align-items: center; }
.id-photo { width: 116px; height: 136px; border-radius: 14px; background: #E1E7EE; box-shadow: inset 0 -25px 0 rgba(138,13,22,.18); }
.id-body small { color: var(--secondary); font-weight: 900; letter-spacing: .08em; }
.id-body h3 { margin: 8px 0; }
.id-body p { margin: 4px 0; color: var(--muted); }
.id-footer { margin-top: 26px; border-top: 1px solid var(--border); padding-top: 12px; color: var(--muted); font-size: .86rem; font-family: cursive; }
.cta-band { margin-top: 70px; border-radius: 24px; overflow: hidden; padding: 48px 58px; color: var(--white); background: var(--primary); display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: center; position: relative; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: rgba(155,17,30,.18); }
.cta-copy, .cta-list { position: relative; z-index: 1; }
.cta-copy h2 { margin: 0 0 12px; font-family: var(--font-heading); font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1; letter-spacing: 0; }
.cta-copy p { color: rgba(255,255,255,.84); max-width: 470px; }
.cta-list { display: grid; gap: 16px; }
.cta-list article { background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px); border-radius: 18px; padding: 18px; display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: center; }
.cta-list span { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; font-weight: 900; }
.cta-list strong, .cta-list small { display: block; }
.cta-list small { color: rgba(255,255,255,.76); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card { border: 1px solid var(--border); border-radius: 18px; padding: 30px; background: var(--white); box-shadow: 0 16px 40px rgba(31,41,51,.06); }
.info-card span { font-size: 2rem; }
.info-card h3 { color: var(--primary); font-family: var(--font-ui); }
.info-card p { color: var(--muted); }
.faq-section { margin-top: 72px; }
.faq-grid { width: min(920px, 100%); margin: 0 auto; display: grid; gap: 14px; }
.faq-grid details { border: 1px solid var(--border); border-radius: 14px; background: var(--white); box-shadow: 0 14px 34px rgba(31,41,51,.05); overflow: hidden; }
.faq-grid summary { cursor: pointer; padding: 18px 22px; color: var(--primary); font-family: var(--font-ui); font-weight: 900; list-style: none; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after { content: "+"; float: right; color: var(--secondary); font-size: 1.2rem; line-height: 1; }
.faq-grid details[open] summary::after { content: "-"; }
.faq-grid p { margin: 0; padding: 0 22px 20px; color: var(--muted); }
.page-hero { background: var(--bg-soft); border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; padding: 132px 0 68px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, .65fr); gap: 46px; align-items: center; }
.page-hero h1 { margin: 0 0 18px; color: var(--primary); font-family: var(--font-heading); font-size: clamp(2.55rem, 4.2vw, 4.25rem); line-height: 1.02; letter-spacing: 0; }
.page-hero p { margin: 0 0 24px; color: var(--muted); font-size: 1.04rem; max-width: 650px; }
.page-hero-image { border-radius: 24px; overflow: hidden; border: 1px solid rgba(229,231,235,.9); box-shadow: var(--shadow); background: var(--white); }
.page-hero-image img { width: 100%; height: 410px; object-fit: cover; }
.page-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.page-kpis article { padding: 18px; border: 1px solid var(--border); border-radius: 14px; background: var(--white); box-shadow: 0 12px 28px rgba(31,41,51,.05); }
.page-kpis strong { display: block; color: var(--secondary); font-family: var(--font-ui); font-size: 1.45rem; line-height: 1; }
.page-kpis span { display: block; margin-top: 6px; color: var(--muted); font-size: .84rem; }
.split-section { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 42px; align-items: center; }
.split-section.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.split-copy h2, .contact-panel h2 { margin: 0 0 16px; color: var(--primary); font-family: var(--font-heading); font-size: clamp(2rem, 3vw, 3rem); line-height: 1.05; }
.split-copy p { color: var(--muted); margin: 0 0 16px; }
.split-media { border-radius: 22px; overflow: hidden; background: var(--bg-soft); border: 1px solid var(--border); box-shadow: 0 18px 50px rgba(31,41,51,.08); }
.split-media img { width: 100%; height: 420px; object-fit: cover; }
.statement-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.statement-card { padding: 30px; border-radius: 18px; border: 1px solid var(--border); background: var(--white); box-shadow: 0 16px 42px rgba(31,41,51,.06); }
.statement-card h3 { margin: 0 0 14px; color: var(--primary); font-family: var(--font-ui); font-size: 1.45rem; }
.statement-card p { margin: 0; color: var(--muted); }
.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.value-grid span { min-height: 58px; display: grid; place-items: center; padding: 12px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); color: var(--primary); font-family: var(--font-ui); font-weight: 900; text-align: center; box-shadow: 0 10px 24px rgba(31,41,51,.04); }
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.support-card { padding: 24px; border-radius: 16px; border: 1px solid var(--border); background: var(--white); box-shadow: 0 14px 34px rgba(31,41,51,.05); }
.support-card span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 14px; border-radius: 12px; background: var(--bg-soft); color: var(--secondary); font-family: var(--font-ui); font-weight: 900; }
.support-card h3 { margin: 0 0 8px; color: var(--primary); font-family: var(--font-ui); }
.support-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.contact-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 28px; align-items: start; }
.contact-panel { padding: 30px; border-radius: 20px; border: 1px solid var(--border); background: var(--white); box-shadow: 0 18px 48px rgba(31,41,51,.07); }
.contact-list { display: grid; gap: 16px; margin: 22px 0; }
.contact-list article { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.contact-list span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--bg-soft); color: var(--secondary); font-weight: 900; }
.contact-list strong { display: block; color: var(--primary); font-family: var(--font-ui); }
.contact-list a, .contact-list p { margin: 2px 0 0; color: var(--muted); }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: var(--primary); font-family: var(--font-ui); font-weight: 800; font-size: .86rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0 12px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}
.contact-form textarea { min-height: 118px; padding-top: 10px; resize: vertical; }
.contact-form .full, .contact-form button { grid-column: 1 / -1; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 3px solid rgba(31,111,139,.16); border-color: var(--secondary); }
.contact-form button:disabled { cursor: wait; opacity: .72; transform: none; }
.contact-honeypot { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.contact-form-status { grid-column: 1 / -1; min-height: 24px; margin: 0; padding: 0 2px; color: var(--muted); font-size: .9rem; font-weight: 700; }
.contact-form-status.is-success { color: #167447; }
.contact-form-status.is-error { color: #b42318; }
.map-frame { min-height: 360px; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: var(--bg-soft); box-shadow: 0 18px 48px rgba(31,41,51,.07); }
.map-frame iframe { width: 100%; height: 360px; border: 0; display: block; }
.footer { position: relative; width: calc(100% - 28px); margin: 90px 14px 14px; padding: 72px 0 48px; overflow: hidden; background: var(--primary-dark); border: 1px solid rgba(197,154,61,.28); border-top: 4px solid var(--accent); border-radius: 44px; box-shadow: 0 28px 70px rgba(13,27,45,.22); }
.footer::before { content: ""; position: absolute; top: 0; right: 8%; width: 180px; height: 4px; background: var(--secondary); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.05fr .65fr .9fr 1.25fr; gap: 34px; align-items: start; }
.footer-grid > div { animation: footerRise .65s ease both; }
.footer-grid > div:nth-child(2) { animation-delay: .08s; }
.footer-grid > div:nth-child(3) { animation-delay: .16s; }
.footer-grid > div:nth-child(4) { animation-delay: .24s; }
.footer p, .footer a { color: rgba(255,255,255,.72); }
.footer h3 { position: relative; margin: 0 0 20px; padding-bottom: 10px; color: var(--white); font-family: var(--font-ui); }
.footer h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--accent); transition: width .3s ease; }
.footer-grid > div:hover h3::after { width: 62px; }
.footer-grid > div:not(:first-child) > a { display: block; width: fit-content; margin: 11px 0; transition: color .22s ease, transform .22s ease; }
.footer-grid > div:not(:first-child) > a:hover { color: var(--white); transform: translateX(5px); }
.footer-brand { margin-bottom: 18px; }
.footer .brand strong { color: rgba(255,255,255,.58); }
.footer .brand b { color: var(--white); }
.footer .brand img { border: 2px solid rgba(197,154,61,.7); }
.footer-social-row { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.facebook-button, .email-button { width: 42px !important; height: 42px; margin: 0 !important; display: grid !important; place-items: center; border-radius: 50%; color: var(--white) !important; }
.facebook-button { background: #1877F2; box-shadow: 0 10px 28px rgba(24,119,242,.3); transition: transform .42s cubic-bezier(.2,.8,.2,1), border-radius .42s ease, box-shadow .42s ease; }
.facebook-button svg { width: 23px; height: 23px; fill: currentColor; }
.facebook-icon { color: var(--white); font: 900 1.35rem/1 var(--font-ui); }
.facebook-button:hover { transform: rotate(360deg) scale(1.14) !important; border-radius: 12px; box-shadow: 0 15px 34px rgba(24,119,242,.46); }
.email-button { position: relative; overflow: visible; background: var(--secondary); box-shadow: 0 10px 28px rgba(155,17,30,.28); transition: transform .26s ease, box-shadow .26s ease; perspective: 120px; }
.email-button:hover, .email-button.open { transform: translateY(-4px) !important; box-shadow: 0 16px 34px rgba(155,17,30,.4); }
.email-button .envelope { position: relative; width: 30px; height: 20px; display: block; border-radius: 0 0 4px 4px; background: #F2F2F7; box-shadow: 0 3px 8px rgba(0,0,0,.24); }
.email-button .flap { position: absolute; top: 0; left: 0; width: 0; height: 0; border-left: 15px solid transparent; border-right: 15px solid transparent; border-top: 12px solid #E5E5EA; transform-origin: top; transition: transform .4s ease, z-index .2s; z-index: 3; }
.email-button .front { position: absolute; bottom: 0; left: 0; width: 0; height: 0; border-left: 15px solid #D1D1D6; border-right: 15px solid #D1D1D6; border-bottom: 10px solid #F2F2F7; border-radius: 0 0 4px 4px; z-index: 4; }
.email-button .letter { position: absolute; bottom: 2px; left: 4px; width: 22px; height: 17px; padding: 3px; overflow: hidden; border-radius: 2px; background: var(--white); box-shadow: 0 2px 5px rgba(0,0,0,.12); transition: transform .4s ease, z-index .4s; z-index: 2; }
.email-button .letter-lines { position: relative; display: block; width: 100%; height: 2px; border-radius: 2px; background: #3E7CB1; }
.email-button .letter-lines::before, .email-button .letter-lines::after { content: ""; position: absolute; left: 0; height: 2px; border-radius: 2px; background: #D1D1D6; }
.email-button .letter-lines::before { top: 5px; width: 80%; }
.email-button .letter-lines::after { top: 10px; width: 60%; }
.email-button.open .flap { transform: rotateX(180deg); z-index: 1; }
.email-button.open .letter { transform: translateY(-12px); z-index: 3; }
.footer-contact > .whatsapp-link { display: flex !important; align-items: center; gap: 9px; }
.whatsapp-link .bi-whatsapp { width: 29px; flex: 0 0 auto; color: #25D366; font-size: 1.7rem; line-height: 1; transition: transform .26s ease, filter .26s ease; }
.whatsapp-link:hover .bi-whatsapp { transform: rotate(-10deg) scale(1.16); filter: drop-shadow(0 7px 8px rgba(37,211,102,.3)); }
.footer-contact p { margin-top: 18px; font-size: .88rem; }
.footer-map-frame { position: relative; height: 188px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: #16283A; box-shadow: 0 16px 34px rgba(0,0,0,.2); transition: transform .3s ease, box-shadow .3s ease; }
.footer-map-frame:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(0,0,0,.28); }
.footer-map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.78) contrast(1.04); transition: filter .3s ease, transform .45s ease; }
.footer-map-frame:hover iframe { filter: saturate(1) contrast(1); transform: scale(1.025); }
.map-link { margin-top: 12px !important; color: var(--accent) !important; font-weight: 800; font-size: .83rem; }
.whatsapp-widget { position: fixed; right: 22px; bottom: 22px; z-index: 70; font-family: var(--font-ui); }
.whatsapp-launcher { position: relative; width: 62px; height: 62px; display: grid; place-items: center; border: 0; border-radius: 50%; background: #25D366; color: #082916; font-weight: 900; box-shadow: 0 18px 44px rgba(37,211,102,.38); transition: transform .25s ease, box-shadow .25s ease; }
.whatsapp-launcher .bi-whatsapp { color: var(--white); font-size: 2rem; line-height: 1; animation: whatsappBeat 2s ease-in-out infinite; transition: transform .3s ease; }
.whatsapp-launcher::before { content: ""; position: absolute; inset: -6px; border: 1px solid rgba(37,211,102,.45); border-radius: inherit; animation: chatRing 2.4s ease-out infinite; }
.whatsapp-launcher:hover { transform: translateY(-4px) rotate(-5deg); box-shadow: 0 24px 52px rgba(37,211,102,.48); }
.whatsapp-launcher:hover .bi-whatsapp { transform: scale(1.12); }
.whatsapp-widget.is-open .whatsapp-launcher { transform: rotate(90deg) scale(.92); }
.whatsapp-widget.is-open .whatsapp-launcher .bi-whatsapp { transform: rotate(-90deg) scale(.88); }
.whatsapp-panel { position: absolute; right: 0; bottom: 76px; width: min(360px, calc(100vw - 28px)); overflow: hidden; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; background: var(--white); box-shadow: 0 26px 70px rgba(13,27,45,.24); opacity: 0; visibility: hidden; transform: translateY(18px) scale(.96); transform-origin: right bottom; transition: opacity .24s ease, transform .24s ease, visibility .24s ease; }
.whatsapp-widget.is-open .whatsapp-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.whatsapp-panel-head { position: relative; padding: 18px 52px 18px 18px; background: var(--primary); color: var(--white); }
.whatsapp-panel-head strong, .whatsapp-panel-head small { display: block; }
.whatsapp-panel-head small { margin-top: 3px; color: rgba(255,255,255,.7); }
.whatsapp-status { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 4px rgba(37,211,102,.14); }
.whatsapp-close { position: absolute; right: 12px; top: 12px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: var(--white); font-size: 1.25rem; transition: background .2s ease, transform .2s ease; }
.whatsapp-close:hover { background: rgba(255,255,255,.22); transform: rotate(90deg); }
.whatsapp-chat-body { padding: 18px; background: #F3F6F4; }
.whatsapp-message { width: 88%; margin-bottom: 14px; padding: 12px 14px; border-radius: 4px 14px 14px 14px; background: var(--white); color: var(--text); font-size: .88rem; box-shadow: 0 8px 22px rgba(31,41,51,.07); animation: messageIn .32s ease both; }
.whatsapp-chat-form { display: grid; gap: 10px; }
.whatsapp-chat-form textarea { width: 100%; min-height: 88px; padding: 12px; resize: none; border: 1px solid var(--border); border-radius: 12px; background: var(--white); color: var(--text); font: inherit; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.whatsapp-chat-form textarea:focus { border-color: #25D366; box-shadow: 0 0 0 4px rgba(37,211,102,.12); }
.whatsapp-send { min-height: 44px; border: 0; border-radius: 10px; background: #25D366; color: #082916; font-weight: 900; transition: transform .22s ease, background .22s ease; }
.whatsapp-send:hover { transform: translateY(-2px); background: #2DE172; }
.modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15,23,32,.72); backdrop-filter: blur(10px); }
.modal-panel { position: relative; width: min(920px, 100%); background: var(--white); border-radius: 24px; padding: 24px; box-shadow: 0 30px 90px rgba(0,0,0,.34); animation: modalIn .25s ease; }
.modal-panel h2 { margin: 0 0 16px; color: var(--secondary-dark); font-family: var(--font-ui); }
.modal-panel p { color: var(--muted); margin-bottom: 0; }
.modal-close { position: absolute; right: 18px; top: 16px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--bg-soft); font-size: 1.8rem; cursor: pointer; }
.video-placeholder { position: relative; border-radius: 18px; overflow: hidden; background: var(--text); aspect-ratio: 16/9; }
.video-placeholder img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.74); }
.placeholder-play { position: absolute; inset: 0; display: grid; place-items: center; color: var(--white); font-size: 5rem; text-shadow: 0 6px 25px rgba(0,0,0,.35); }
.program-modal-panel { width: min(760px, 100%); }
.program-modal-panel .eyebrow { margin-bottom: 14px; }
.program-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 22px 0 18px; }
.program-form label { display: grid; gap: 7px; color: var(--primary); font-family: var(--font-ui); font-weight: 800; font-size: .86rem; }
.program-form input { width: 100%; min-height: 44px; border: 1px solid var(--border); border-radius: 9px; padding: 0 12px; font: inherit; color: var(--text); background: var(--white); }
.program-form button { grid-column: 1 / -1; }
.program-whatsapp { width: 100%; min-height: 48px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }
.delay-4 { transition-delay: .34s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes heroLift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes playPulse { 0%, 100% { opacity: .55; transform: scale(1); } 50% { opacity: 0; transform: scale(1.18); } }
@keyframes buttonHover { 0%, 100% { transform: translateX(-50%) scale(1); } 50% { transform: translateX(-50%) scale(1.05); } }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes footerRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes chatRing { 0% { opacity: .7; transform: scale(.86); } 75%, 100% { opacity: 0; transform: scale(1.24); } }
@keyframes whatsappBeat { 0%, 100% { scale: 1; } 50% { scale: 1.2; } }
@keyframes evaShine { 0% { left: -42%; opacity: 0; } 18% { opacity: 1; } 100% { left: 125%; opacity: 0; } }
@keyframes messageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1060px) {
  .menu-toggle { display: block; }
  .nav-links, .nav-actions { display: none; }
  .nav-links.is-open { display: grid; position: absolute; left: 0; right: 0; top: calc(100% + 10px); background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); }
  .nav-links a::after { display: none; }
  .nav-item { display: grid; gap: 8px; }
  .nav-dropdown-menu { position: static; width: 100%; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-radius: 12px; background: var(--bg-soft); }
  .nav-links .mobile-only { display: flex; align-items: center; justify-content: center; min-height: 42px; border: 1px solid rgba(138,13,22,.22); border-radius: 8px; color: var(--primary); }
  .nav-links .mobile-campus { gap: 9px; background: var(--primary); border-color: rgba(23,50,77,.9); color: var(--white); box-shadow: 0 12px 24px rgba(23,50,77,.22); }
  .nav-links .mobile-campus i { color: var(--accent); font-size: 1.15rem; }
  .nav-links .mobile-cta { background: var(--primary); color: var(--white); border-color: var(--primary); }
  .hero-grid, .benefits-wrap, .cta-band, .page-hero-grid, .split-section, .split-section.reverse, .contact-layout { grid-template-columns: 1fr; }
  .carousel-shell { padding-inline: 46px; }
  .course-track.course-3d { width: min(370px, 78vw); }
  .carousel-control.prev { left: 8px; }
  .carousel-control.next { right: 8px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid, .support-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-media { min-height: 100%; }
  .play-orbit { bottom: -34px; }
  .card-years { left: 4%; }
  .card-valid { right: 4%; }
  .card-eva { right: 4%; top: 56%; }
}
@media (max-width: 900px) {
  .course-carousel-section { padding: 82px 0 86px; }
  .carousel-hero { margin-bottom: 42px; }
  .carousel-shell { min-height: 525px; padding-inline: 34px; }
  .course-track.course-3d { height: 490px; }
  .course-3d-card { min-height: 490px; }
  .carousel-dots { bottom: -12px; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { top: 10px; }
  .nav { height: 66px; padding: 7px 9px 7px 12px; border-radius: 16px; }
  .brand b { font-size: .9rem; }
  .brand strong { font-size: .68rem; }
  .brand img { width: 44px; height: 44px; }
  .hero { min-height: 1280px; }
  .hero-grid { min-height: 1280px; padding-top: 112px; gap: 34px; align-items: start; }
  .hero-copy { max-width: 100%; }
  .hero h1 { font-size: 3rem; }
  .hero-media { animation: none; }
  .hero-media::before { background: rgba(241,245,248,.72); }
  .hero-media > img { height: 100%; border-radius: inherit; object-position: 62% bottom; }
  .floating-card { padding: 14px 16px; }
  .card-years { top: auto; left: 14px; right: auto; bottom: 360px; }
  .card-valid { top: auto; left: auto; right: 14px; bottom: 220px; }
  .card-eva { top: auto; left: 14px; right: 14px; bottom: 78px; }
  .play-orbit { width: 94px; height: 94px; bottom: -42px; }
  .play-orbit::before, .play-orbit::after { inset: -9px; }
  .play-orbit .play-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .section { padding-top: 84px; }
  .category-grid, .info-grid, .footer-grid, .statement-grid, .value-grid, .support-grid, .page-kpis, .contact-form { grid-template-columns: 1fr; }
  .page-hero { padding: 112px 0 58px; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; }
  .page-hero-image img, .split-media img { height: 300px; }
  .contact-form .full, .contact-form button { grid-column: auto; }
  .course-carousel-section { padding: 82px 0 86px; }
  .course-carousel-section::before { top: 48px; font-size: 17vw; white-space: normal; text-align: center; }
  .carousel-hero { margin-bottom: 42px; }
  .carousel-shell { min-height: 525px; padding: 0 0 34px; }
  .course-track.course-3d { width: min(322px, 84vw); height: 490px; margin-top: 0; }
  .course-3d-card { padding: 16px; }
  .course-card-art { width: calc(100% + 32px); height: 175px; margin: 14px -16px 0; }
  .course-3d-card .program { margin-top: 12px; }
  .course-3d-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
  .course-3d-card p { font-size: .72rem; line-height: 1.34; }
  .features { gap: 5px; margin-top: 10px; }
  .features li { font-size: .61rem; padding: 5px 7px; }
  .students-pill { padding: 8px 10px; }
  .level-pill { padding: 7px 10px; font-size: .7rem; }
  .more { min-height: 34px; font-size: .74rem; }
  .carousel-control { top: auto; bottom: 20px; width: 42px; height: 42px; font-size: 1.8rem; }
  .carousel-control.prev { left: calc(50% - 76px); }
  .carousel-control.next { right: calc(50% - 76px); }
  .carousel-dots { bottom: -12px; pointer-events: none; }
  .program-form { grid-template-columns: 1fr; }
  .benefits-wrap { padding: 30px; }
  .id-body { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 34px 24px; }
  .footer { padding-top: 62px; }
  .whatsapp-widget { right: 14px; bottom: 14px; }
  .whatsapp-launcher { width: 56px; height: 56px; }
  .whatsapp-panel { bottom: 68px; }
}
