/* ═══════════════════════════════════════════════════════
   UNEXIA — landing.css  |  Corregido con .unexia-page
   ═══════════════════════════════════════════════════════ */

/* ── RESET SOLO DENTRO DE UNEXIA-PAGE ── */
.unexia-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.unexia-page {
  font-family: "Anek Bangla", sans-serif;
  background: #fff;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  position: relative;
}

/* ── CSS VARIABLES ── */
:root {
  --purple: #9333ea;
  --purple-lt: #dcd2ff;
  --dark: #111827;
  --white: #ffffff;
  --gray-bg: #ececec;
  --gray-lt: #f5f5f5;
}

/* ══════════════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════════════ */
.unexia-page .slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 900px;
  overflow: hidden;
}
.unexia-page .slider-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.unexia-page .slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.unexia-page .slider-slide.active {
  opacity: 1;
}
.unexia-page .slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
  pointer-events: none;
}

/* Slide 1 — centrado */
.unexia-page .slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.unexia-page .slide-content .logo {
  width: min(80%, 580px);
  margin-bottom: 30px;
}
.unexia-page .slide-content .tagline {
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 700;
  letter-spacing: 2.08px;
  margin-bottom: 30px;
  color: var(--dark);
}
.unexia-page .slide-content .cta {
  background: var(--purple);
  color: var(--purple-lt);
  border: none;
  border-radius: 80px;
  width: 206px;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

/* Slides 2 y 3: texto izquierda · imagen derecha */
.unexia-page .slide-content-left-with-image {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  height: 100%;
  width: 100%;
}

.unexia-page .slide-text-wrapper {
  flex: 1;
  text-align: left;
}
.unexia-page .slide-text-wrapper .tagline,
.unexia-page .slide-content-left-with-image .tagline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}
.unexia-page .slide-text-wrapper .slide-text,
.unexia-page .slide-content-left-with-image .slide-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 25px;
}
.unexia-page .slide-text-wrapper .cta,
.unexia-page .slide-content-left-with-image .cta {
  background: var(--purple);
  color: var(--purple-lt);
  border: none;
  border-radius: 80px;
  width: 206px;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.unexia-page .slide-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.unexia-page .slide-image img {
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 20px;
}

/* Flechas del slider */
.unexia-page .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(147, 51, 234, 0.7);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.unexia-page .slider-arrow:hover {
  background: var(--purple);
  transform: translateY(-50%) scale(1.1);
}
.unexia-page .slider-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: white;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.unexia-page .slider-arrow--prev {
  left: 30px;
}
.unexia-page .slider-arrow--next {
  right: 30px;
}

/* Puntos del slider */
.unexia-page .slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.unexia-page .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.4;
  cursor: pointer;
  border: 1px solid var(--purple);
}
.unexia-page .slider-dot.active {
  opacity: 1;
}

/* ══════════════════════════════════════════════
   VENTAJAS
   ══════════════════════════════════════════════ */
.unexia-page .section {
  padding: 60px 20px;
  width: 100%;
}
.unexia-page .section-title {
  text-align: center;
  font-family: "Anek Gujarati", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 40px;
}
.unexia-page .section-title span {
  color: var(--purple);
}

.unexia-page .ventajas-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.unexia-page .ventaja-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  flex: 1;
  min-width: 0;
  padding: 0 20px;
  gap: 14px;
}
.unexia-page .ventaja-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.unexia-page .ventaja-card span {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
}

.unexia-page .ventaja-sep {
  width: 68px;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--purple-lt));
  border-radius: 4px;
  margin: 10px auto 0;
}

.unexia-page .ventaja-sep-v {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, var(--purple), transparent);
  flex-shrink: 0;
  margin: 0;
}

/* ══════════════════════════════════════════════
   PROGRAMAS
   ══════════════════════════════════════════════ */
.unexia-page .programas-section {
  background: none;
  padding: 60px 20px;
  width: 100%;
  overflow: visible;
}

.unexia-page .programas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.unexia-page .programa-card {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 12px;
  overflow: visible;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.unexia-page .programa-card-wrapper {
  position: relative;
  padding-top: 45px;
}

.unexia-page .programa-card > img:first-child {
  border-radius: 12px;
}

.unexia-page .programa-card__overlay,
.unexia-page .programa-card__expanded {
  border-radius: 12px;
}

.unexia-page .programa-card:hover {
  transform: translateY(-10px);
}

.unexia-page .programa-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.unexia-page .programa-card:hover img {
  transform: scale(1.05);
}

.unexia-page .programa-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  opacity: 1;
  transition: all 0.3s ease;
}

.unexia-page .programa-card__title {
  color: var(--purple-lt);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.unexia-page .programa-card__rvoe {
  color: var(--purple-lt);
  font-size: 10px;
  margin-top: 10px;
}

.unexia-page .programa-card__expanded {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.unexia-page .programa-card:hover .programa-card__overlay {
  opacity: 0;
}

.unexia-page .programa-card:hover .programa-card__expanded {
  opacity: 1;
}

.unexia-page .programa-card__expanded-title {
  color: var(--purple-lt);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.unexia-page .programa-card__expanded-list {
  color: var(--purple-lt);
  font-size: 9px;
  line-height: 1.6;
  margin-bottom: 15px;
  max-height: 150px;
  overflow-y: auto;
}

.unexia-page .programa-icon {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #111827;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.unexia-page .programa-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(2476%)
    hue-rotate(264deg) brightness(94%) contrast(94%);
}

/* ══════════════════════════════════════════════
   CAMPUS VIRTUAL
   ══════════════════════════════════════════════ */
.unexia-page .u-campus {
  position: relative;
  width: 100%;
  min-height: 650px;
  background: url("/unexia_website/static/src/img/FondoCampoVirtual.png")
    center/cover no-repeat;
  padding: 80px 40px 140px;
}
.unexia-page .u-campus__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(236, 236, 236, 0.2);
}
.unexia-page .u-campus__content {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}
.unexia-page .u-campus__title {
  font-family: "Anek Gujarati", sans-serif;
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 8px;
}
.unexia-page .u-campus__virt {
  font-family: "Anek Gujarati", sans-serif;
  font-size: clamp(44px, 8vw, 85px);
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 50px;
  line-height: 1.2;
}

.unexia-page .campus-features {
  display: flex;
  align-items: stretch;
  background: rgba(140, 100, 190, 0.82);
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
}
.unexia-page .campus-feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 50px 16px;
  font-family: "Anek Gujarati", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s;
  position: relative;
}
.unexia-page .campus-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.unexia-page .campus-features .campus-feature:first-child {
  border-radius: 18px 0 0 18px;
}
.unexia-page .campus-features .campus-feature:last-child {
  border-radius: 0 18px 18px 0;
}
.unexia-page .campus-feature:hover {
  background: rgba(88, 28, 135, 0.97);
  transform: scaleY(1.06);
  z-index: 2;
  border-radius: 16px;
}
.unexia-page .campus-feature svg {
  width: 44px;
  height: 44px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══════════════════════════════════════════════
   RESULTADOS SLIDER
   ══════════════════════════════════════════════ */
.unexia-page .resultados-slider-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.unexia-page .resultados-slides {
  display: flex;
  transition: transform 0.5s ease;
}
.unexia-page .resultados-slide {
  min-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 20px 0;
}
.unexia-page .resultados-left {
  flex: 1;
  min-width: 260px;
}
.unexia-page .resultados-left h2 {
  font-family: "Anek Gujarati", sans-serif;
  font-size: clamp(38px, 7vw, 68px);
  color: var(--purple);
  line-height: 1.15;
  margin-bottom: 20px;
}
.unexia-page .resultados-left p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
}
.unexia-page .resultados-right {
  flex: 0 0 340px;
  text-align: center;
}
.unexia-page .resultados-right img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.unexia-page .resultados-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.unexia-page .resultados-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple-lt);
  border: 2px solid var(--purple);
  cursor: pointer;
  transition: background 0.2s;
}
.unexia-page .resultados-dot.active {
  background: var(--purple);
}

/* ══════════════════════════════════════════════
   PROMOCIONES
   ══════════════════════════════════════════════ */
.unexia-page .promo-section-full {
  width: 100%;
  background: var(--gray-lt);
  padding: 60px 0;
}
.unexia-page .promo-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.unexia-page .promo-left {
  flex: 0 0 40%;
}
.unexia-page .promo-left img {
  width: 100%;
  border-radius: 20px;
}
.unexia-page .promo-right {
  flex: 0 0 50%;
}
.unexia-page .promo-right h2 {
  font-family: "Anek Gujarati", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--purple);
  font-weight: 800;
  margin-bottom: 20px;
}
.unexia-page .promo-card {
  background: #e8e2ff;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}
.unexia-page .promo-btn {
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 32px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: block;
  margin: 0 auto;
}
.unexia-page .promo-btn:hover {
  background: #7e22ce;
}

/* ══════════════════════════════════════════════
   BECAS
   ══════════════════════════════════════════════ */
.unexia-page .becas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.unexia-page .beca-card {
  position: relative;
  width: 320px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.unexia-page .beca-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.unexia-page .beca-card:hover img {
  transform: scale(1.05);
}
.unexia-page .beca-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(236, 236, 236, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 40px;
  text-align: center;
}
.unexia-page .beca-card__name {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.unexia-page .beca-card__btn {
  background: var(--purple);
  border: none;
  border-radius: 30px;
  padding: 10px 26px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* ══════════════════════════════════════════════
   INSCRÍBETE
   ══════════════════════════════════════════════ */
.unexia-page .inscribe-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: linear-gradient(135deg, #f0eeff 0%, #e8e2ff 100%);
  border-radius: 30px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.unexia-page .inscribe-left {
  flex: 1;
  min-width: 320px;
  position: relative;
  overflow: hidden;
}
.unexia-page .inscribe-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.unexia-page .inscribe-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 24px 24px 0;
}
.unexia-page .inscribe-right h2 {
  font-family: "Anek Gujarati", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--purple);
  font-weight: 800;
  margin-bottom: 14px;
}
.unexia-page .inscribe-right p {
  font-size: 16px;
  color: #555;
  margin-bottom: 28px;
}
.unexia-page .inscribe-btn {
  background: #edcc45;
  border: none;
  border-radius: 50px;
  padding: 14px 48px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s;
}
.unexia-page .inscribe-btn:hover {
  filter: brightness(0.92);
}

/* ══════════════════════════════════════════════
   SOBRE NOSOTROS
   ══════════════════════════════════════════════ */
.unexia-page .s-nosotros {
  display: block;
  width: 100%;
  background: transparent;
  padding: 80px 40px 60px;
}
.unexia-page .s-nosotros-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.unexia-page .s-nosotros__valores {
  background: #ebebeb;
  border-radius: 20px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.unexia-page .s-nosotros__val-title {
  font-family: "Anek Gujarati", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 24px;
}
.unexia-page .s-nosotros__val-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.unexia-page .s-nosotros__val-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-family: "Anek Gujarati", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid #d5d5d5;
}
.unexia-page .s-nosotros__val-list li:last-child {
  border-bottom: none;
}
.unexia-page .s-nosotros__val-list li img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.unexia-page .s-nosotros__center {
  background: var(--dark);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: left;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.unexia-page .s-nosotros__center-title {
  font-family: "Anek Gujarati", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 20px;
}
.unexia-page .s-nosotros__center-body {
  font-family: "Anek Gujarati", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
  flex: 1;
}
.unexia-page .s-nosotros__right {
  background: rgba(220, 210, 255, 0.35);
  border-radius: 20px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.unexia-page .s-nosotros__label {
  font-family: "Anek Gujarati", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.unexia-page .s-nosotros__text {
  font-family: "Anek Gujarati", sans-serif;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 25px;
}
.unexia-page .s-nosotros__text:last-child {
  margin-bottom: 0;
}
.unexia-page .s-nosotros__btn-wrap {
  display: flex;
  justify-content: center;
  padding-top: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.unexia-page .s-nosotros__btn {
  display: inline-block;
  background: var(--dark);
  color: var(--purple-lt);
  border: 2px solid var(--dark);
  border-radius: 50px;
  padding: 14px 60px;
  font-family: "Anek Gujarati", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.unexia-page .s-nosotros__btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* ══════════════════════════════════════════════
   MODALIDAD
   ══════════════════════════════════════════════ */
.unexia-page .modalidad-bg {
  background: linear-gradient(135deg, #111827 0%, #08152f 100%);
  width: 100%;
  padding: 80px 20px 100px;
  margin: 60px 0;
}
.unexia-page .modalidad-title {
  text-align: center;
  font-family: "Anek Gujarati", sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 50px;
}
.unexia-page .modalidad-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.unexia-page .modalidad-item {
  flex: 1 1 140px;
  max-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.unexia-page .mod-icon {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.unexia-page .mod-icon img {
  max-width: 110px;
  max-height: 90px;
  object-fit: contain;
}
.unexia-page .mod-circle {
  width: 60px;
  height: 60px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0 10px;
  z-index: 2;
  position: relative;
}
.unexia-page .mod-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--purple-lt);
}
.unexia-page .mod-text {
  font-family: "Anek Gujarati", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  max-width: 130px;
  margin-top: 10px;
}
.unexia-page .modalidad-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 2px;
  background: rgba(147, 51, 234, 0.55);
  transform: translateY(-50%);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BENEFICIOS
   ══════════════════════════════════════════════ */
.unexia-page .beneficios-section {
  padding: 80px 20px 60px;
  width: 100%;
}
.unexia-page .beneficios-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.unexia-page .beneficios-left {
  flex: 1;
  min-width: 220px;
}
.unexia-page .beneficios-left h2 {
  font-family: "Anek Gujarati", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.unexia-page .beneficios-left p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--dark);
}
.unexia-page .beneficios-logos {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.unexia-page .beneficios-logos-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.unexia-page .beneficios-logos img {
  height: 60px;
  max-width: 140px;
  object-fit: contain;
}
.unexia-page .beneficios-divider {
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 44px auto 0;
}
.unexia-page .beneficios-divider__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}
.unexia-page .beneficios-divider__circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 2px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 18px;
}
.unexia-page .beneficios-divider__circle img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* ══════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════ */
.unexia-page .blog-section {
  padding: 60px 20px;
  width: 100%;
}
.unexia-page .blog-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.unexia-page .blog-header h2 {
  font-family: "Anek Gujarati", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 10px;
}
.unexia-page .blog-header p {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 40px;
}
.unexia-page .blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.unexia-page .blog-card {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.unexia-page .blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.unexia-page .blog-card:hover img {
  transform: scale(1.05);
}
.unexia-page .blog-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(17, 24, 39, 0.88) 0%,
    rgba(17, 24, 39, 0.08) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.unexia-page .blog-card__title {
  font-family: "Anek Gujarati", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}
.unexia-page .blog-card__btn {
  background: var(--purple);
  border-radius: 30px;
  padding: 9px 26px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
}

/* ══════════════════════════════════════════════
   CONTACTO
   ══════════════════════════════════════════════ */
.unexia-page .contacto-section-full {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.unexia-page .contacto-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/unexia_website/static/src/img/v65_83.png") center/cover
    no-repeat;
  z-index: 0;
}
.unexia-page .contacto-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 4, 18, 0.68);
  z-index: 1;
}
.unexia-page .contacto-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 40px;
}
.unexia-page .contacto-form {
  flex: 1;
  min-width: 300px;
  max-width: 460px;
  background: linear-gradient(
    160deg,
    rgba(17, 24, 39, 0.94),
    rgba(100, 20, 180, 0.72)
  );
  border-radius: 20px;
  padding: 46px 42px;
  backdrop-filter: blur(6px);
}
.unexia-page .contacto-form .field {
  margin-bottom: 26px;
}
.unexia-page .contacto-form label {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: var(--purple-lt);
  margin-bottom: 8px;
}
.unexia-page .contacto-form input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(147, 51, 234, 0.5);
  padding: 8px 0;
  color: #fff;
  font-size: 15px;
  outline: none;
}
.unexia-page .contacto-form input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.unexia-page .contacto-form select {
  width: 100%;
  background: rgba(209, 227, 255, 1);
  color: #444c60;
  border: none;
  border-radius: 40px;
  padding: 10px 18px;
  font-size: 14px;
  outline: none;
}
.unexia-page .contacto-form button {
  background: rgba(147, 51, 234, 0.85);
  border: none;
  border-radius: 50px;
  padding: 14px 44px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
}
.unexia-page .contacto-form button:hover {
  background: var(--purple);
}
.unexia-page .contacto-info {
  flex: 1;
  min-width: 280px;
}
.unexia-page .contacto-info h2 {
  font-family: "Anek Gujarati", sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 16px;
}
.unexia-page .contacto-info p {
  color: #e0e0e0;
  font-size: 16px;
  margin-bottom: 24px;
}
.unexia-page .contacto-info img {
  max-width: 100%;
  border-radius: 12px;
}

/* ══════════════════════════════════════════════
   FOOTER PERSONALIZADO (si se usa)
   ══════════════════════════════════════════════ */
.unexia-page .u-footer {
  background: linear-gradient(
    180deg,
    #ededed 0%,
    #d4bff0 60%,
    rgba(205, 172, 234, 0.9) 100%
  );
  padding: 60px 40px 30px;
  width: 100%;
}
.unexia-page .footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 44px;
}
.unexia-page .footer-col h4 {
  font-family: "Anek Bangla", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 18px;
}
.unexia-page .footer-col ul {
  list-style: none;
  font-family: "Anek Bangla", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
  line-height: 30px;
}
.unexia-page .footer-col ul li a {
  color: var(--dark);
  text-decoration: none;
}
.unexia-page .footer-col ul li a:hover {
  color: var(--purple);
}
.unexia-page .u-footer__logo {
  height: 100px;
  object-fit: contain;
}
.unexia-page .u-footer__rvoe {
  height: 59px;
  object-fit: contain;
}
.unexia-page .footer-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--purple);
  padding-top: 24px;
}
.unexia-page .footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  order: 1;
}
.unexia-page .footer-links-row a {
  color: var(--purple);
  text-decoration: none;
  font-family: "Anek Bangla", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.unexia-page .social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  order: 3;
  margin-top: 8px;
}
.unexia-page .social-links img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: invert(27%) sepia(89%) saturate(2476%) hue-rotate(264deg)
    brightness(94%) contrast(94%);
}
.unexia-page .footer-copy {
  text-align: center;
  color: var(--purple);
  font-family: "Anek Bangla", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  order: 2;
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOTANTE (GLOBAL - fuera de .unexia-page)
   ══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}
.whatsapp-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  text-decoration: none;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}
.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.whatsapp-button svg {
  width: 35px;
  height: 35px;
  fill: white;
}
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #333;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  font-family: "Anek Bangla", sans-serif;
}
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent white;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE COMPLETO
   ══════════════════════════════════════════════ */

/* ── Tablet grande (≤1024px) ── */
@media (max-width: 1024px) {
  .unexia-page .s-nosotros-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .unexia-page .s-nosotros__center {
    grid-column: span 2;
    order: -1;
  }
  .unexia-page .s-nosotros__valores,
  .unexia-page .s-nosotros__right {
    min-height: auto;
    padding: 28px 22px;
  }
}

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
  .unexia-page .campus-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 18px;
    overflow: hidden;
  }
  .unexia-page .campus-feature {
    padding: 28px 12px;
    font-size: 13px;
    border-radius: 0 !important;
  }
  .unexia-page .campus-feature:nth-child(1) {
    border-radius: 18px 0 0 0 !important;
  }
  .unexia-page .campus-feature:nth-child(2) {
    border-radius: 0 18px 0 0 !important;
  }
  .unexia-page .campus-feature:nth-last-child(1) {
    border-radius: 0 0 18px 18px !important;
  }
  .unexia-page .campus-feature:not(:last-child)::after {
    display: none;
  }
  .unexia-page .campus-feature svg {
    width: 32px;
    height: 32px;
  }
  .unexia-page .u-campus {
    padding: 60px 20px 40px;
    min-height: auto;
  }

  .unexia-page .ventajas-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .unexia-page .ventaja-sep-v {
    display: none;
  }
  .unexia-page .ventaja-card {
    width: 100%;
    min-width: 0;
  }

  .unexia-page .modalidad-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
  }
  .unexia-page .modalidad-item {
    width: 100%;
    max-width: none;
    min-width: 0;
    flex: 0 1 auto;
  }
  .unexia-page .modalidad-item:not(:last-child)::after {
    display: none;
  }

  .unexia-page .programas-grid {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
  .unexia-page .programa-card-wrapper {
    width: 100%;
  }
  .unexia-page .programa-card {
    width: 100%;
  }
}

/* ── Móvil (≤768px) ── */
@media (max-width: 768px) {
  .unexia-page .slide-content-left-with-image {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    padding: 20px;
    align-items: flex-start;
    text-align: left;
  }
  .unexia-page .slide-text-wrapper {
    width: 100% !important;
    min-width: 0 !important;
  }
  .unexia-page .slide-image {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }
  .unexia-page .slide-image img {
    width: auto !important;
    max-width: 90% !important;
    max-height: 360px !important;
    height: auto !important;
    margin: 0 auto;
    object-fit: contain;
  }
  .unexia-page .slide-text-wrapper .tagline {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .unexia-page .slide-text-wrapper .slide-text {
    font-size: 11px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .unexia-page .slide-text-wrapper .cta {
    width: auto;
    min-width: 110px;
    height: 34px;
    font-size: 11px;
    padding: 0 14px;
    white-space: nowrap;
  }
  .unexia-page .modalidad-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
  }
  .unexia-page .modalidad-item {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: none !important;
  }
  .unexia-page .modalidad-item:not(:last-child)::after {
    display: none !important;
  }
  .unexia-page .slider-arrow {
    width: 34px;
    height: 34px;
  }
  .unexia-page .slider-arrow svg {
    width: 16px;
    height: 16px;
  }
  .unexia-page .slider-arrow--prev {
    left: 8px;
  }
  .unexia-page .slider-arrow--next {
    right: 8px;
  }

  .unexia-page .ventajas-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
  }
  .unexia-page .ventaja-sep-v {
    display: none !important;
  }
  .unexia-page .ventaja-card {
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
  }

  .unexia-page .campus-features {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .unexia-page .campus-feature {
    padding: 24px 12px !important;
    font-size: 12px !important;
    border-radius: 16px !important;
  }
  .unexia-page .campus-feature:not(:last-child)::after {
    display: none !important;
  }
  .unexia-page .campus-feature svg {
    width: 28px !important;
    height: 28px !important;
  }

  .unexia-page .programas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .unexia-page .programa-card-wrapper {
    width: 100%;
  }
  .unexia-page .programa-card {
    width: 100%;
    height: 220px;
  }

  .unexia-page .promo-left,
  .unexia-page .promo-right {
    flex: 0 0 100%;
  }
  .unexia-page .promo-btn {
    display: block;
    margin: 0 auto;
  }

  .unexia-page .s-nosotros {
    padding: 40px 16px;
  }
  .unexia-page .s-nosotros-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .unexia-page .s-nosotros__center {
    grid-column: span 1;
    min-height: auto;
    padding: 28px 20px;
  }
  .unexia-page .s-nosotros__right {
    min-height: auto;
    order: 1;
  }
  .unexia-page .s-nosotros__center {
    order: 2;
  }
  .unexia-page .s-nosotros__valores {
    min-height: auto;
    order: 3;
  }
  .unexia-page .s-nosotros__val-list li {
    font-size: 13px;
  }
  .unexia-page .s-nosotros__center-body {
    font-size: 14px;
  }

  .unexia-page .modalidad-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .unexia-page .modalidad-item {
    width: 100%;
    max-width: none;
  }
  .unexia-page .modalidad-item:not(:last-child)::after {
    display: none;
  }
  .unexia-page .modalidad-bg {
    padding: 50px 20px 60px;
    margin: 30px 0;
  }

  .unexia-page .blog-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .unexia-page .blog-card {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background-color: #111827;
  }
  .unexia-page .blog-card img {
    width: 35%;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    height: auto;
  }
  .unexia-page .blog-card__overlay {
    position: static;
    flex: 1;
    background: #111827;
    border-radius: 0 20px 20px 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .unexia-page .blog-card__title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .unexia-page .blog-card__btn {
    font-size: 12px;
    padding: 7px 18px;
  }

  .unexia-page .contacto-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .unexia-page .contacto-form {
    width: 100%;
    max-width: 100%;
    flex: 0 1 100%;
  }
  .unexia-page .contacto-info {
    width: 100%;
    text-align: center;
  }

  .unexia-page .resultados-slide {
    flex-direction: column;
  }
  .unexia-page .resultados-right {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .unexia-page .inscribe-left {
    min-width: 100%;
  }
  .unexia-page .inscribe-right {
    border-radius: 0 0 24px 24px;
    padding: 30px 20px;
  }

  .unexia-page .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .unexia-page .footer-links-row {
    order: 1;
  }
  .unexia-page .social-links {
    order: 2;
  }
  .unexia-page .footer-copy {
    order: 3;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-button {
    width: 50px;
    height: 50px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}

/* ── Móvil pequeño (≤550px) ── */
@media (max-width: 550px) {
  .unexia-page .slide-content-left-with-image {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
    padding: 16px;
    width: 100% !important;
    align-items: flex-start;
    text-align: left;
  }
  .unexia-page .slide-text-wrapper {
    width: 100% !important;
    min-width: 0 !important;
  }
  .unexia-page .slide-image {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }
  .unexia-page .slide-image img {
    width: auto !important;
    max-width: 90% !important;
    max-height: 100px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }
  .unexia-page .slide-text-wrapper .tagline {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .unexia-page .slide-text-wrapper .slide-text {
    font-size: 9px;
    margin-bottom: 6px;
    line-height: 1.3;
  }
  .unexia-page .slide-text-wrapper .cta {
    width: auto;
    min-width: 80px;
    height: 28px;
    font-size: 9px;
    padding: 0 8px;
    white-space: nowrap;
  }

  .unexia-page .modalidad-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
  }
  .unexia-page .modalidad-item {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: none !important;
  }
  .unexia-page .modalidad-item:not(:last-child)::after {
    display: none !important;
  }
}

/* ── Móvil medio (≤600px) ── */
@media (max-width: 600px) {
  .unexia-page .slide-content-left-with-image {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
    padding: 16px;
    width: 100% !important;
    align-items: flex-start;
    text-align: left;
  }
  .unexia-page .slide-text-wrapper {
    width: 100% !important;
    min-width: 0 !important;
  }
  .unexia-page .slide-image {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }
  .unexia-page .slide-image img {
    width: auto !important;
    max-width: 90% !important;
    max-height: 120px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }
  .unexia-page .slide-text-wrapper .tagline {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .unexia-page .slide-text-wrapper .slide-text {
    font-size: 10px;
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .unexia-page .slide-text-wrapper .cta {
    width: auto;
    min-width: 90px;
    height: 30px;
    font-size: 10px;
    padding: 0 10px;
    white-space: nowrap;
  }

  .unexia-page .resultados-slide {
    flex-direction: column;
    gap: 20px;
  }
  .unexia-page .resultados-right img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* ── Móvil muy pequeño (≤480px) ── */
@media (max-width: 480px) {
  .unexia-page .slide-content-left-with-image {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px;
    padding: 12px;
    width: 100% !important;
    align-items: flex-start;
    text-align: left;
  }
  .unexia-page .slide-text-wrapper {
    width: 100% !important;
    min-width: 0 !important;
  }
  .unexia-page .slide-image {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }
  .unexia-page .slide-image img {
    width: auto !important;
    max-width: 90% !important;
    max-height: 220px !important;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }
  .unexia-page .slide-text-wrapper .tagline {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .unexia-page .slide-text-wrapper .slide-text {
    font-size: 8px;
    margin-bottom: 5px;
    line-height: 1.3;
  }
  .unexia-page .slide-text-wrapper .cta {
    width: auto;
    min-width: 70px;
    height: 26px;
    font-size: 8px;
    padding: 0 6px;
    white-space: nowrap;
  }

  .unexia-page .programas-grid {
    grid-template-columns: 1fr;
  }
  .unexia-page .programa-card {
    height: 200px;
  }

  .unexia-page .ventajas-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .unexia-page .ventaja-sep-v {
    display: none;
  }
  .unexia-page .ventaja-card {
    width: 100%;
    min-width: 0;
  }

  .unexia-page .campus-features {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .unexia-page .campus-feature {
    border-radius: 18px !important;
    padding: 22px 14px;
  }
  .unexia-page .campus-feature:not(:last-child)::after {
    display: none;
  }

  .unexia-page .modalidad-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
  }
  .unexia-page .modalidad-item {
    width: 100%;
    max-width: none;
    min-width: 0;
    flex: 0 1 auto;
  }
  .unexia-page .modalidad-item:not(:last-child)::after {
    display: none;
  }

  .unexia-page .blog-card img {
    width: 40%;
  }
  .unexia-page .blog-card__title {
    font-size: 12px;
  }
  .unexia-page .blog-card__btn {
    font-size: 11px;
    padding: 5px 12px;
  }

  .unexia-page .s-nosotros {
    padding: 30px 12px;
  }

  .unexia-page .beca-card {
    width: 100%;
  }
}

/* FIX FINAL: Asegurar que el círculo sobresalga completamente */
.unexia-page .programas-section,
.unexia-page .programas-grid,
.unexia-page .programa-card-wrapper,
.unexia-page .programa-card {
  overflow: visible !important;
}

.unexia-page .programa-card-wrapper {
  margin-bottom: 20px;
}

.unexia-page .programa-icon {
  top: -25px !important;
  z-index: 999 !important;
}
/* Tipografía ZalandoSans */
.unexia-page,
.unexia-page p,
.unexia-page li,
.unexia-page span:not(.mod-number):not(.campus-feature span),
.unexia-page .slide-text,
.unexia-page .contacto-form label,
.unexia-page .contacto-form input,
.unexia-page .contacto-form select {
  font-family: "ZalandoSans Regular", "Anek Bangla", sans-serif;
}

.unexia-page h1,
.unexia-page h2,
.unexia-page h3,
.unexia-page h4,
.unexia-page .section-title,
.unexia-page .cta,
.unexia-page .inscribe-btn,
.unexia-page .promo-btn,
.unexia-page .beca-card__btn,
.unexia-page .blog-card__btn,
.unexia-page .s-nosotros__btn,
.unexia-page .contacto-form button,
.unexia-page .programa-card__title,
.unexia-page .programa-card__expanded-title,
.unexia-page .ventaja-card span,
.unexia-page .campus-feature span,
.unexia-page .modalidad-title,
.unexia-page .mod-text {
  font-family: "ZalandoSans Bold", "Anek Gujarati", sans-serif;
}

/* Ajustes slider 1 - subir slogan y botón */
.unexia-page .slide-content {
  justify-content: center;
  margin-top: -60px;
}

.unexia-page .slide-content .logo {
  margin-bottom: 25px;
}

.unexia-page .slide-content .tagline {
  margin-bottom: 20px;
}

/* Becas - fotos menos opacas */
.unexia-page .beca-card__overlay {
  background: rgba(236, 236, 236, 0.25);
}

.unexia-page .beca-card__overlay:hover {
  background: rgba(236, 236, 236, 0.35);
}

/* Iconos en Misión y Visión */
.s-nosotros-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.s-nosotros-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.s-nosotros__label {
  margin-bottom: 0 !important;
}

/* Logo blanco en Sobre Nosotros */
.s-nosotros-logo-blanco {
  margin-top: 24px;
  max-width: 180px;
  height: auto;
  display: block;
}

/* Ajustes para el segundo select del formulario */
#carreraField {
  margin-top: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#carreraSelect {
  width: 100%;
  background: rgba(209, 227, 255, 1);
  color: #444c60;
  border: none;
  border-radius: 40px;
  padding: 10px 18px;
  font-size: 14px;
  outline: none;
}

/* Letra más grande en programas (cuadros azules) */
.unexia-page .programa-card__expanded-list p {
  font-size: 11px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .unexia-page .programa-card__expanded-list p {
    font-size: 9px;
  }
}
.s-nosotros-logo {
  max-width: 120px;
  height: auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 24px;
}
.unexia-page .cta {
  background: var(--purple);
  color: var(--purple-lt);
  border: none;
  border-radius: 80px;
  width: 206px;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.unexia-page .cta:hover {
  background: #7e22ce;
  transform: scale(1.02);
}
/* ========== PROGRAMAS - ENLACES CLICKEABLES ========== */
.programa-card-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.programa-card-link .programa-card {
  transition: transform 0.3s ease;
  pointer-events: auto;
}

.programa-card-link:hover .programa-card {
  transform: translateY(-10px);
}

.programa-card-link:hover .programa-card img {
  transform: scale(1.05);
}

.programa-card-link:hover .programa-card__overlay {
  opacity: 0;
}

.programa-card-link:hover .programa-card__expanded {
  opacity: 1;
}

/* Asegurar que el área expandida no bloquee clics */
.programa-card__expanded {
  pointer-events: none;
}

/* Forzar que el enlace sea clickeable en toda la tarjeta */
.programa-card-link,
.programa-card-link .programa-card,
.programa-card-link .programa-card__overlay,
.programa-card-link .programa-card__expanded {
  pointer-events: auto;
}

.programa-card__expanded * {
  pointer-events: none;
}
