/* -------------------------
   VARIABLES Y RESET
   ------------------------- */
:root {
  --usb-black: #000000;
  --usb-yellow: #ffcc00;
  --usb-blue: #0099cc;
  --usb-dark-gray: #1a1a1a;
  --muted: #666666;
  --white: #ffffff;
  --light-gray: #f0f2f5;
  --maxw: 1600px;
  --font-main: "Inter", sans-serif;
  --font-serif: "Playfair Display", serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--usb-yellow);
  color: #333;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

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

/* -------------------------
   HEADER & NAV
   ------------------------- */
.top-header {
  background: var(--white);
  padding: 15px 0;
  position: relative;
  z-index: 101;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo-img {
  width: 400px;
  height: auto;
}

.top-right-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.audience-menu {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
}

.audience-label {
  font-weight: 700;
  color: #777;
}

.audience-links {
  display: flex;
  gap: 15px;
}

.audience-links a {
  font-weight: 500;
  color: var(--usb-black);
  transition: color 0.2s ease;
}

.audience-links a:hover {
  color: var(--usb-yellow);
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--usb-black);
  transition: transform 0.2s ease, color 0.2s;
}

.search-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.search-btn:hover {
  color: var(--usb-yellow);
  transform: scale(1.1);
}

/* NAV BAR */
.nav-bar {
  background: var(--usb-black);
  color: white;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  z-index: 100;
}

.nav-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-link {
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  color: white;
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
}

/* Flecha del menú */
.arrow-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--usb-yellow);
  border-bottom: 2px solid var(--usb-yellow);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.3s ease;
}

.nav-item:hover .arrow-icon {
  transform: rotate(225deg);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--usb-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-link::after {
  transform: scaleX(1);
}

/* MEGA MENU (Submenús) */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 900px;
  background: var(--light-gray);
  color: #333;
  padding: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-top: none;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 90;
  display: flex;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  overflow: hidden;
}

.mega-menu-wide {
    width: 1100px;
}

.mm-main-content {
    display: flex;
    flex: 3;
    padding: 30px;
    background: #fff;
    gap: 30px;
}

.mm-side-content {
    flex: 1.2;
    background: #f8f9fa; 
    padding: 30px;
    border-left: 1px solid #eee;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mm-column h4, .mm-side-content h4 {
  color: #718096;
  font-family: var(--font-serif);
  font-size: 14px;
  border-bottom: 1px solid #edf2f7;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 800;
  text-transform: uppercase;
  padding-bottom: 8px;
}

.mm-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mm-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #444;
  padding: 5px 0;
  transition: all 0.2s;
}

.mm-links a i {
    width: 24px;
    color: #a0aec0; 
    font-size: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

.mm-links a:hover {
  color: var(--usb-blue);
  transform: translateX(5px);
  text-decoration: none;
  background: rgba(255, 204, 0, 0.05);
  padding-left: 8px;
}

.mm-links a:hover i {
    color: var(--usb-yellow);
}

.mt-20 { margin-top: 25px; }

.nav-actions {
  display: flex;
  align-items: stretch;
}

.action-link {
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: var(--usb-yellow);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
}

.action-link:hover {
  color: #fff;
}

.apply-box {
  background: var(--usb-yellow);
  width: 100px;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 65px;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 102;
}

.apply-hidden-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.mini-logo-dw {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.apply-divider {
  width: 60%;
  height: 2px;
  background: rgba(0, 0, 0, 0.8);
  margin: 15px 0;
  flex-shrink: 0;
}

.apply-text {
  color: var(--usb-black);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  transition: margin 0.3s ease;
}

.apply-box:hover {
  height: 150px;
  background: #ffcc00;
  justify-content: flex-start;
  padding-top: 10px;
}

.apply-box:hover .apply-hidden-content {
  max-height: 150px;
  opacity: 1;
}

.apply-box:hover .apply-text {
  margin-bottom: 0;
}

.usb-logo-img {
  height: 75px;
  width: auto;
  transition: transform 0.2s ease;
  display: block;
}

.usb-logo-img:hover {
  transform: scale(1.05);
}

/* BOTÓN HAMBURGUESA (Móvil) */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  width: 30px;
  height: 100%;
  padding: 0;
  margin-right: 15px;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--usb-yellow);
  border-radius: 2px;
  transition: 0.3s;
}

/* OVERLAY BUSCADOR */
.floating-search-overlay {
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

.floating-search-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.search-container-modern {
  background: var(--white);
  width: 90%;
  max-width: 800px;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-input-modern {
  flex: 1;
  border: none;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 300;
  color: var(--usb-black);
  padding: 10px;
  outline: none;
  border-bottom: 2px solid #eee;
  transition: border-color 0.3s;
}

.search-input-modern:focus {
  border-bottom-color: var(--usb-yellow);
}

.btn-close-search {
  background: #f0f0f0;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.btn-close-search:hover {
  background: #e0e0e0;
  color: #333;
}

/* =========================================
   SECCIÓN HERO (REDISEÑADA)
   ========================================= */
.hero-section {
  position: relative;
  height: 68vh;
  min-height: 550px;
  width: auto;
  margin: 20px; 
  border-radius: 30px;
  overflow: hidden; 
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--usb-black);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Capa oscura sutil sobre el video para mejorar la lectura */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

/* --- EL NUEVO DEGRADADO AMARILLO --- */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; 
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(255, 204, 0, 0.3) 50%, 
    var(--usb-yellow) 100%);
  z-index: 2; 
  pointer-events: none; 
}

.hero-content {
  position: relative;
  z-index: 3; 
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900; 
  line-height: 1.1;
  margin-bottom: 35px;
  text-transform: capitalize;
  color: var(--white);
  text-shadow: none; 
  letter-spacing: -1px;
}

.linear-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background-color: var(--usb-black);
  color: var(--usb-yellow);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.linear-button:hover {
  background-color: #222; 
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.linear-button span {
  font-size: 1.2rem;
}
/* -------------------------
   INDICADOR DE SCROLL (RESTAURADO Y ACTUALIZADO)
   ------------------------- */
.scroll-indicator {
  position: absolute;
  bottom: 30px; 
  left: 50%;
  transform: translateX(-50%);
  z-index: 10; 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
  pointer-events: none;
}

.mouse {
  width: 26px;
  height: 44px;
  /* CAMBIO: Ahora es negro para resaltar sobre el fondo amarillo */
  border: 2px solid var(--usb-black); 
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  /* CAMBIO: Rueda negra */
  background-color: var(--usb-black);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 1.5s infinite;
}

.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  /* CAMBIO: Texto negro */
  color: var(--usb-black);
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 25px;
  }
}

/* Ajustes para móviles */
@media (max-width: 900px) {
  .hero-section {
    margin: 15px;
    height: 60vh;
    border-radius: 20px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-content {
    transform: translateY(-20px);
  }
}

/* -------------------------
   SECCIÓN OFERTA ACADÉMICA
   ------------------------- */
.offer {
  background: var(--usb-yellow);
  padding: 40px 0 80px 0;
}

.offer-header {
  margin-bottom: 50px;
}

.offer-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--usb-black);
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
}

.offer-header h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--usb-black);
  margin: 0;
  font-style: italic;
  font-weight: 400;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: stretch;
}

.offer-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 25px;
  border-radius: 4px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.offer-block:hover {
  background-color: var(--usb-black);
  border-color: var(--usb-black);
}

.offer-block h3 {
  font-size: 22px;
  margin: 0 0 15px 0;
  color: var(--usb-black);
  font-weight: 700;
  position: relative;
  transition: all 0.3s ease;
}

.offer-block h3::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--white);
  margin-bottom: 20px;
}

.offer-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 30px 0;
  flex-grow: 1;
  transition: all 0.3s ease;
}

.offer-block:hover h3,
.offer-block:hover p {
  color: var(--white);
  transform: translateX(10px);
}

.offer-arrow-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 45px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  color: var(--usb-black);
  z-index: 2;
  align-self: flex-end;
  overflow: hidden;
}

.offer-block:hover .offer-arrow-box {
  background: var(--white);
  color: var(--usb-black);
}

.offer-arrow-box svg {
  width: 20px;
  height: 20px;
  stroke-width: 3;
}

@keyframes arrow-slide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(30px);
    opacity: 0;
  }
  50% {
    transform: translateX(-30px);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.offer-block:hover .offer-arrow-box svg {
  animation: arrow-slide 0.5s ease-in-out forwards;
}

@media (max-width: 1024px) {
  .offer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
  }
}

@media (max-width: 600px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-header h2 {
    font-size: 36px;
  }
}

/* -------------------------
   HIGHLIGHT
   ------------------------- */
.highlight {
  padding: 80px 0;
  background: #fff;
}

.highlight-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.highlight-sidebar {
  width: 450px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

.highlight-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
}

.highlight-sidebar h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--usb-black);
  margin: 0;
  font-style: italic;
  line-height: 1.1;
}

.highlight-content {
  flex: 1;
}

.highlight-top-action {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.btn-all-programs {
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  color: var(--usb-black);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-all-programs .icon-box {
  background: #eee;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: background 0.3s;
}

.btn-all-programs:hover .icon-box {
  background: var(--usb-yellow);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.h-card {
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
}

.h-card:hover {
  background: var(--usb-black);
  border-color: var(--usb-yellow);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.h-badge {
  display: inline-block;
  border: 1px solid #ddd;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--usb-black);
  margin-bottom: 15px;
  align-self: flex-start;
  transition: all 0.3s;
}

.h-card:hover .h-badge {
  border-color: var(--usb-yellow);
  background: var(--usb-yellow);
  color: var(--usb-black);
}

.h-card h3 {
  font-size: 20px;
  margin: 0 0 20px 0;
  color: var(--usb-black);
  font-weight: 700;
  transition: color 0.3s;
}

.h-card:hover h3 {
  color: var(--white);
}

.h-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.h-meta div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.h-meta svg {
  width: 16px;
  height: 16px;
  stroke: #999;
  transition: stroke 0.3s;
}

.h-card:hover .h-meta {
  color: #ccc;
}

.h-card:hover .h-meta svg {
  stroke: var(--usb-yellow);
}

.h-status {
  font-size: 13px;
  font-weight: 700;
  color: var(--usb-black);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  transition: color 0.3s;
  flex-grow: 1;
}

.h-card:hover .h-status {
  color: var(--usb-yellow);
}

.h-arrow-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 45px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--usb-black);
  align-self: flex-end;
  margin-top: auto;
  overflow: hidden;
  z-index: 2;
}

.h-card:hover .h-arrow-box {
  background: var(--white);
  color: var(--usb-black);
}

.h-arrow-box svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.h-card:hover .h-arrow-box svg {
  animation: arrow-slide 0.5s ease-in-out forwards;
}

@media (max-width: 900px) {
  .highlight-layout {
    flex-direction: column;
  }
  .highlight-sidebar {
    width: 100%;
    position: static;
    margin-bottom: 20px;
  }
  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------
   STATS
   ------------------------- */
.stats-wrap {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: var(--white);
  background-image: url("https://images.unsplash.com/photo-1541339907198-e08756dedf3f?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.stats-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.stats-wrap .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .stats-wrap {
    background-attachment: scroll;
  }
}

.stats-header {
  margin-bottom: 80px;
}

.stats-title-main {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 64px;
  font-weight: 400;
  margin: 0;
  color: var(--white);
}

.stats .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 100px;
  font-weight: 600;
  color: var(--usb-yellow);
  margin: 0 0 10px 0;
  line-height: 1;
}

.stat-desc {
  font-family: var(--font-main);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  max-width: 200px;
}

@media (max-width: 900px) {
  .stats .inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px 20px;
  }
  .stats-title-main {
    font-size: 48px;
  }
  .stat-number {
    font-size: 56px;
  }
}

@media (max-width: 600px) {
  .stats .inner {
    grid-template-columns: 1fr;
  }
  .stat {
    margin-bottom: 40px;
  }
}

/* =========================================
   SECCIÓN: LA USB RECUERDA (REVISADO)
   ========================================= */

.remember-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.remember-card {
  position: relative;
  width: 100%;
  min-height: 550px;
  border-radius: 24px;
  overflow: hidden;
  background-image: url('https://kikyc.github.io/homeusb/Copia de 11.JPG');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.remember-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, 
    rgba(0, 0, 0, 0.98) 0%, 
    rgba(0, 0, 0, 0.85) 35%, 
    rgba(0, 0, 0, 0.4) 65%, 
    rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
}

.remember-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  color: #ffffff;
  max-width: 900px;
}

.remember-header {
  margin-bottom: 35px;
}

.remember-subtitle {
  display: block;
  font-size: 12px; 
  font-weight: 700; 
  color: #ffcc00;   
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px; 
}

.remember-main-title {
  font-family: var(--font-serif); 
  font-size: 48px;     
  color: #ffffff;
  font-style: italic;  
  font-weight: 400;    
  margin: 0;
  line-height: 1.1;
}

/* --- CUERPO DEL ARTÍCULO --- */

.article-body {
  margin-top: 30px;
}

.article-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.3;
}

.article-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
}

.article-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: var(--usb-yellow); 
  color: var(--usb-black);
  border: none;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}

.article-btn span {
  margin-left: 15px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.article-btn:hover {
  background: var(--white);
  color: var(--usb-black);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.article-btn:hover span {
  transform: translateX(5px);
}

/* Adaptación para pantallas pequeñas */
@media (max-width: 768px) {
  .remember-content {
    padding: 40px 25px;
  }
  .remember-main-title {
    font-size: 36px;
  }
  .article-btn {
     width: 100%;
     justify-content: center;
  }
}

/* -------------------------
   SECCIÓN NOTICIAS (UNIFICADA)
   ------------------------- */

.news {
  padding: 60px 0 80px;
  background: #ffffff; 
  position: relative;
  
  /* TRUCO BREAKOUT: Obliga a la sección a medir toda la pantalla */
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  overflow: hidden; /* Corta lo que sobre, evita scroll */
}

/* LA MARCA DE AGUA "NOTICIAS" */
.marca-de-agua-noticias {
  position: absolute !important;
  top: 10px !important; 
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: auto !important;
  right: auto !important;
  font-family: var(--font-main, sans-serif) !important;
  font-size: 20vw !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: #000000 !important; 
  opacity: 0.04 !important; 
  white-space: nowrap !important;
  letter-spacing: 15px !important;
  line-height: 1 !important;
  z-index: 1 !important; 
  pointer-events: none !important; 
  display: block !important;
}

/* CONTENEDOR INTERNO */
.news .container {
  position: relative !important;
  z-index: 2 !important;
  max-width: 1440px; 
  margin: 0 auto; 
  padding: 0 15px; 
}

/* === HEADER Y TÍTULO === */
.news-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-top: 10px;
}

.news-header::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--usb-yellow);
  margin: 0 auto 20px;
}

.news-title-styled {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 50px;
  text-transform: uppercase;
  color: var(--usb-black);
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.2;
}

.news-title-styled span.highlighted-word {
  color: var(--usb-yellow);
  -webkit-text-stroke: 3px var(--usb-black);
  text-stroke: var(--usb-black);
  paint-order: stroke fill;
  padding: 0 5px;
}

/* === LAYOUT GRID (Slider + Lista) === */
.news-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* === SLIDER IZQUIERDO === */
.news-slider-container {
  position: relative;
  height: 100%;
  min-height: 450px;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.news-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: var(--white);
  z-index: 1;
}

.news-slide.active {
  opacity: 1;
  z-index: 2;
}

.news-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.4) 50%, transparent);
  z-index: -1;
}

.news-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.news-slide h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  font-family: var(--font-serif);
}

.news-date-box {
  display: inline-block;
  align-self: flex-start;
  background: var(--usb-yellow);
  color: var(--usb-black);
  padding: 8px 16px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 20px;
}

.slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 40px;
  height: 4px;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--usb-yellow);
}

/* === LISTA DERECHA === */
.news-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.news-item {
  display: block;
  position: relative;
  padding: 20px 60px 25px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.news-item:hover h4 {
  color: var(--usb-yellow);
}

.news-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--usb-black);
  transition: color 0.3s;
}

.news-item-date {
  font-size: 13px;
  color: #777; /* Muted */
}

.n-arrow-box {
  position: absolute;
  bottom: 15px; 
  right: 0;
  width: 44px; 
  height: 44px;
  background: #f4f5f7;
  border-radius: 4px; 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--usb-black);
  overflow: hidden;
}

.news-item:hover .n-arrow-box {
  background: var(--usb-black);
  color: var(--usb-yellow);
}

.n-arrow-box svg {
  width: 20px;
  height: 20px;
  stroke-width: 3.5;
  transition: transform 0.3s ease;
}

.news-item:hover .n-arrow-box svg {
  animation: flecha-dinamica 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Animación */
@keyframes flecha-dinamica {
  0%   { transform: translateX(0); }
  40%  { transform: translateX(30px); opacity: 0; }
  41%  { transform: translateX(-30px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

.btn-newsroom {
  display: inline-block;
  margin-top: auto;
  padding: 15px 30px;
  border: 2px solid var(--usb-black);
  border-radius: 5px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--usb-black);
  background: transparent;
  transition: all 0.3s ease; 
  text-align: center;
}

.btn-newsroom:hover {
  background: var(--usb-black);
  color: var(--usb-yellow);
  transform: translateY(-5px); 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-newsroom span {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 8px; 
}


/* === RESPONSIVE === */
@media (max-width: 900px) {
  .news-layout {
    grid-template-columns: 1fr;
  }
  .news-slider-container {
    height: 400px;
  }
}
@media (max-width: 600px) {
  .news-title-styled {
    font-size: 28px;
  }
  .news-title-styled span.highlighted-word {
    color: var(--usb-yellow);
    -webkit-text-stroke: 0;
  }
  .news::before {
    font-size: 25vw; 
    bottom: 50%;
  }
}

/* -------------------------
   AGENDA (Slider Infinito + Elementor Breakout)
   ------------------------- */
.agenda {
  background-color: var(--usb-yellow);
  padding: 80px 0;
  color: var(--usb-black);
  overflow: hidden;
  
  /* === MAGIA SLIDER INFINITO === */
  --max-w: 1250px;
  --pad: 15px;
  --bleed: calc(max(0px, (100vw - var(--max-w)) / 2) + var(--pad));
  position: relative;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

/* Encapsula y centra el contenido izquierdo a 1250px */
.agenda .container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  width: 100% !important;
  padding: 0 15px;
}

.agenda-layout {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 50px;
  align-items: start;
}

.agenda-info { 
  padding-left: 0 !important; 
    margin-left: 0 !important;
}

.agenda-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
  opacity: 0.8;
  font-weight: 700;
}

.agenda-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-style: italic;
  margin: 0 0 20px 0;
  line-height: 1;
}

.agenda-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 30px;
}

.btn-all-events {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--usb-black);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  border-radius: 5px;
  transition: all 0.3s;
  height: 45px;
  padding-right: 20px;
  cursor: pointer;
  text-decoration: none;
}

.btn-all-events .icon-box {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border-right: 1px solid #eee;
}

.btn-all-events:hover {
  background: var(--usb-black);
  color: var(--usb-yellow);
}

.agenda-slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.agenda-scroller {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  
  /* === AQUÍ EMPUJAMOS EL SLIDER HASTA EL BORDE DERECHO === */
  margin-right: calc(-1 * var(--bleed)); 
  padding-right: calc(var(--bleed) + 20px); /* El +20px asegura que al final del scroll, la tarjeta no quede pegada al marco */
  
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.agenda-scroller::-webkit-scrollbar { display: none; }

.event-card {
  /* CAMBIO CLAVE: Ancho fijo de 380px. Evita que las tarjetas se aplasten */
  flex: 0 0 380px; 
  background: var(--white);
  color: var(--usb-black);
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.event-header { display: flex; justify-content: flex-end; margin-bottom: 20px; margin-top: 10px; }

.event-badge {
  border: 1px solid #ddd; padding: 5px 12px; border-radius: 20px;
  font-size: 10px; text-transform: uppercase; font-weight: 700;
  color: var(--usb-black); background: #fff;
}

.event-date-box {
  position: absolute; top: 0; left: 0;
  background-color: var(--usb-black); color: var(--usb-yellow);
  width: 90px; height: 100px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  line-height: 1; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 10; border-radius: 0 0 10px 0;
}

.event-day { font-size: 48px; font-weight: 800; display: block; margin-bottom: 5px; color: var(--usb-yellow); }
.event-month { font-size: 15px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; color: var(--white); }

.event-title {
  font-family: var(--font-serif); font-size: 24px; font-weight: 400; font-style: italic;
  margin: 20px 0 30px 0; line-height: 1.3; margin-top: 50px;
}

.event-details { margin-top: auto; font-size: 13px; color: #555; display: flex; flex-direction: column; gap: 10px; }
.event-detail-item { display: flex; gap: 8px; align-items: center; }
.event-detail-item svg { width: 16px; height: 16px; color: var(--usb-yellow); }

.event-footer {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid #eee;
  font-size: 12px; font-weight: 700; color: var(--usb-black); text-transform: uppercase;
}
.event-footer span { color: var(--muted, #888); font-weight: 400; text-transform: none; margin-right: 5px; }

.event-arrow-box {
  position: absolute; bottom: 0; right: 0;
  width: 50px; height: 50px; background: var(--light-gray, #f4f5f7);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}

.event-card:hover .event-arrow-box { background: var(--usb-yellow); }
.event-arrow-box svg { width: 24px; height: 24px; stroke: var(--usb-black); stroke-width: 2; transition: transform 0.3s;}
.event-card:hover .event-arrow-box svg { transform: translateX(3px) translateY(-3px); }

.agenda-controls-bottom { display: flex; gap: 15px; justify-content: flex-start; padding-left: 0; }

.slider-round-btn {
  width: 60px; height: 60px; border-radius: 50%; background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.2); color: var(--usb-black);
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease;
}

.slider-round-btn:hover {
  background: var(--usb-black); color: var(--white);
  border-color: var(--usb-black); transform: scale(1.05);
}
.slider-round-btn svg { width: 24px; height: 24px; stroke-width: 2; }

/* REGLAS RESPONSIVAS (Anchos fijos para mantener la proporción) */
@media (max-width: 1024px) {
  .agenda-layout { grid-template-columns: 1fr; gap: 40px; }
  .agenda-info { max-width: 600px; margin: 0 auto; text-align: center; }
  .agenda-controls-bottom { justify-content: center; }
  .event-card { flex: 0 0 350px; }
}

@media (max-width: 600px) {
  .event-card { flex: 0 0 300px; min-width: auto; padding: 25px; min-height: 380px; }
  .event-date-box { width: 70px; height: 80px; }
  .event-day { font-size: 32px; }
  .event-month { font-size: 12px; }
  .event-title { font-size: 20px; margin-top: 50px; }
}

/* -------------------------
   SECCIÓN EGRESADOS DESTACADOS (ACTUALIZADA)
   ------------------------- */
.alumni-section {
  padding: 100px 0;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

.alumni-curve-bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 1500px;
  height: 1500px;
  background-color: var(--usb-black);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.05;
}

.alumni-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.alumni-photo-stack {
  position: relative;
  width: 450px;
  height: 550px;
  flex-shrink: 0;
  perspective: 1000px;
}

.alumni-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.alumni-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.alumni-card.card-active {
  z-index: 3;
  transform: translateX(0) translateY(0) scale(1);
  opacity: 1;
}

.alumni-card.card-next {
  z-index: 2;
  transform: translateX(30px) translateY(30px) scale(0.95);
  opacity: 0.6;
}

.alumni-card.card-behind {
  z-index: 1;
  transform: translateX(60px) translateY(60px) scale(0.9);
  opacity: 0.3;
}

.alumni-content-wrapper {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.alumni-text-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}

.alumni-text-block.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.alumni-quote-icon {
  font-family: sans-serif;
  font-size: 100px;
  line-height: 1;
  color: var(--usb-yellow);
  opacity: 1;
  position: absolute;
  top: -50px;
  left: -5px;
}

.alumni-quote-text {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.4;
  font-style: italic;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  padding-top: 40px;
}

.alumni-info {
  margin-bottom: 30px;
}

.alumni-name {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--usb-black);
  margin: 0 0 5px 0;
}

.alumni-role {
  font-size: 16px;
  color: #666;
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

.alumni-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--usb-black);
  background: var(--usb-yellow);
  padding: 6px 15px;
  border-radius: 4px;
}

.alumni-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.alumni-nav-btns {
  display: flex;
  gap: 15px;
}

.alumni-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--usb-yellow);
  color: var(--usb-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.alumni-nav-btn:hover {
  background: var(--usb-black);
  color: var(--usb-yellow);
  transform: scale(1.1);
}

.btn-instagram {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--usb-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.btn-instagram:hover {
  color: var(--usb-yellow);
}

.btn-instagram svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 900px) {
  .alumni-container {
    flex-direction: column;
    gap: 50px;
  }
  .alumni-photo-stack {
    width: 100%;
    height: 450px;
  }
  .alumni-curve-bg {
    width: 400px;
    height: 400px;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 30%;
  }
}

/* -------------------------
   SECCIÓN ALIADOS (CARRUSEL INFINITO)
   ------------------------- */
.partners-section {
  background: #fff;
  padding: 50px 0;
  border-top: 1px solid #f0f0f0;
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 30px;
}

.partners-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 700;
  margin: 0;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-slider::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.partners-slider::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.partners-track {
  display: flex;
  width: max-content;
  gap: 80px;
  animation: scrollLogos 40s linear infinite;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  transition: all 0.3s ease;
  filter: grayscale(100%) opacity(0.4);
}

.partner-item img {
  max-height: 100%;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

.partner-item:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* -------------------------
   SECCIÓN CAMPUS / SEDES
   ------------------------- */
.campus {
  position: relative;
  width: 100%;
  min-height: 85vh;
  padding: 120px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.campus-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
}

.campus-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campus-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.campus-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.campus-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 30px;
}

.campus-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 1;
  max-width: 800px;
}

.campus-icon-wrapper {
  margin-bottom: 30px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  display: flex;
  justify-content: center;
}

.campus-icon {
  width: 100%;
  max-width: 450px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transform: scale(1.4);
  margin: -20px 0;
}

.campus-label {
  font-family: var(--font-main);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
  background-color: var(--usb-yellow);
  color: var(--usb-black);
  padding: 10px 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.campus-btn:hover .campus-icon-wrapper {
  transform: scale(1.15);
}

.campus-btn:hover .campus-label {
  background-color: var(--usb-black);
  color: var(--usb-yellow);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.campus-title-wrapper {
  text-align: center;
  text-shadow: 4px 8px 15px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
}

.campus-title-top,
.campus-title-bottom {
  font-family: var(--font-main);
  font-weight: 900;
  margin: 0;
  line-height: 0.9;
}

.campus-title-top {
  color: var(--white);
  font-size: 240px;
  text-transform: none;
}

.campus-title-bottom {
  font-size: 70px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.campus-highlight {
  color: var(--usb-yellow);
}

@media (max-width: 768px) {
  .campus-icons {
    flex-direction: column;
    gap: 50px;
  }
  .campus-title-top {
    font-size: 45px;
  }
  .campus-title-bottom {
    font-size: 60px;
  }
  .campus-icon {
    width: 80%;
    transform: scale(1);
  }
  .campus {
    min-height: auto;
    padding: 80px 0;
  }
}

/* -------------------------
   FOOTER MODERNO
   ------------------------- */
.modern-footer {
  background-color: var(--usb-black);
  color: var(--white);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-main);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-area .usb-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #999;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--usb-yellow);
  color: var(--usb-black);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-nav-columns {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 120px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: #999;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--usb-yellow);
  text-decoration: none;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: #777;
}

.footer-legal-links {
  display: flex;
  gap: 25px;
}

.legal-link {
  color: #777;
  text-decoration: underline;
  transition: color 0.2s;
}

.legal-link:hover {
  color: var(--usb-yellow);
}

/* -------------------------
   MEDIA QUERIES GENERALES
   ------------------------- */
@media (max-width: 900px) {
  .campus .card {
    position: static;
    transform: none;
    margin-top: -80px;
    margin-left: 12px;
  }
  .news-grid,
  .highlight-grid,
  .offer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .top-right-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: var(--usb-black);
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
    z-index: 90;
  }
  .nav-links.active {
    height: auto;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--usb-yellow);
  }
  .nav-item {
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
  }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 15px;
    height: 50px;
  }
  .mega-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: #222;
    padding: 0 20px 20px 20px;
    grid-template-columns: 1fr;
    gap: 20px;
    display: none;
  }
  .nav-item:hover .mega-menu {
    display: grid;
  }
  .mm-column h4 {
    color: var(--usb-yellow);
    margin-bottom: 10px;
    font-size: 16px;
  }
  .mm-links a {
    color: #ccc;
  }
  .nav-actions {
    display: none;
  }
}

@keyframes watermark-slide-up {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(100px);
  }
  100% {
    opacity: 0.06;
    transform: translateX(-50%) translateY(0);
  }
}