/* =========================
   01. FONTS
========================= */

@font-face{
  font-family:'Poppins';
  src:url('/fonts/Poppins-Light.woff2') format('woff2');
  font-weight:300;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Poppins';
  src:url('/fonts/Poppins-Regular.woff2') format('woff2');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Poppins';
  src:url('/fonts/Poppins-Bold.woff2') format('woff2');
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Antonio';
  src:url('/fonts/Antonio-Regular.woff2') format('woff2');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Playfair Display';
  src:url('/fonts/PlayfairDisplay-Regular.woff2') format('woff2');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Playfair Display';
  src:url('/fonts/PlayfairDisplay-SemiBoldItalic.woff2') format('woff2');
  font-weight:600;
  font-style:italic;
  font-display:swap;
}


/* =========================
   02. TOKENS / BRANDING
========================= */

:root{
  --fontPrimary:'Poppins', sans-serif;
  --fontSecondary:'Playfair Display', serif;
  --fontAccent:'Antonio', sans-serif;

  --colorPrimary900:#0B2B5C;
  --colorPrimary700:#264D86;
  --colorPrimary500:#1657B9;
  --colorPrimary400:#1E78FD;
  --colorPrimary200:#88A9DB;
  --colorPrimary100:#C9DEFF;

  --colorSecondary900:#5C410B;
  --colorSecondary500:#B19050;
  --colorSecondary100:#FFEDC9;

  --colorNeutral900:#161616;
  --colorNeutral700:#4A4A4A;
  --colorNeutral100:#F2F2F2;
  --colorNeutral000:#FFFFFF;
  --siteMax:1320px;
  --sectionSpace:clamp(80px, 10vw, 150px);

  --shadowSoft:0 18px 50px rgba(11,43,92,.10);
  --shadowDark:0 24px 70px rgba(0,0,0,.24);
}


/* =========================
   03. BASE
========================= */

body{
  font-family:var(--fontPrimary);
  background:#fff;
  color:var(--colorPrimary900);
  overflow-x:hidden;
  cursor:none;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input{
  font-family:inherit;
}

.noise{
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.04), transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.03), transparent 16%);
  opacity:.35;
  pointer-events:none;
  z-index:1;
}

.cursor{
  width:14px;
  height:14px;
  background:var(--colorPrimary400);
  border-radius:50%;
  position:fixed;
  pointer-events:none;
  z-index:99999;
  box-shadow:0 0 20px rgba(30,120,253,.35);
}


/* =========================
   04. UTILITIES BRAND
========================= */

.section{
  position:relative;
  overflow:hidden;
  padding:var(--sectionSpace) 0;
  z-index:2;
}

.section-light{
  background:
    radial-gradient(circle at 92% 12%, rgba(177,144,80,.14), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(30,120,253,.08), transparent 28%),
    linear-gradient(180deg,#fff 0%,#f8fbff 100%);
  color:var(--colorPrimary900);
}

.section-dark{
  background:
    radial-gradient(circle at 18% 20%, rgba(30,120,253,.16), transparent 30%),
    radial-gradient(circle at 84% 30%, rgba(177,144,80,.08), transparent 32%),
    linear-gradient(135deg,#061A38 0%, #0B2B5C 48%, #041225 100%);
  color:var(--colorNeutral000);
}


.header[data-nav-theme="light"] .menu{
  background: var(--colorNeutral100 )!important;;
}

.header[data-nav-theme="light"] .logo,
.header[data-nav-theme="light"] .menu-item{
  color:var(--colorPrimary900);
}

.header[data-nav-theme="dark"] .logo,
.header[data-nav-theme="dark"] .menu-item{
  color:#fff;
}

.eyebrow,
.sectionCounter,
.sectionLabel{
  display:block;
  font-family:var(--fontAccent);
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:13px;
  color:var(--colorSecondary500);
  padding-bottom: 30px;
}

.goldRule{
  display:block;
  width:42px;
  height:2px;
  margin:8px 0 16px;
  background:var(--colorSecondary500);
}

.colSecondary500{ color:var(--colorSecondary500); }
.colNeutral000{ color:var(--colorNeutral000) !important; }

.fontPlayfairItalic{
  font-family:var(--fontSecondary);
  font-style:italic;
}

.fontSemiBold{
  font-weight:600;
}

/* =========================
   HEADER / TOPBAR
========================= */

.topbar{
  width:100%;
  height:40px;
  margin:0;
  pointer-events:auto;
  background:rgba(0, 3, 7, 0.94);
  border-radius:0;
  border-top:2px solid var(--colorSecondary500);
  transition:.35s ease;
}

.topbar,
.menu{
  pointer-events:auto;
}

.topbar__inner{
  height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.topbar__left,
.topbar__right{
  display:flex;
  align-items:center;
  gap:8px;
}

.topbar__inner{
  height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.topbar__left{
  display:flex;
  align-items:center;
  gap:0;
}

.topbar-pill{
  width:42px;
  height:38px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  color:var(--colorNeutral000);
  background:transparent;
  border-right:1px solid rgba(255,255,255,.06);
  overflow:hidden;
}

.topbar-pill i{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-width:18px;
  font-size:9px;
  color:var(--colorSecondary500);
}

.topbar-pill span{
  opacity:0;
  width:0;
  overflow:hidden;
  white-space:nowrap;
  transition:.25s ease;
}

.topbar-pill:hover{
  width:auto;
  min-width:120px;
  padding:0 12px;
}

.topbar-pill:hover span{
  opacity:1;
  width:auto;
}

.topbar-pill:first-child{
  border-left:1px solid rgba(255,255,255,.08);
}

.topbar-pill i{
  min-width:16px;
  font-size:14px;
  color:var(--colorSecondary500);
  line-height:1;
}

.topbar-pill span{
  opacity:0;
  transform:translateX(-6px);
  transition:.22s ease;
}

.topbar-pill:hover{
  width:130px;
  color:#fff;
  background:rgba(177,144,80,.12);
}

.topbar-pill:hover span{
  opacity:1;
  transform:translateX(0);
}

.topbar-pill--mail:hover{
  width:220px;
}

.topbar-pill--phone:hover{
  width:170px;
}

.topbar-platform{
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 22px;

  background:linear-gradient(135deg,#F7C35F,#B19050);
  color:#061A38;
  font-size:13px;
  font-weight:800;
  text-decoration:none;
}

.topbar-platform{
  height:40px;
  min-width:188px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 18px;
  color:var(--colorPrimary900);
  background:linear-gradient(135deg,#F7C35F,#B19050);

  font-size:12px;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;

  transition:.3s ease;
}

.topbar-platform:hover{
  color:var(--colorPrimary900);
  filter:brightness(1.08);
}

.topbar-platform i{
  font-size:13px;
}
.topbar-lang{
  width:40px;
  height:40px;
  border:0;
  border-left:1px solid rgba(255,255,255,.08);
  border-right:1px solid rgba(255,255,255,.08);
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  cursor:pointer;
}

.topbar-lang:hover{
  background:rgba(177,144,80,.12);
}
/* =========================
   05. HEADER
========================= */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;

  display:flex;
  flex-direction:column;
  align-items:center;

  pointer-events:none;
  transition:.35s ease;
}

.menu{
  width:100%;
  min-height:150px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 48px 0;
  margin:0;
  pointer-events:auto;
  backdrop-filter:blur(18px);
  border-radius:0;
  transition:.35s ease;
}

.logo{
  display:flex;
  justify-content:center;
  align-items:center;
  color:white;
  text-decoration:none;
}

.logo-icon{
  width:360px;
  height:auto;
  max-height:92px;
  object-fit:contain;
  transition:.35s ease;
}

.header.is-shrink .menu{
  min-height:74px;
  flex-direction:row;
  justify-content:space-between;
  padding:0 48px;
}

.header.is-shrink .logo-icon{
  width:180px;
  max-height:54px;
}

.header.is-shrink .nav{
  width:auto;
  flex:1;
  justify-content:center;
}

.header.is-shrink .menu-item{
  padding:24px 0;
}

.logo-text{
  display:none;
}

.header.is-shrink .logo-text{
  opacity:0;
  width:0;
  overflow:hidden;
}

.nav{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 92px;
}

.menu-dropdown{
  position:relative;
}

.menu-item{
  position:relative;
  padding:12px 0 16px;
  letter-spacing: 1.2px;
}

.menu-item::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:2px;
  background:linear-gradient(
    90deg,
    transparent,
    var(--colorSecondary500),
    #ffe6a3,
    var(--colorSecondary500),
    transparent
  );
  box-shadow:0 0 12px rgba(177,144,80,.75);
  transform:translateX(-50%);
  transition:width .35s ease;
}

.menu-item:hover::after,
.menu-item.active::after{
  width:100%;
}

.menu-item:hover{
  color:var(--colorSecondary100);
}

.menu-item:hover::after{
  width:100%;
}

/* =========================
   PREMIUM DROPDOWN
========================= */

.submenu{
  position:absolute;
  top:calc(100% + 17px);
  left:50%;
  min-width:260px;
  padding:12px;
  background:rgba(6,26,56,.96);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:
    0 25px 60px rgba(0,0,0,.35);
  transform:translate(-50%,10px);
  opacity:0;
  pointer-events:none;
  transition:.3s ease;
}

.submenu::before{
  content:"";
  position:absolute;
  top:calc(100% + 28px);
  left:20px;
  width:60px;
  height:2px;
  background:var(--colorSecondary500);
}

.submenu a{
  display:flex;
  align-items:center;
  padding:14px 16px;
  color:#fff;
  font-size:15px;
  font-weight:500;
  border-left:2px solid transparent;
  transition:.25s ease;
}

.submenu a:hover{
  background:rgba(255,255,255,.05);
  border-left-color:var(--colorSecondary500);
  color:var(--colorSecondary100);
  transform:translateX(6px);
}

.menu-dropdown:hover .submenu{
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%,0);
}

.translate-btn{
  width:54px;
  height:54px;
  flex-shrink:0;
  border:0;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:white;
  color:var(--colorPrimary900);
  font-size:22px;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  transition:.3s ease;
}

.translate-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}

.translate-btn span:last-child{
  display:none;
}

/* theme light */

.header[data-nav-theme="light"] .menu{
  background:rgba(255,255,255,.88);
  border-color:rgba(11,43,92,.08);
  box-shadow:0 18px 50px rgba(11,43,92,.10);
}

.header[data-nav-theme="light"] .logo,
.header[data-nav-theme="light"] .menu-item{
  color:var(--colorPrimary900);
}

.header[data-nav-theme="light"] .hamburger span{
  background:var(--colorPrimary900);
}
/* =========================
   DROPDOWN LIGHT
========================= */

.header[data-nav-theme="light"] .submenu{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(11,43,92,.08);
  box-shadow:0 20px 45px rgba(11,43,92,.12);
  top:calc(100% + 23px);
}

.header[data-nav-theme="light"] .submenu::before{
  background:rgba(177,144,80,.55);
}

.header[data-nav-theme="light"] .submenu a{
  color:var(--colorPrimary900);
}

.header[data-nav-theme="light"] .submenu a:hover{
  background:rgba(177,144,80,.08);
  color:var(--colorSecondary900);
  border-left-color:var(--colorSecondary500);
}

/* =========================
   HAMBURGER
========================= */

.hamburger{
  display:none;
  width:48px;
  height:48px;
  flex-shrink:0;
  position:relative;
  border:0;
  background:transparent;
  cursor:pointer;
}

.hamburger span{
  position:absolute;
  left:10px;
  right:10px;
  height:2px;
  border-radius:2px;
  background:white;
  transition:.3s ease;
}

.hamburger span:first-child{
  top:18px;
}

.hamburger span:last-child{
  bottom:18px;
}

.hamburger.is-active span:first-child{
  top:23px;
  transform:rotate(45deg);
}

.hamburger.is-active span:last-child{
  bottom:23px;
  transform:rotate(-45deg);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:950;
  padding:120px 24px 40px;
  background:
    radial-gradient(circle at 20% 10%, rgba(30,120,253,.18), transparent 30%),
    linear-gradient(135deg,#041225 0%, #0B2B5C 100%);
  color:white;
  transform:translateY(-100%);
  overflow-y:auto;
}

.mobile-links{
  width:min(100%, 520px);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.mobile-links a,
.mobile-links summary{
  display:block;
  padding:18px 0;
  color:white;
  font-size:28px;
  font-family:var(--fontSecondary);
  line-height:1;
  text-decoration:none;
  cursor:pointer;
}

.mobile-links details{
  border-bottom:1px solid rgba(255,255,255,.12);
}

.mobile-links details a{
  padding:10px 0 10px 16px;
  font-family:var(--fontPrimary);
  font-size:16px;
  color:rgba(255,255,255,.76);
}

.mobile-links summary{
  list-style:none;
}

.mobile-links summary::-webkit-details-marker{
  display:none;
}

.mobile-links summary::after{
  content:"+";
  float:right;
  color:var(--colorSecondary500);
}

.mobile-links details[open] summary::after{
  content:"–";
}

.mobile-translate{
  width:auto;
  height:auto;
  margin-top:24px;
  padding:16px 22px;
  border-radius:999px;
  font-size:16px;
  font-weight:700;
  background:var(--colorSecondary500);
  color:var(--colorPrimary900);
}

/* =========================
   RESPONSIVE HEADER
========================= */

@media(max-width:1200px){
  .nav{
    gap: 50px;
  }

  .menu-item{
    font-size:14px;
  }
}

@media(max-width:1024px){
  .menu{
    min-height:86px;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:0 44px;
  }

  .logo{
    justify-content:flex-start;
  }

  .nav{
    display:none;
  }

  .hamburger{
    display:block;
    margin-left:auto;
  }

  .menu{
    min-height:76px;
  }

  .logo-icon{
    width:210px;
    max-height:62px;
  }

}

@media(max-width:620px){
  
  .menu{
    width:100%;
    min-height:78px;
    padding:0 28px;
  }

  .logo-icon{
    width:190px;
    max-height:58px;
  }

  .translate-btn{
    width:46px;
    height:46px;
  }
  .logo-text{
    display:none;
  }

  .hamburger{
    width:44px;
    height:44px;
  }

  .mobile-links a,
  .mobile-links summary{
    font-size:24px;
  }
}

/* =========================
   06. HERO
========================= */

.hero{
  min-height:100vh - 128px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    radial-gradient(circle at center, rgba(245,158,11,.16), transparent 34%),
    radial-gradient(circle at 50% 55%, rgba(255,255,255,.045), transparent 28%),
    linear-gradient(105deg,#0B2B5C 0%,#0A254D 43%,#081F3F 100%);
}

.mundoCanvas,
.mundoOverlay,
.mundoGlobeGlow,
.mundoCursorGlow{
  position:absolute;
  pointer-events:none;
}

.mundoCanvas{
  inset:0;
  z-index:1;
}

.mundoCanvas canvas{
  width:100%;
  height:100%;
  display:block;
}

.mundoOverlay{
  inset:0;
  z-index:2;
  background:
    radial-gradient(circle at center, rgba(11,43,92,.05), rgba(0,0,0,.38) 70%),
    linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.58));
}

.mundoGlobeGlow{
  width:720px;
  height:720px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(251,191,36,.25), rgba(11,43,92,.12) 60%, transparent 75%);
  filter:blur(90px);
  z-index:0;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
}

.mundoCursorGlow{
  width:420px;
  height:420px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(251,191,36,.18), transparent 67%);
  transform:translate(-50%, -50%);
  z-index:2;
  filter:blur(22px);
  opacity:.8;
}

.mundoContent{
  position:relative;
  z-index:3;
  max-width:940px;
  margin-inline:auto;
  text-align:center;
}

.hero h1{
  font-family:var(--fontSecondary);
  font-size:clamp(42px, 5.2vw, 78px);
  line-height:1.03;
  color:white;
}

.hero p{
  margin-top:20px;
  color:rgba(255,255,255,.75);
}

.mundoNext{
  position:absolute;
  left:50%;
  top:40%;
  transform:translate(-50%, 60px);
  z-index:4;
  width:min(840px, calc(100% - 40px));
  text-align:center;
  opacity:0;
  pointer-events:none;
}

.mundoNext h2{
  font-family:var(--fontSecondary);
  font-size:clamp(34px, 5vw, 72px);
  line-height:1;
  letter-spacing:-.04em;
  color:white;
}


/* =========================
   07. PROGRAM SEARCH
========================= */

.programSearch{
  width:100%;
  max-width:620px;
  margin:34px auto 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

.programSearch-input{
  width:100%;
  display:flex;
  align-items:center;
  background:rgba(255,255,255,.12);
  border-radius:60px;
  padding:6px;
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(20px);
  transition:.3s ease;
}

.programSearch-input:hover{
  border-color:rgba(251,191,36,.45);
  box-shadow:0 14px 34px rgba(251,191,36,.18);
}

.programSearch-input input{
  flex:1;
  border:0;
  outline:0;
  padding:14px 18px;
  background:transparent;
  color:white;
  text-align:center;
}

.programSearch-input input::placeholder{
  color:rgba(255,255,255,.68);
}

.programSearch-input button{
  border:0;
  padding:12px 22px;
  border-radius:40px;
  background:var(--colorSecondary500);
  color:var(--colorPrimary900);
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
}

.programSearch-input button:hover{
  background:var(--colorSecondary100);
  transform:scale(1.04);
}

.programSearch-tags{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.programSearch-tags span{
  padding:8px 14px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.78);
  font-size:13px;
  cursor:pointer;
  transition:.3s ease;
}

.programSearch-tags span:hover{
  background:rgba(251,191,36,.12);
  color:var(--colorSecondary100);
  transform:translateY(-2px);
}


/* =========================
   08. ACADEMIC PROGRAMS
========================= */

.academicPrograms-bg{
  position:absolute;
  top:-140px;
  right:-100px;
  width:620px;
  height:620px;
  border-radius:50%;
  background:repeating-radial-gradient(circle, rgba(177,144,80,.16) 0 1px, transparent 1px 14px);
  opacity:.75;
  pointer-events:none;
}

.sectionHeader{
  position:relative;
  margin-bottom:44px;
}

.sectionHeader .sectionLabel{
  position:absolute;
  top:0;
  right:0;
}

.sectionHeader h2{
  font-family:var(--fontSecondary);
  font-size:clamp(42px,5.6vw,82px);
  line-height:.98;
  letter-spacing:-.05em;
  color:var(--colorPrimary900);
}

.sectionHeader h2 span{
  color:var(--colorSecondary500);
  font-style:italic;
}

.sectionHeader p{
  max-width:690px;
  margin-top:26px;
  color:var(--colorNeutral700);
  line-height:1.7;
}

.academicGrid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  grid-auto-rows:minmax(230px, auto);
  border:1px solid rgba(11,43,92,.10);
  border-radius:24px;
  overflow:hidden;
  background:rgba(255,255,255,.62);
  backdrop-filter:blur(18px);
  box-shadow:0 24px 70px rgba(11,43,92,.08);
  z-index:2;
}

.academicCard,
.academicFeatures{
  position:relative;
  padding:32px;
  background:rgba(255,255,255,.68);
  border-right:1px solid rgba(11,43,92,.10);
  border-bottom:1px solid rgba(11,43,92,.10);
}

.academicCard{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:.4s ease;
}

.academicCard:hover{
  background:#fff;
  transform:translateY(-4px);
  box-shadow:0 24px 50px rgba(177,144,80,.16);
}

.academicCard-large{
  grid-column:span 2;
  grid-row:span 2;
  background:
    radial-gradient(circle at 78% 44%, rgba(177,144,80,.13), transparent 28%),
    rgba(255,255,255,.74);
}

.academicType{
  display:block;
  margin-bottom:28px;
  font-family:var(--fontAccent);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:10px;
  font-weight:700;
  color:var(--colorSecondary500);
}

.academicCard h3{
  font-family:var(--fontSecondary);
  font-size:clamp(24px,2vw,32px);
  line-height:1.02;
  color:var(--colorPrimary900);
}

.academicCard-large h3{
  font-size:clamp(32px,3vw,48px);
}

.academicCard h3::after{
  content:"";
  display:block;
  width:38px;
  height:1px;
  margin-top:24px;
  background:var(--colorSecondary500);
}

.academicCard p{
  margin-top:28px;
  color:var(--colorNeutral700);
  font-size:14px;
  line-height:1.7;
}

.academicCard-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding-top:22px;
  border-top:1px solid rgba(11,43,92,.10);
  color:var(--colorNeutral700);
  font-family:var(--fontAccent);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:11px;
}

.academicCard-bottom a{
  color:var(--colorSecondary500);
  font-size:24px;
  transition:.3s ease;
}

.academicCard:hover .academicCard-bottom a{
  transform:translateX(6px);
  color:var(--colorSecondary900);
}

.academicFeatures{
  grid-column:span 2;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  padding:34px 24px;
}

.academicFeatures div{
  text-align:center;
  padding:0 18px;
  border-right:1px solid rgba(11,43,92,.10);
}

.academicFeatures div:last-child{
  border-right:0;
}

.academicFeatures span{
  display:block;
  margin-bottom:14px;
  color:var(--colorSecondary500);
  font-size:42px;
}

.academicFeatures h4{
  font-family:var(--fontSecondary);
  color:var(--colorPrimary900);
  font-size:20px;
  line-height:1.05;
}

.academicFeatures p{
  color:var(--colorNeutral700);
  font-size:13px;
  line-height:1.5;
}

/* =========================
   09. BRAND SECTION DARK
========================= */
.brandDecor{
  position:absolute;
  pointer-events:none;
  opacity:.8;
}

.brandDecor-top{
  top:-190px;
  right:-170px;
  width:620px;
  aspect-ratio:1;
  border-radius:50%;
  background:repeating-radial-gradient(circle, rgba(177,144,80,.42) 0 1px, transparent 1px 14px);
  mask-image:radial-gradient(circle, #000 0%, transparent 72%);
}

.brandDecor-bottom{
  left:42%;
  bottom:-180px;
  width:760px;
  height:320px;
  background:repeating-radial-gradient(ellipse at center, rgba(30,120,253,.55) 0 1px, transparent 1px 13px);
  transform:rotate(-3deg);
  mask-image:linear-gradient(to top,#000,transparent 78%);
}

.brandCardsBlock,
.brandTextBlock{
  padding-top:40px;
  position:relative;
  z-index:2;
}

.brandCardGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  align-content:start;
}

.brandInfoCard{
  position:relative;
  overflow:hidden;
  padding:18px;
  background:
    radial-gradient(circle at 50% 8%, rgba(30,120,253,.24), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border:1px solid rgba(136,169,219,.22);
  box-shadow:inset 0 0 42px rgba(30,120,253,.08);
  transition:.45s ease;
  min-height:270px;
}

.brandInfoCard:hover{
  transform:translateY(-6px);
  border-color:rgba(177,144,80,.5);
  box-shadow:
    0 24px 60px rgba(0,0,0,.24),
    inset 0 0 60px rgba(30,120,253,.16);
}

.brandIconOrb{
  width:72px;
  aspect-ratio:1;
  margin:0 auto 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(136,169,219,.58), transparent 24%),
    radial-gradient(circle at 50% 90%, rgba(30,120,253,.82), transparent 25%),
    linear-gradient(145deg,#0B2B5C,#031022);
  box-shadow:
    inset 14px 18px 26px rgba(255,255,255,.06),
    inset -18px -22px 34px rgba(0,0,0,.45),
    0 18px 34px rgba(0,0,0,.34),
    0 16px 30px rgba(30,120,253,.22);
}

.brandIconOrb i{
  color:var(--colorSecondary500);
  font-size:28px;
}

.brandNumber{
  display:block;
  font-family:var(--fontSecondary);
  font-size:clamp(28px,2.5vw,34px);
  color:var(--colorSecondary500);
}

.brandInfoCard h3,
.brandTextBlock h2{
  font-family:var(--fontSecondary);
  font-size:clamp(38px,4.2vw,66px);
  color:white;
}

.brandInfoCard h3{
  font-size:clamp(20px,1.5vw,26px);
  line-height:1.05;
  min-height:40px;
  margin-bottom:10px;
}

.brandInfoCard p{
  color:rgba(255,255,255,.82);
  font-size:13px;
  line-height:1.45;
  margin-top:12px;
}

.brandTextBlock{
  max-width:480px;
  margin-left:auto;
}

.brandTextBlock h2{
  font-size:clamp(42px,5vw,76px);
  line-height:1.04;
  letter-spacing:-.045em;
}

.brandTextBlock h2 span{
  color:var(--colorSecondary500);
  font-style:italic;
}

.brandTextBlock p{
  margin-top:30px;
  color:rgba(255,255,255,.78);
  font-size:clamp(15px,1.25vw,19px);
  line-height:1.75;
}

.brandCta{
  margin-top:clamp(32px,5vw,56px);
  width:min(460px,100%);
  min-height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  border:1px solid var(--colorSecondary500);
  border-radius:8px;
  color:var(--colorSecondary500);
  font-size:12px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  transition:.35s ease;
}

.brandCta span{
  font-size:32px;
  transition:.35s ease;
}

.brandCta:hover{
  background:var(--colorSecondary500);
  color:var(--colorPrimary900);
  transform:translateY(-4px);
  box-shadow:0 24px 60px rgba(177,144,80,.24);
}

.brandCta:hover span{
  transform:translateX(-8px);
}


/* =========================
   10. PROJECTS TEMPORAL
========================= */

.projects{
  background:#fff;
}

.projects h2{
  font-family:var(--fontAccent);
  font-size:48px;
  margin-bottom:60px;
  color:var(--colorPrimary900);
}

.projectCard{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  min-height:420px;
  background:#fff;
  box-shadow:var(--shadowSoft);
}

.projectCard img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.08);
  transition:.6s ease;
}

.projectCard:hover img{
  transform:scale(1.18);
}

.projectOverlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:30px;
  background:linear-gradient(to top,rgba(11,43,92,.72),transparent);
  color:white;
}

.projectLine{
  width:0;
  height:2px;
  background:var(--colorSecondary100);
  margin-top:10px;
  transition:.4s ease;
}

.projectCard:hover .projectLine{
  width:100%;
}

/* =========================
   11. TimeLine
========================= */

.trustTimeline{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  padding:40px 0 0;
}

/* línea vertical */
.trustTimeline::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:1.5px;
  height:185px;
  background:rgba(177,144,80,.45);
}

/* línea vertical inferior */
.trustTimeline::after{
  content:"";
  position:absolute;
  left:55%;
  top:185px;
  width:1.5px;
  height:580px;
  background:rgba(177,144,80,.45);
}

.trustItem{
  position:relative;
  width:50%;
  padding:0 10px 50px;
}

.trustItem-left{
  margin-right:auto;
  text-align:left;
}

.trustItem-left::after{
  content:"";
  position:absolute;
  top:145px;
  left: 23%;
  width:780px;
  height:1.5px;
  background:rgba(177,144,80,.45);
}

.trustItem-left .trustContent{
  margin-left:auto;
  max-width:420px;
}

.trustIcon{
  width:86px;
  height:86px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:16px;

  background:
    linear-gradient(
      135deg,
      rgba(11,43,92,.08),
      rgba(212,175,55,.12)
    );

  border:1px solid rgba(212,175,55,.18);

  backdrop-filter:blur(10px);
}

.trustIcon i{
  font-size:2rem;
  color:#0B2B5C;
}

.trustRow{
  display:flex;
  align-items:flex-start;
  gap:18px;
  position:relative;
}

.trustContent{
  max-width:320px;
  padding-top:4px;
}

.trustContent h3{
  font-size:28px;
  color:var(--colorPrimary900);
  font-family:var(--fontSecondary);
}

.trustContent p{
  margin-top:14px;
  color:var(--colorNeutral700);
  line-height:1.7;
  padding-bottom:28px;
}

.trustSection{
  position:relative;
  padding-bottom:0 !important;
}

.trustHeader{
  max-width:760px;
  margin:0 auto 80px;
}

.trustHeader h2{
  font-family:var(--fontSecondary);
  font-size:clamp(38px,4.5vw,64px);
  line-height:1.05;
  letter-spacing:-.04em;
  color:var(--colorPrimary900);
}

.trustHeader h2 span{
  display:block;
  color:var(--colorSecondary500);
  font-style:italic;
}

.trustHeader p{
  max-width:640px;
  margin:26px auto 0;
  color:var(--colorNeutral700);
  font-size:16px;
  line-height:1.8;
}

/* ITEMS A LA DERECHA */
.trustItem-right{
  margin-left:auto;
  padding-top:0px;
  padding-left:60px;
}

.trustItem-right .trustRow{
  justify-content:flex-start;
  align-items:center;
  transform:translateY(-44px);
}

.trustItem-right .trustContent{
  text-align:right;
  max-width:320px;
}

.trustItem-right .trustIcon{
  margin-left:26px;
}

.trustItem-right .trustContent h3{
  max-width:260px;
  margin-left:auto;
}

.trustItem-right .trustContent p{
  max-width:260px;
  margin-left:auto;
}


/* línea horizontal derecha */
.trustItem-right::after{
  content:"";
  position:absolute;
  top:150px;
  left:56px;
  width:290px;
  height:2px;
  background:rgba(177,144,80,.45);
}

/* segunda línea horizontal izquierda */
.trustItem-left-bottom::after{
  content:"";
  position:absolute;
  top:-70px;
  left:10%;
  width:552px;
  height:2px;
  background:rgba(177,144,80,.45);
}

.trustItem-left-bottom{
  margin-right:auto;
  padding-top:0px;
  transform:translateY(-140px);
}

.trustItem-left-bottom .trustContent{
  margin-left:20px;
  max-width:300px;
}

.trustItem-left-bottom .trustRow{
  transform:translateX(70px);
}

/* CUARTO ITEM DERECHA */

.trustItem-right-bottom{
  margin-left:auto;
  padding-left:60px;
  transform:translateY(-210px);
}

.trustItem-right-bottom .trustRow{
  justify-content:flex-start;
  align-items:center;
  transform:translateX(55px);
}

.trustItem-right-bottom .trustContent{
  text-align:right;
  max-width:280px;
  padding-top:2px;
}

.trustItem-right-bottom .trustContent h3{
  max-width:240px;
  margin-left:auto;
}

.trustItem-right-bottom .trustContent p{
  max-width:240px;
  margin-left:auto;
}

.trustItem-right-bottom .trustIcon{
  margin-left:24px;
}

/* línea horizontal superior */
.trustItem-right-bottom::after{
  content:"";
  position:absolute;
  top:-58px;
  left:56px;
  width:420px;
  height:2px;
  background:rgba(177,144,80,.45);
}

/* ÚLTIMO ITEM IZQUIERDO */

.trustItem-left-final{
  margin-right:auto;
  transform:translateY(-320px);
}

.trustItem-left-final .trustRow{
  align-items:flex-start;
  gap:18px;
  transform:translateX(170px);
}

.trustItem-left-final .trustContent{
  max-width:300px;
  padding-top:6px;
}

/* línea horizontal superior */
.trustItem-left-final::after{
  content:"";
  position:absolute;
  top:-60px;
  left:30%;
  width:440px;
  height:2px;
  background:rgba(177,144,80,.45);
}

/* =========================
   LANGUAGE PANEL
========================= */

.panel-overlay{
  position:fixed;
  inset:0;
  background:rgba(4,18,37,.55);
  opacity:0;
  pointer-events:none;
  z-index:1200;
  transition:.3s ease;
}

.panel-overlay.is-open{
  opacity:1;
  pointer-events:auto;
}

.language-panel{
  position:fixed;
  top:0;
  right:0;
  width:min(520px,100%);
  height:100vh;
  z-index:1300;
  background:#fff;
  color:var(--colorPrimary900);
  padding:28px 22px;
  overflow-y:auto;
  transform:translateX(100%);
  transition:.45s cubic-bezier(.22,1,.36,1);
  box-shadow:-30px 0 80px rgba(0,0,0,.22);
}

.language-panel.is-open{
  transform:translateX(0);
}

/* HEADER */

.language-panel-header{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:28px;
}

.language-back{
  width:38px;
  height:38px;
  border:0;
  background:transparent;
  color:var(--colorPrimary400);
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.language-panel-header h3{
  margin:0;
  color:var(--colorPrimary900);
  font-size:30px;
  font-weight:800;
}

/* OPTION */

.language-option{
  width:100%;
  display:flex;
  align-items:center;
  gap:18px;
  padding:22px 18px;
  border:2px solid var(--colorPrimary400);
  border-radius:12px;
  background:#fff;
  color:var(--colorPrimary900);
  text-align:left;
  margin-bottom:24px;
  cursor:pointer;
}

.language-option small{
  display:block;
  color:var(--colorNeutral700);
  font-size:18px;
}

.language-option strong{
  display:block;
  color:var(--colorPrimary900);
  font-size:22px;
}

.option-flag{
  font-size:24px;
}

.option-arrow{
  margin-left:auto;
  color:var(--colorPrimary400);
  font-size:22px;
}

/* SEARCH */

.language-search{
  margin-bottom:28px;
}

.language-search input{
  width:100%;
  height:64px;
  border:1px solid rgba(11,43,92,.12);
  border-radius:18px;
  padding:0 20px;
  font-size:20px;
  outline:none;
}

.language-search input:focus{
  border-color:var(--colorPrimary400);
  box-shadow:0 0 0 4px rgba(30,120,253,.12);
}

/* TITLE */

.language-list-title{
  margin:0 0 20px;
  font-family:var(--fontAccent);
  text-transform:uppercase;
  letter-spacing:.22em;
  color:var(--colorNeutral700);
  font-size:14px;
}

/* LIST */

.language-list{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.language-link{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
  padding:12px 0;
  color:var(--colorPrimary900);
  font-size:22px;
  text-decoration:none;
  transition:.25s ease;
}

.language-link:hover{
  color:var(--colorPrimary400);
  transform:translateX(6px);
}

/* MORE */

.more-languages{
  margin-top:8px;
}

.more-languages summary{
  margin-top:24px;
  list-style:none;
  color:var(--colorPrimary400);
  font-size:22px;
  font-weight:800;
  cursor:pointer;
}

.more-languages summary::-webkit-details-marker{
  display:none;
}

.more-languages .language-link{
  padding-left:12px;
}

/* =========================
   13. ANIMATIONS
========================= */

.revealUp{
  opacity:1;
  transform:translateY(0);
}

.js .revealUp{
  opacity:0;
  transform:translateY(36px);
  transition:
    opacity .85s ease,
    transform .85s cubic-bezier(.22,1,.36,1);
}

.js .revealUp.is-visible{
  opacity:1;
  transform:translateY(0);
}

.delay-1{ transition-delay:.08s; }
.delay-2{ transition-delay:.16s; }
.delay-3{ transition-delay:.24s; }

/* =========================
   14. RESPONSIVE
========================= */

@media(max-width:991px){
  body{
    cursor:auto;
  }

  .cursor{
    display:none;
  }

  .brandTextBlock{
    max-width:100%;
    margin-left:0;
  }

  .academicGrid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .academicCard-large,
  .academicFeatures{
    grid-column:span 2;
  }

  .academicFeatures{
    grid-template-columns:repeat(2,1fr);
    row-gap:30px;
  }
}

@media(max-width:680px){
  .section{
    padding:80px 0;
  }

  .hero{
    padding:120px 0 80px;
  }

  .hero h1{
    font-size:clamp(34px,9vw,48px);
  }

  .programSearch-input{
    flex-direction:column;
    border-radius:28px;
    padding:10px;
  }

  .programSearch-input input,
  .programSearch-input button{
    width:100%;
  }

  .sectionHeader .sectionLabel{
    position:relative;
    margin-bottom:18px;
  }

  .academicGrid,
  .brandCardGrid{
    grid-template-columns:1fr;
  }

  .academicCard,
  .academicCard-large,
  .academicFeatures{
    grid-column:span 1;
  }

  .academicFeatures{
    grid-template-columns:1fr;
  }

  .academicFeatures div{
    border-right:0;
    border-bottom:1px solid rgba(11,43,92,.10);
    padding:24px 0;
  }

  .academicFeatures div:last-child{
    border-bottom:0;
  }

  .brandCta{
    width:100%;
    gap:20px;
    font-size:11px;
  }
}

@media(max-width:768px){
  .topbar{
    height:38px;
  }

  .topbar__inner{
    height:36px;
  }

  .topbar__left{
    gap:5px;
  }

  .topbar-pill,
  .topbar-pill:hover{
    width:30px;
  }

  .topbar-pill span{
    display:none;
  }

  .topbar-platform{
    min-width:auto;
    width:42px;
    padding:0;
  }

  .topbar-platform span{
    display:none;
  }
}


/* =========================
   FOOTER UNIPOL
========================= */

.footerUnipol{
  position:relative;
  overflow:hidden;
  padding:clamp(60px,6vw,86px) 0 44px;
  background:
    radial-gradient(circle at 18% 22%, rgba(30,120,253,.16), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(177,144,80,.08), transparent 28%),
    linear-gradient(135deg,#041225 0%, #061A38 44%, #0B2B5C 100%);
  color:#fff;
  z-index:2;
}

.footerUnipol *{
  box-sizing:border-box;
}

.footerUnipol-main{
  display:grid;
  grid-template-columns:minmax(260px,380px) minmax(320px,520px);
  justify-content:center;
  align-items:start;
  gap:clamp(80px,12vw,220px);
}

.footerUnipol-logo{
  display:inline-flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:28px;
  text-decoration:none;
}

.footerUnipol-logo span{
  color:#fff;
  font-size:clamp(34px,3vw,44px);
  line-height:.9;
  letter-spacing:.16em;
  font-weight:300;
}

.footerUnipol-logo small{
  color:var(--colorSecondary500);
  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.footerUnipol .goldRule{
  width:42px;
  height:2px;
  margin:10px 0 18px;
  background:var(--colorSecondary500);
}

.footerUnipol-brand p{
  margin:0;
  color:rgba(255,255,255,.92);
  font-size:clamp(19px,1.6vw,23px);
  line-height:1.35;
}

.footerUnipol-brand strong{
  color:var(--colorSecondary500);
}

.footerUnipol-contactBox h4{
  margin:0 0 12px;
  color:#fff;
  font-size:clamp(22px,2vw,26px);
}

.footerUnipol-contactItems{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:26px;
}

.footerUnipol-contactItems a{
  display:flex;
  align-items:center;
  gap:7px;
  max-width:100%;
  color:#fff;
  font-size:15px;
  line-height:1.25;
  text-decoration:none;
  transition:.3s ease;
}

.footerUnipol-contactItems a:hover{
  color:var(--colorSecondary100);
  transform:translateX(4px);
}

.footerUnipol-contactItems i{
  width:16px;
  flex:0 0 16px;
  text-align:center;
  color:#fff;
  font-size:15px;
}

.footerUnipol-contactItems span{
  overflow-wrap:anywhere;
}

.footerDivider{
  display:none;
}

.footerUnipol-social{
  display:flex;
  align-items:center;
  gap:0;
  margin-top:4px;
}

.footerUnipol-social a{
  width:56px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:24px;
  border-right:1px solid rgba(255,255,255,.28);
  transition:.3s ease;
}

.footerUnipol-social a:first-child{
  width:48px;
  justify-content:flex-start;
}

.footerUnipol-social a:last-child{
  border-right:0;
}

.footerUnipol-social a:hover{
  color:var(--colorSecondary500);
  transform:translateY(-3px);
}

/* =========================
   FOOTER RESPONSIVE
========================= */

@media(max-width:991px){

  .footerUnipol{
    padding:60px 0 44px;
    text-align:center;
  }

  .footerUnipol-main{
    grid-template-columns:1fr;
    gap:42px;
  }

  .footerUnipol-logo{
    align-items:center;
  }

  .footerUnipol .goldRule{
    margin-left:auto;
    margin-right:auto;
  }

  .footerUnipol-contactItems{
    align-items:center;
  }

  .footerUnipol-contactItems a{
    justify-content:center;
  }

  .footerUnipol-social{
    justify-content:center;
  }

  .footerUnipol-social a:first-child{
    justify-content:center;
    width:56px;
  }
}

@media(max-width:575px){

  .footerUnipol{
    padding:48px 0 38px;
  }

  .footerUnipol .container{
    padding-left:18px;
    padding-right:18px;
  }

  .footerUnipol-logo span{
    font-size:34px;
    letter-spacing:.15em;
  }

  .footerUnipol-logo small{
    font-size:12px;
    line-height:1.3;
  }

  .footerUnipol-brand p{
    font-size:18px;
  }

  .footerUnipol-contactBox h4{
    font-size:23px;
  }

  .footerUnipol-contactItems a{
    font-size:14px;
    line-height:1.35;
  }

  .footerUnipol-social a{
    width:46px;
    min-width:46px;
    height:34px;
    font-size:21px;
  }

  .footerUnipol-social a:first-child{
    width:46px;
  }
}
