@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700;800&display=swap");

:root {
  /* ======================
     COLORES
  ====================== */
  --color-primary: #f5012d;
  --color-black: #131313;
  --color-dark: #222222;
  --color-gray: #454545;
  --color-light: #f1f1f1;

  /* ======================
     TIPOGRAFÍA
  ====================== */
  --font-family-base: "Plus Jakarta Sans", sans-serif;

  /* Pesos */
  --font-light: 300;
  --font-regular: 400;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* ======================
     TAMAÑOS DE FUENTE
  ====================== */
  --font-h1: 88px; /* Banner principal */
  --font-h2: 62px; /* Banners secundarios */
  --font-h3: 40px; /* Títulos de sección */
  --font-h4: 22px; /* Subtítulos */
  --font-h5: 20px; /* Texto sobre banners */
  --font-h6: 18px; /* Párrafos */
}

body {
  font-family: var(--font-family-base) !important;
  font-weight: var(--font-regular) !important;
  color: var(--color-dark) !important;
}

.br-50 {
  border-radius: 50px !important;
}

.bg-light-gray {
  background: #f6f6f6 !important;
}
.w-45 {
  width: 45%;
}

.content > ul > li{

  list-style: disc !important;
}

/* Headings */

/* Hero Slider Styles */

.hero-slider {
  font-family: var(--font-family-base);
  position: relative;
  width: 100%;
  height: min(720px, 85vh);
  overflow: hidden;

}

/* Swiper ocupa todo */
.hero-slider .swiper,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay oscuro tipo “vignette” como la imagen */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.72) 70%,
      rgba(0, 0, 0, 0.82) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.lada{
  height: 55px;
}

/* Contenido encima */
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-light);
}

/* Tipos como en tu diseño (responsive con clamp) */
.hero-kicker {
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-title {
  font-weight: 700 !important;
  line-height: 1.05;
  margin: 0;
  color: var(--color-light);
}

.hero-subtitle {
  max-width: 720px;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Botón rojo tipo pill */
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(245, 1, 45, 0.22);
}
.btn-primary:hover {
  background: #d60027;
  color: #fff;
  border: 1px solid #d60027;
}

/* Pagination (bullets) como puntos */
.hero-pagination {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 22px !important;
  z-index: 3;
}
.hero-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.35;
  background: #fff;
  margin: 0 6px !important;
}
.hero-pagination .swiper-pagination-bullet-active {
  opacity: 0.9;
  background: #fff;
}

/* Decoraciones (círculos/lineas) */

/* ========= DECORADORES ========= */

/* Decorador diagonal esquina superior izquierda (punta real, NO cuadrado) */
.hero-deco-diagonal {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  z-index: 2;
  pointer-events: none;

  /* triángulo */
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.45;
}

/* Bandas diagonales */
.hero-deco-diagonal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    /* Oscuro */ rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.04) 20%,

    /* Blanco (corte duro) */ rgba(255, 255, 255, 0.14) 20%,
    rgba(255, 255, 255, 0.14) 28%,

    /* Oscuro */ rgba(255, 255, 255, 0.04) 28%,
    rgba(255, 255, 255, 0.04) 100%
  );
}

/* Línea punteada diagonal */
.hero-deco-diagonal::after {
  content: "";
  position: absolute;
  width: 160%;
  height: 1px;
  top: 38%;
  left: -38%;
  background: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.55) 0 13px,
    transparent 10px 16px
  );
  transform: rotate(135deg);
  opacity: 0.8;
}

/* Decorador círculo inferior derecho (como tu primer screenshot) */
.hero-deco-ring {
  position: absolute;
  right: 0;
  bottom: -140px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}

/* ARO GRANDE (con degradado) */
.hero-deco-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 77%;
  border: 28px solid transparent;
  background: linear-gradient(
      180deg,
      rgba(217, 217, 217, 0.14) 0%,
      rgba(39, 39, 39, 0.14) 100%
    )
    border-box;
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 59%);
  mask: radial-gradient(circle, transparent 50%, #000000 48%);
}

/* ARO PUNTEADO (NO se mascara) */
.hero-deco-ring::after {
  content: "";
  position: absolute;
  left: -55px;
  top: 50%;
  transform: translateY(-45%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.45);
  opacity: 0.7;
}

.storyOneSwiper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

/* Pagination (dots) */
.storyOnePagination {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 18px !important;
  text-align: center;
  z-index: 5;
}

.storyOnePagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0.4;
  margin: 0 6px !important;
}

.storyOnePagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .storyOneSwiper .story-one_image img {
    height: 380px;
  }
}

.recursos {
  position: relative;
  background: #f7f7f7;
  overflow: hidden;
  top: -80px;
  padding: 130px 0 !important;
}

.recursos-title {
  font-weight: 800;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--color-dark);
}

/* Card */
.recurso-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 22px 22px 24px;
  min-height: 150px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  color: inherit;
  text-decoration: none;
  z-index: 2;
}

.recurso-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
  color: var(--color-dark);
}

/* Icon */
.recurso-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.recurso-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: none;
}

/* Text */
.recurso-heading {
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-size: 28px;
  color: var(--ibero-black);
  text-transform: uppercase;
  margin-top: 15px;
}

/* Red arrow circle */
.recurso-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--ibero-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  background-color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}

/* Dotted decorations */
.recurso-dots {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px dashed var(--color-primary);
  opacity: 0.7;
  pointer-events: none;
}

.recurso-dots--left {
  left: -70px;
  top: 70px;
}

.recurso-dots--right {
  right: -70px;
  bottom: 10px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .recurso-dots {
    display: none;
  }
  .recurso-card {
    min-height: 140px;
  }
}

/* BLOG */

.blog-edu__kicker {
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.blog-edu__title {
  font-weight: 800;
  font-size: clamp(34px, 4vw, 54px);
  color: var(--color-dark);
}

/* Controles (arriba derecha) */
.blog-edu__controls {
  margin-top: 6px;
}

.blog-edu__nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

/* Pagination estilo dots */
/* Contenedor de la paginación */
.blogEduPagination {
  position: static !important;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* Dot base */
.blogEduPagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #d9d9d9;
  opacity: 1;
  border-radius: 50%;
  position: relative;
  margin: 0 !important;
}

/* Dot activo: aro */
.blogEduPagination .swiper-pagination-bullet-active {
  background: transparent;
  border: 2px solid #000;
}

/* Punto interno del activo */
.blogEduPagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Swiper spacing */
.blogEduSwiper {
  overflow: visible; /* para que sombras no se corten */
}

.blogEduSwiper .swiper-slide {
  height: auto;
}

/* Card */
.blog-card {
  border-radius: 22px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.blog-card__media {
  height: 316px;
}

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

/* Overlay blanco */
.blog-card__overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 14px;
  width: min(360px, calc(100% - 36px));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.blog-card__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0 0 10px 0;
}

.blog-card__cta {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-card__media {
    height: 316px;
  }
}

/* HERO */
.hero-rector {
  position: relative;
  height: 68vh;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background image */
.hero-rector__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark overlay */
.hero-rector__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.755) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );

  z-index: 1;
}

/* Content */
.hero-rector__content {
  position: relative;
  z-index: 2;
  height: calc(100% - 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-rector__subtitle {
  margin: 0;
  font-size: var(--font-h5);
  font-weight: var(--font-light);
  letter-spacing: 0.4px;
  opacity: 0.9;
  color: var(--color-light);
  margin-bottom: 14px;
}

.hero-rector__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-light);
}

/* PARTNERS BAR */
.hero-rector__partners {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #1c1c1c;
  padding: 26px 0 30px;
  z-index: 3;
}

/* Title with lines */
/* .partners-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.partners-title span {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  max-width: 160px;
}

.partners-title p {
  margin: 0;
  font-size: var(--font-h5);
  font-weight: var(--font-light);
  letter-spacing: 0.4px;
  opacity: 0.9;
  color: var(--color-light);
} */

/* Logos */
/* .partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partners-logos img {
  max-height: 32px;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.2s ease;
}

.partners-logos img:hover {
  opacity: 1;
  filter: none;
} */

/* Barra (degradado sutil y “flat”) */
.partners-bar {
  height: 350px;
  padding: 18px 0 22px;
  background-color: var(--color-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Título centrado con líneas */
.partners-bar__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.partners-bar__title p {
  margin: 0;
  font-size: var(--font-h5);
  font-weight: var(--font-light);
  letter-spacing: 0.4px;
  opacity: 0.9;
  color: var(--color-light);
}

.partners-bar__line {
  height: 1px;
  width: min(240px, 28vw);
  background: rgba(255, 255, 255, 0.16);
}

/* Swiper */
.partnersSwiper {
  position: relative;
  z-index: 2;
}

.partners-bar__slide {
  width: auto; /* importante para slidesPerView: 'auto' */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.partners-bar__slide img {
  max-height:80px;
  width: auto;
 
  transition: opacity 0.2s ease;
}
.partners-bar__slide img:hover {
  opacity: 0.85;
  filter: none;
}

/* Fade suave en extremos (para el “degradado lateral”) */
.partnersSwiper::before,
.partnersSwiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.partnersSwiper::before {
  left: 0;
  background: linear-gradient(to right, #222 0%, #222 100%);
}
.partnersSwiper::after {
  right: 0;
  background: linear-gradient(to left, #222 0%, #222 100%);
}

/* Decoradores diagonales (muy sutiles como en tu diseño) */
.partners-bar__deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.28;
  z-index: 1;
}

/* Triángulo TL */
.partners-bar__deco--tl {
  top: -10px;
  left: -10px;
  width: 160px;
  height: 90px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0) 70%
  );
}

/* Triángulo BR */
.partners-bar__deco--br {
  right: -10px;
  bottom: -10px;
  width: 190px;
  height: 100px;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  background: linear-gradient(
    315deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0) 70%
  );
}

/* Responsive */
@media (max-width: 768px) {
  .partnersSwiper::before,
  .partnersSwiper::after {
    width: 70px;
  }
  .partners-bar__slide img {
    max-height: 22px;
  }
}

@media (max-width: 768px) {
  .hero-rector {
    height: 72vh;
  }

  /* .partners-logos {
    gap: 26px;
  }

  .partners-logos img {
    max-height: 26px;
  } */
}

.ibero-footer {
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.82);
  padding: 60px 0 26px;
}

.ibero-footer__logo img {
  max-width: 140px;
  height: auto;
  display: block;
}

.ibero-footer__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* Titles */
.ibero-footer__title {
  font-size: 16px;

  text-transform: none;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

/* Lists */
.ibero-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ibero-footer__list li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}

.ibero-footer__list a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 14px;
}

.ibero-footer__list a:hover {
  color: #fff;
}

/* Contacts */
.ibero-footer__contact {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}

.ibero-footer__label {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.ibero-footer__contact a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.ibero-footer__contact a:hover {
  color: #fff;
}

/* Hours */
.ibero-footer__hours {
  padding: 10px 0 14px;
  margin-bottom: 14px;
}

.ibero-footer__hour-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}

.ibero-footer__value {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

/* Social */
.ibero-footer__social {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.ibero-footer__social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 16px;
}

.ibero-footer__social-link:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* Divider + bottom */
.ibero-footer__divider {
  margin: 36px 0 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.ibero-footer__bottom {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.ibero-footer__privacy {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.ibero-footer__privacy:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .ibero-footer {
    padding: 40px 0 20px;
  }
  .ibero-footer__cta {
    width: 100%;
  }
}



/* sección */
.memoria-section {
  background: #fff;
}

/* texto */
.memoria-kicker {
  color: var(--color-primary);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.memoria-title {
  font-weight: 800;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
  color: var(--color-dark);
}

.memoria-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 14px;
}

/* media wrapper */
.memoria-media {
  position: relative;
  display: flex;
  justify-content: center;
  padding-right: 10px;
}

/* imagen */
.memoria-img {
  width: min(420px, 100%);
  height: 520px;
  object-fit: cover;
  border-radius: 34px;
  display: block;
  position: relative;
  z-index: 3;
}

/* “cuadro” rosa/rojo detrás (como la mancha) */
.memoria-blob {
  content: "";
  position: absolute;
  right: 36px;
  top: 110px;
  width: 170px;
  height: 170px;
  border-radius: 18px;
  background: rgba(245, 1, 45, 0.14);
  z-index: 1;
}

/* patrón de puntos (grid) */
.memoria-dots {
  position: absolute;
  left: 46px;
  bottom: -18px;
  width: 130px;
  height: 82px;
  z-index: 2;
  opacity: 0.9;
  background-image: radial-gradient(#f5012e92 4px, transparent 2.2px);
  background-size: 16px 16px;
  background-position: 0 0;
}

/* Ajustes responsive */
@media (max-width: 992px) {
  .memoria-media {
    justify-content: center;
    padding-right: 0;
  }

  .memoria-img {
    height: 440px;
  }

  .memoria-blob {
    right: 50%;
    transform: translateX(60%);
  }

  .memoria-dots {
    left: 12px;
  }
}

/* sección y fondo */
.timeline-sec {
  position: relative;
  background: #f5f5f5;
  overflow: hidden;
}

/* Fondo con planos diagonales sutiles (como tu imagen) */
.timeline-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(225deg, rgba(0, 0, 0, 0.035) 0 14%, transparent 14% 100%),
    linear-gradient(225deg, rgba(0, 0, 0, 0.02) 0 8%, transparent 8% 100%),
    linear-gradient(45deg, rgba(0, 0, 0, 0.02) 0 10%, transparent 10% 100%);
  opacity: 0.7;
}

/* Texto */
.timeline-title {
  position: relative;
  z-index: 1;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: var(--color-dark);
}

.timeline-intro {
  position: relative;
  z-index: 1;
  max-width: 820px;
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.7;
}

/* Timeline wrapper */
.timeline {
  position: relative;
  z-index: 1;
  margin-top: 22px;
}

/* Línea vertical */
.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(245, 1, 45, 0.35);
}

/* Item */
.t-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 18px;
  padding: 16px 0;
}

.contact-block_one-number-timeline {
  position: relative;
  width: 24px;
  height: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  border-radius: 50px;
  color: var(--white-color);
  background-color: var(--main-color);
  box-shadow: 0px 0px 0px 10px rgba(var(--main-color-rgb), 0.3);
  flex-shrink: 0;
}

/* Content */
.t-content {
  padding-right: 12px;
}

.t-year {
  margin: 0 0 6px 0;
  font-weight: 800;
  font-size: var(--font-h4);
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.t-year--red {
  color: var(--color-primary);
}

.t-text {
  margin: 0;
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.65;
}

.t-sub {
  margin: 10px 0 0 0;
  color: #666;
  font-size: 13px;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 576px) {
  .timeline::before {
    left: 14px;
  }
  .t-item {
    grid-template-columns: 40px 1fr;
  }
}

/* Card base */
.oferta-card {
  position: relative;
  display: block;
  border-radius: 34px; /* más redondo como tu ref */
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Altura tipo banner grande */
.oferta-card--big {
  height: 300px; /* clave */
}

/* Overlay fuerte abajo */
.oferta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    /* MUY oscuro abajo */ rgba(0, 0, 0, 0.65) 25%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.12) 65%,
    rgba(0, 0, 0, 0) 82% /* arriba casi limpio */
  );
}

/* Contenido abajo-izq */
.oferta-card__content {
  position: absolute;
  left: 26px;
  bottom: 22px;
  z-index: 2;
}

/* Badge glass abajo */
.oferta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;

  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  margin-bottom: 14px;
}

/* Título enorme */
.oferta-label {
  display: block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

/* Hover suave */
.oferta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
  color: var(--color-light);
}

/* Responsive */
@media (max-width: 768px) {
  .oferta-card--big {
    height: 240px;
  }
  .oferta-card__content {
    left: 18px;
    bottom: 16px;
  }
  .oferta-badge {
    font-size: 14px;
  }
  .oferta-label {
    font-size: 34px;
  }

  .blog-more_posts .prev-post div {

    left: -148px !important;
    top: -2px;
   
}
}

/* Layout base */
.program-detail {
  background: #fff;
}

/* MAIN CARD */
.p-main {
  border-radius: 16px;
  background: #fff;
}

.p-hero img {
  width: 100%;
  height: 325px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  object-position: top;
}

/* content spacing */
.p-body {
  padding: 18px 6px 0;
}

/* chip (Posgrado) */
.p-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: var(--color-primary);
  margin: 10px 0 6px;
}

.p-chip__icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: var(--color-primary);
  border-radius: 3px;
  /* mini “icono” */
  -webkit-mask: radial-gradient(circle at 40% 40%, transparent 4px, #000 4px);
  mask: radial-gradient(circle at 40% 40%, transparent 4px, #000 4px);
}

/* title */
.p-title {
  font-weight: 900;
  color: var(--color-dark);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

/* OBJETIVO BOX */
.p-box {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 18px;
}

.p-box__title {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--color-dark);
}

/* goals list */
.p-goals {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.p-goal {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: flex-start;
}

/* icon like the reference:
   - red dotted circle
   - small black badge on top-right */

.story-block_one-inner-custom {
  position: relative;
  padding-left: 100px;
}

.story-block_one-icon-custom {
  position: absolute;
  left: 0px;
  top: 5px;
}

.story-block_one-inner-custom:hover .story-block_one-icon-custom i {
  color: var(--white-color);
  background-color: var(--main-color);
}

.story-block_one-icon-custom i {
  position: relative;
  width: 60px;
  height: 60px;
  font-size: 33px;
  text-align: center;

  border-radius: 150px;
  display: inline-block;
  color: var(--main-color);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  font-family: "flaticon_palace-icons";
  background-color: rgba(var(--main-color-rgb), 0.07);
}

.story-block_one-icon-custom i:after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 150px;
  border: 2px dashed rgba(var(--main-color-rgb), 0.4);
}

.story-block_one-inner-custom:hover i {
  transform: rotateY(180deg);
}

.story-block_one-icon-custom span {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
  width: 23px;
  height: 23px;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--white-color);
  border: 2px solid var(--white-color);
  background-color: rgba(var(--color-two-rgb), 1);
}

/* ASIDE */
@media (min-width: 992px) {
  .p-aside {
    position: sticky;
    top: 4px;
  }
}
@media (max-width: 991.98px) {
  .p-aside {
    position: static;
  }
}

/* aside cards */
.p-card {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  background: #fff;
  padding: 14px 14px 10px;
}

.p-card__title {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--color-dark);
}

/* info list with dotted separators */
.p-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-info li, .p-info li > a {
  position: relative;
  padding: 10px 0 10px 26px;
  border-top: 1px dashed #e7e7e7;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

 .p-info li > a {
padding-left: 0;
}
.p-info li:first-child {
  border-top: 0;
  padding-top: 0;
}

.p-info li > img {
  padding-right: 10px;
}

.p-info strong {
  color: #333;
  font-weight: 700;
}

.p-muted {
  color: #888;
}

/* icons (simple, sin librerías) */
.p-ico {
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 4px;
  opacity: 0.95;
}
.p-info li:first-child .p-ico {
  top: 2px;
}

.p-ico--cal {
  border-radius: 3px;
}
.p-ico--clock {
  border-radius: 50%;
}
.p-ico--hourglass {
  border-radius: 6px;
}
.p-ico--hat {
  border-radius: 4px;
}
.p-ico--mail {
  border-radius: 4px;
}
.p-ico--phone {
  border-radius: 50%;
}

/* requisitos */
.p-req {
  margin: 0;
  padding-left: 18px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}
.p-req li {
  padding: 6px 0;
  list-style: initial;
}

.p-program {
  font-size: 16px;
  color: var(--color-dark);
}

.p-program > li {
  list-style: initial;
}

.titulacion-hero {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  color: #fff;
}

/* BG + overlay */
.titulacion-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.titulacion-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 35%,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.75) 55%,
      rgba(0, 0, 0, 0.88) 100%
    ),
    rgba(0, 0, 0, 0.55);
}

/* Media */
.titulacion-hero__media {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  width: min(520px, 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

/* Content */
.titulacion-hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.titulacion-kicker {
  color: var(--color-primary);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.titulacion-title {
  font-weight: 900;
  font-size: clamp(42px, 4.4vw, 58px);
  margin: 0;
  line-height: 1.05;
}

.titulacion-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.7;
}

/* Items */
.titulacion-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 10px;
}

.titulacion-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
}

.titulacion-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  position: relative;
  margin-top: 2px;
  box-shadow: 0 0 0 10px rgba(245, 1, 45, 0.18); /* aro suave */
}

.titulacion-item h5 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.titulacion-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

/* Responsive */
@media (max-width: 992px) {
  .titulacion-hero {
    padding: 52px 0;
  }
  .titulacion-hero__media {
    margin: 0 auto;
  }
  .titulacion-hero__media img {
    height: 320px;
  }
  .titulacion-hero__content {
    max-width: 100%;
    text-align: left;
  }
  .content-titulacion {
    flex-direction: column-reverse;
  }
}

.recursos-cards {
  position: relative;
  background: #fff;
  overflow: hidden;
}

/* Background diagonal “bands” like your screenshot */
.rc-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18; /* sutil */
}

/* Top-left */
.rc-bg--tl {
  left: -20%;
  top: -25%;
  width: 70%;
  height: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.06) 0px,
      rgba(0, 0, 0, 0.06) 90px,
      transparent 90px,
      transparent 260px
    ),
    repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.08) 0px,
      rgba(0, 0, 0, 0.08) 1px,
      transparent 1px,
      transparent 220px
    );
}

/* Bottom-right */
.rc-bg--br {
  right: -20%;
  bottom: -25%;
  width: 70%;
  height: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.06) 0px,
      rgba(0, 0, 0, 0.06) 90px,
      transparent 90px,
      transparent 260px
    ),
    repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.08) 0px,
      rgba(0, 0, 0, 0.08) 1px,
      transparent 1px,
      transparent 220px
    );
}

/* ensure content above bg */
.recursos-cards .container {
  position: relative;
  z-index: 1;
}

/* Card */
.rc-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 22px;
  border: 1px solid #ececec;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  height: auto;
}

.rc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.1);
}

/* Image */
.rc-img {
  padding: 18px 18px 0;
}

.rc-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Body */
.rc-body {
  padding: 18px 20px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
  height: 350px;
}


/* Divider line */
.rc-divider {
  height: 1px;
  background: #dcdcdc;
  margin: 18px 0 14px;
}

/* Footer */
.rc-footer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 18px 20px 18px;
  height: 100px;
}

/* simple “user/email” red icon */
.rc-ico {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  position: relative;
  margin-top: 2px;
}

.rc-ico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
  opacity: 0.12;
}

.rc-info__label {
  font-weight: 700;
  color: var(--color-dark);
  font-size: 13px;
  margin-bottom: 2px;
}

.rc-info__value {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .rc-title {
    font-size: 24px;
  }
  .rc-img img {
    height: 180px;
  }
}


/* Background with diagonals TL + BR */
.contact-page{
  position: relative;
  background: #fff;
  overflow: hidden;
}

.cp-bg{
  position:absolute;
  pointer-events:none;
  z-index:0;
  opacity:.16;
}

.cp-bg--tl{
  left:-20%;
  top:-25%;
  width:70%;
  height:70%;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.06) 0 90px, transparent 90px 260px),
    repeating-linear-gradient(135deg, rgba(0,0,0,.08) 0 1px, transparent 1px 220px);
}
.cp-bg--br{
  right:-20%;
  bottom:-25%;
  width:70%;
  height:70%;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.06) 0 90px, transparent 90px 260px),
    repeating-linear-gradient(135deg, rgba(0,0,0,.08) 0 1px, transparent 1px 220px);
}

.contact-page .container{ position:relative; z-index:1; }

/* Left */
.cp-kicker{
  color: var(--color-primary);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cp-title{
  font-weight: 900;
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--color-dark);
  line-height: 1.05;
}

.cp-text{
  color:#666;
  font-size: 13px;
  line-height: 1.7;
  max-width: 460px;
}

.cp-subtitle{
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--color-dark);
}

.cp-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.cp-list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color:#666;
  font-size: 13px;
  line-height:1.5;
}

.cp-strong{ color:#444; font-weight: 600; }

/* small red icons */
.cp-ico{
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(245,1,45,.14);
  border: 1px solid rgba(245,1,45,.28);
  position: relative;
  flex: 0 0 18px;
  margin-top: 2px;
}
.cp-ico::after{
  content:"";
  position:absolute;
  inset: 4px;
  border-radius: 3px;
  background: var(--color-primary);
  opacity:.85;
}

/* Form card */
.cp-form-card{
  background:#fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
  padding: 18px 18px 16px;
}

.cp-form-title{
  font-weight: 900;
  color: var(--color-dark);
  letter-spacing: .02em;
}

.cp-form-sub{
  color:#777;
  font-size: 13px;
}

/* ✅ Slot where your template goes */
.cp-form-slot{
  /* solo marca el espacio; quítalo cuando pegues tu form */
  min-height: 320px;
  border-radius: 12px;
}

/* Divider title */
.cp-divider-title{
  text-align:center;
}
.cp-divider-title h3{
  font-weight: 900;
  color: var(--color-dark);
  margin:0;
}

/* Person cards */
.person-card{
  background: #f2f2f2;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  height: 400px;
}

/* TOP */
.person-card__top{
  padding: 32px 24px 28px;
}

.person-card__top img{
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

.person-card__top h4{
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #222;
}

.person-card__top p{
  font-size: 18px;
  color: #444;
  margin: 0;
}

/* BOTTOM (NO franja oscura) */
.person-card__bottom{
  padding: 22px 24px 26px;
  border-top: 2px solid rgba(255,255,255,.8); /* clave */
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Lines */
.person-line{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  
}
.person-line span, .person-line span > a{
  font-size: 16px;
  color: #555;
}

 .person-line span > a:hover{
color: var(--color-primary);
}

/* Icons */
.icon-phone,
.icon-mail{
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Colores exactos del mock */
.icon-phone{
  color: #F5012D; /* rojo */
}

.icon-mail{
  color: #111; /* negro */
}


/* Asegura que cada tarjeta use todo el alto */
.news-block_one-inner{
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-block_one-content{
  margin-top: auto;
}
.news-block_one-image img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.blog-detail_text ul{
  list-style: none;
  padding-left: 0;
  margin: 18px 0;
}

.blog-detail_text ul li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.blog-detail_text ul li::before{
  content: "\f00c"; /* fa-check */
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
}

.blog-detail_text ul li::before,
.blog-detail_text .wp-block-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url("../img/home/check.svg"); 
  background-size: contain;
  background-repeat: no-repeat;
}

.blog-detail_text blockquote,
.blog-detail_text .wp-block-quote{
  position: relative;
  margin: 30px 0;
  padding: 32px 32px 28px;
  background-color: #f5f5f5; /* o transparente si usas imagen */
  border-radius: 16px;
}


.blog-detail_text blockquote::before,
.blog-detail_text .wp-block-quote::before{
  content: "";
  position: absolute;
  top: 10px;
  left: 32px;

  width: 40px;
  height: 40px;

  background-image: url("../img/home/quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
}


.wp-block-quote > p{
margin-top: 20px !important;
}

.oa-card{
  background: #f3f3f3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  height: 100%;
}

.oa-card__media{
  padding: 10px 10px 0 10px;
}

.oa-card__media img{
  width: 100%;
  height: 260px;            /* ajusta si las quieres más altas */
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.oa-card__body{
  padding: 14px 14px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oa-card__title{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #131313;
}

/* Botón rojo tipo pill */
.oa-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 9px 18px;
  border-radius: 999px;
  background: #F5012D;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: .2s ease;
}

.oa-btn:hover{
  transform: translateY(-1px);
  color: #fff;
}


.oa-card-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.oa-card-link:hover .oa-card{
  transform: translateY(-4px);
  transition: .25s ease;
}


.jesuitas{
    background: #f5f5f5;
}

.jesuitas__title{
    font-size: 2.2rem;
    font-weight: 700;
    color: #2b2b2b;
}

.jesuita-card{
    display: block;
    background: #F5012D;
    border-radius: 14px;
    padding: 35px 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: .25s ease;
    height: 220px;
}

.jesuita-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    color: var(--color-light);
}

.jesuita-card__logo img{
    max-width: 120px;
    margin-bottom: 18px;
}

/* Línea punteada */
.jesuita-card__divider{
    width: 70%;
    margin: 0 auto 15px auto;
    border-bottom: 2px dashed rgba(255,255,255,.6);
}

.jesuita-card__label{
    font-size: .85rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.jesuitas__text{
    font-size: var(--font-h5);
    color: #444;
}


.feature-jesuita{
  background: #fff;
}

.feature-jesuita__card{
  background: #fff;
  border-radius: 20px;
  padding: 10px;
}

.feature-jesuita__media{
  border-radius: 22px;
  overflow: hidden;
}

.feature-jesuita__media img{
  width: 100%;
  height: 530px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

/* Texto */
.feature-jesuita__content{
  padding: 10px 8px;
}

.feature-jesuita__kicker{
  font-size: 14px;
  color: #9a9a9a;
  margin: 0;
}

.feature-jesuita__title{
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #131313;
  margin: 0;
}

.feature-jesuita__link{
  color: #F5012D;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.25;
}

.feature-jesuita__link:hover{
  text-decoration: underline;
}

.feature-jesuita__text{
  color: #454545;
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

/* Botón */
.feature-jesuita__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 999px;
  background: #F5012D;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: .2s ease;
}

.feature-jesuita__btn:hover{
  transform: translateY(-1px);
  color: #fff;
}

/* Responsive */
@media (max-width: 991.98px){
  .feature-jesuita__media img{
    height: 320px;
  }

  .feature-jesuita__title{
    font-size: 28px;
  }
}


/* que el contenido de la card pueda acomodarse parejo */
.property-block_one-content{
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* este es el bloque que provoca la variación */
.property-block_one-info{
  flex: 0 0 auto;
  min-height: 92px; /* AJUSTA: prueba 92 / 110 / 130 según tu diseño */
  margin-bottom: 18px;
}


.swiper-button-next, .swiper-button-prev{
  color: var(--color-primary) !important;
}

.swiper-pagination-bullet-active{
  background-color: var(--color-primary) !important;
}

.card-programa-title{
  height: 100px;
}

/* CONTENEDOR “tarjeta” */
.conv-card__wrap{
  background: #fff;
  border-radius: 22px;
  padding: 34px 34px;
  overflow: hidden;
}

/* Fondo con líneas diagonales (como en tus secciones) */
.conv-card__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  /* líneas suaves en esquina sup-izq y inf-der */
  background:
    linear-gradient(135deg, rgba(0,0,0,.04) 0 10%, transparent 10% 100%),
    linear-gradient(135deg, rgba(0,0,0,.02) 0 18%, transparent 18% 100%),
    linear-gradient(315deg, rgba(0,0,0,.035) 0 12%, transparent 12% 100%),
    linear-gradient(315deg, rgba(0,0,0,.02) 0 22%, transparent 22% 100%);
  opacity: .45;
}

/* Imagen izquierda */
.conv-card__media{
  border-radius: 26px;
  overflow: hidden;
  background: #f1f1f1;
  aspect-ratio: 4 / 3; /* ajusta si quieres más alta */
}
.conv-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto derecha */
.conv-card__title{
  font-weight: 800;
  font-size: 34px;
  color: #131313;
}
.conv-card__text{
  color: #454545;
  max-width: 560px;
  line-height: 1.6;
}

/* Tarjetita de contacto */
.conv-card__contact{
  display: flex;
  gap: 14px;
  align-items: flex-start;

  background: #fff;
  border: 1px solid #E9E9E9;
  border-radius: 14px;
  padding: 14px 16px;
  max-width: 420px;

  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.conv-card__contact-icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.conv-card__contact-icon img{
  width: 20px;
  height: 20px;
  display: block;
  filter: invert(12%) sepia(90%) saturate(6500%) hue-rotate(345deg); /* aprox rojo */
}

.conv-card__contact-title{
  font-weight: 700;
  font-size: 13px;
  color: #131313;
  margin-bottom: 2px;
}

.conv-card__contact-lines{
  font-size: 12px;
  color: #454545;
  line-height: 1.35;
}
.conv-card__contact-lines a{
  color: #454545;
  text-decoration: none;
}
.conv-card__contact-lines a:hover{
  text-decoration: underline;
  color: #454545;
}

/* Responsive */
@media (max-width: 991.98px){
  .conv-card__wrap{ padding: 22px; }
  .conv-card__title{ font-size: 28px; }
  .conv-card__contact{ max-width: 100%; }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;          
  min-height: 520px;
  display: flex;
  align-items: center;   
  overflow: hidden;
  background-color: #f0f0f0; 
}

.hero-bg, .hero-bg picture {
  position: absolute;
  inset: 0;              
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;     
  object-position: center; 
  display: block;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 60%);
}

.hero-container {
  position: relative;
  z-index: 3;            
  width: 100%;
  max-width:550px;
margin: 0 50px;
  padding: 0;         
}

.hero-copy {
  max-width: 560px;      
}

.hero-kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 18px;
  color: rgba(0,0,0,.55);
  margin-bottom: 12px;
}

.hero-title {
  margin: 0 0 16px;
  font-weight: 800;
  color: #2a2a2a;
  line-height: 1.1;
  font-size:75px !important;
}

.hero-subtitle {
  margin: 0 0 24px;
  color: #4a4a4a;
  font-size: 20px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  background-color: #e10613; 
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.hero-cta:hover {
  transform: scale(1.05);
  background-color: #b3050f;
}

/* 1) que Swiper y sus slides puedan estirarse a la altura del hero */
.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide,
.heroSwiper .hero-slide {
  height: 100%;
}


/* 3) el hero dentro del slide ocupa toda la altura disponible */
.heroSwiper .swiper-slide .hero-section {
  height: 100%;
  min-height: 520px;
}

.list-principios > li{
  list-style: disc !important;
}

.proceso-inscripcion{
  background-color: white;
}
.insc-steps{
  padding: 56px 0;
  background: #fff;
}

.insc-steps__title{
  font-weight: 800;
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1.1;
  color: #1f1f1f;
  margin: 0 0 28px;
}

.insc-steps__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.insc-step{
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: start;
}

.insc-step__num{
  font-weight: 800;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #1f1f1f;
  margin-top: 2px;
}

.insc-step__text{
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 520px;
}

.insc-step__link{
  font-weight: 800;
  color: #2b2b2b;
  text-decoration: none;
  word-break: break-word;
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.insc-step__link:hover{
  border-bottom-color: rgba(0,0,0,.35);
}

.insc-step__mail{
  font-weight: 800;
  color: #2b2b2b;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.insc-step__mail:hover{
  border-bottom-color: rgba(0,0,0,.35);
  color: var(--color-primary) !important;
}


.insc-steps__note{
  margin: 34px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5a5a5a;
}

/* Responsive */
@media (max-width: 991.98px){
  .insc-steps__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .insc-step{
    grid-template-columns: 72px 1fr;
    padding: 14px 0;
  }

  .insc-steps__note{
    margin-top: 20px;
  }
}

.pay-section{
  background:#fff;
}

.pay-title{
  font-weight: 800;
  letter-spacing: -0.02em;
  color:#222;
  font-size: clamp(28px, 2.2vw, 40px);
  margin:0;
}

.pay-lead{
  color:#3a3a3a;
  font-size: 16px;
  margin:0;
}

.pay-block{
  color:#2c2c2c;
}

.pay-step-title{
  font-weight: 800;
  color:#222;
  margin:0;
}

.pay-text{
  color:#3d3d3d;
  margin:0;
}

.pay-dl{
  margin:0;
}

.pay-dl__row{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items:start;
  padding: 2px 0;
}

.pay-dl dt{
  margin:0;
  font-weight: 800;
  color:#222;
}

.pay-dl dd{
  margin:0;
  color:#3b3b3b;
}

.pay-note-title{
  color:#2a2a2a;
  margin:0;
}

.pay-note{
  color:#2a2a2a;
  line-height: 1.7;
  max-width: 560px;
}

.pay-alert{
  background:#23282c;
  color:#fff;
  border-radius: 28px;
  padding: 42px 44px;
}

.pay-alert__title{
  font-weight: 800;
  text-align:center;
  margin:0;
}

.pay-alert__text{
  margin:0;
  color: rgba(255,255,255,.92);
  line-height: 1.8;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 991.98px){
  .pay-alert{
    padding: 30px 26px;
    border-radius: 22px;
  }

  .pay-dl__row{
    grid-template-columns: 88px 1fr;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    height: 100vh;       
    align-items: flex-end; 
    padding-bottom: 60px;  
  }

  .hero-overlay {
    
    background: linear-gradient(0deg, rgba(255,255,255,0.95) 20%, rgba(255,255,255,0) 100%);
  }

  .hero-container {
   margin: 0;
    text-align: center;  
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 36px) !important; 
  }
  /* 2) el slider toma la altura del hero (en vez de colapsar) */
.hero-slider {
  height: 100vh;
  min-height: 520px;
}

}

