/* ==========================================================================
   ESTUDIANTES PAGE STYLES — estudiantes.css
   ========================================================================== */

/* Variables locales */
:root {
  --color-primary: #124b77;
  --color-primary-dark: #0d3a5f;
  --color-accent: #f5a623;
  --color-accent-dark: #e09510;
  --color-text-dark: #1a1a1a;
  --color-text-muted: #555555;
  --color-bg-light: #f8f9fa;
  --font-family-title: "Montserrat", sans-serif;
}

/* Base Page Padding Adjustments */
.estudiantes-page {
  background: #ffffff;
}

.hero-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-family-title);
}

/* Secciones Generales */
.estudiantes-section {
  padding: 80px 0;
}

.bg-light-gray {
  background-color: var(--color-bg-light);
}

/* Títulos con Línea Naranja debajo */
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #212529;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  font-family: var(--font-family-title);
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-family-title);
}

/* Tarjeta 1: Accesos Rápidos */
.student-card-modern {
  background: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.3s ease;
}

.student-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(18, 75, 119, 0.1);
  border-color: rgba(245, 166, 35, 0.3);
}

.card-icon-wrapper {
  width: 54px;
  height: 54px;
  background-color: rgba(18, 75, 119, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.student-card-modern:hover .card-icon-wrapper {
  background-color: var(--color-accent);
  color: #ffffff !important;
}

.student-card-modern .card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  font-family: var(--font-family-title);
  transition: color 0.3s ease;
}

.student-card-modern:hover .card-title {
  color: var(--color-primary);
}

.student-card-modern .card-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  font-family: var(--font-family-title);
}

.btn-card-action {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--color-primary);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.1s ease;
  font-family: var(--font-family-title);
}

.btn-card-action:hover {
  background-color: var(--color-accent);
  transform: translateY(-1px);
}

/* Tarjeta 2: Calendario Académico (Horizontal) */
.horizontal-calendar-card {
  background: #F8F3E8;
  border: 1px solid #eef2f5;
  border-left: 6px solid var(--carrera-color, var(--color-accent));
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.horizontal-calendar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  background-color: #F2E8D8;
}

.badge-utn {
  background-color: rgba(18, 75, 119, 0.1);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
}

.calendar-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  font-family: var(--font-family-title);
}

.calendar-dates {
  font-size: 14.5px;
  color: var(--color-text-muted);
  font-family: var(--font-family-title);
}

.calendar-dates i {
  color: var(--carrera-color, var(--color-accent));
}

.btn-calendar-download {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 2px solid var(--carrera-color, var(--color-primary));
  color: var(--carrera-color, var(--color-primary)) !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.2s ease;
  font-family: var(--font-family-title);
}

.btn-calendar-download:hover {
  background-color: var(--carrera-color, var(--color-primary));
  color: #ffffff !important;
}

/* Tarjeta 3: Horarios de Cursado */
.schedule-card {
  background: #ffffff;
  border: 1px solid #eef2f5;
  border-bottom: 4px solid var(--color-primary);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-bottom-color 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(18, 75, 119, 0.1);
  border-bottom-color: var(--color-accent);
}

.schedule-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.4;
  font-family: var(--font-family-title);
}

.schedule-card:hover .schedule-title {
  color: var(--color-primary);
}

.schedule-meta {
  font-size: 14px;
  color: var(--color-text-muted);
  font-family: var(--font-family-title);
}

.schedule-meta i {
  color: var(--color-accent) !important;
  width: 18px;
}

.btn-schedule-action {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: var(--color-primary);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease;
  font-family: var(--font-family-title);
}

.btn-schedule-action:hover {
  background-color: var(--color-accent);
}

/* Sección 4: Información Académica (Dashboard) */
.info-dashboard-card {
  background: #ffffff;
  /* Fondo blanco */
  border: 1px solid #eef2f5;
  /* Borde sutil gris claro */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  /* Sombra aún más marcada */
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  padding: 14px 18px !important;
  /* Espaciado interno reducido para que sea más compacto */
  gap: 1rem !important;
  min-height: 110px;
  /* Altura mínima ajustada al nuevo padding */
}

.info-dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(18, 75, 119, 0.22);
  /* Sombra al hacer hover más intensa */
  border-color: rgba(18, 75, 119, 0.25);
  background-color: #ffffff;
}

.dashboard-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.info-dashboard-card:hover .dashboard-icon {
  background-color: var(--color-accent) !important;
  color: #ffffff !important;
}

.bg-orange-light {
  background-color: var(--color-accent);
}

.bg-blue-light {
  background-color: rgba(18, 75, 119, 0.15);
}

.text-orange {
  color: var(--color-accent);
}

.text-blue {
  color: var(--color-primary);
}

.dashboard-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  /* Texto oscuro para legibilidad sobre fondo blanco */
  font-family: var(--font-family-title);
  line-height: 1.3;
  margin-bottom: 4px !important;
}

.dashboard-card-link {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: var(--font-family-title);
}

.dashboard-card-link:hover {
  color: var(--color-primary);
  /* Enlace azul al hacer hover */
  text-decoration: underline;
}

.estudiantes-quick-access__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
  min-height: 88px;
  padding: 0.9rem 1rem;
  color: var(--color-text-dark);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.estudiantes-quick-access__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  font-size: 1.8rem;
}

.estudiantes-quick-access__icon > i,
.estudiantes-quick-access__icon > svg {
  width: 36px;
  height: 36px;
  font-size: 36px;
}

.estudiantes-quick-access__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: opacity 0.2s ease;
}

.estudiantes-quick-access__image--hover {
  opacity: 0;
}

.estudiantes-quick-access__content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 0.15rem;
}

.estudiantes-quick-access__title {
  display: block;
  font-family: var(--font-family-title);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.2;
}

.estudiantes-quick-access__description {
  display: block;
  color: #64748b;
  font-size: 12.5px;
  line-height: 1.25;
}

.estudiantes-quick-access__arrow {
  color: var(--color-accent);
  flex: 0 0 auto;
  font-size: 1.20rem;
  line-height: 1;
  transition: transform 0.15s ease;
}

.estudiantes-quick-access__link:hover,
.estudiantes-quick-access__link:focus-visible {
  color: var(--color-text-dark);
  border-color: var(--color-accent);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.estudiantes-quick-access__link:focus-visible {
  outline: 3px solid rgba(245, 168, 0, 0.35);
  outline-offset: 3px;
}

.estudiantes-quick-access__link:hover .estudiantes-quick-access__arrow,
.estudiantes-quick-access__link:focus-visible .estudiantes-quick-access__arrow {
  transform: translateX(4px);
}

.estudiantes-quick-access__link:hover .estudiantes-quick-access__image--default,
.estudiantes-quick-access__link:focus-visible .estudiantes-quick-access__image--default {
  opacity: 0;
}

.estudiantes-quick-access__link:hover .estudiantes-quick-access__image--hover,
.estudiantes-quick-access__link:focus-visible .estudiantes-quick-access__image--hover {
  opacity: 1;
}

.estudiantes-quick-access__icon--large {
  transform: scale(1.2);
  transform-origin: center bottom;
}

/* Responsiveness adjustments */
@media (max-width: 991.98px) {
  .hero-description {
    font-size: 17px;
  }

  .section-title {
    font-size: 28px;
  }

  .estudiantes-section {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .hero-description {
    font-size: 15px;
  }

  .estudiantes-quick-access__link {
    max-width: 340px;
    margin-inline: auto;
  }

  .horizontal-calendar-card {
    text-align: center;
  }

  .calendar-dates {
    display: inline-block;
    text-align: left;
  }

  .calendar-action {
    text-align: center !important;
  }

  .btn-calendar-download {
    width: 140px;
    padding: 8px 0;
    font-size: 12px;
    justify-content: center;
    display: inline-flex;
  }
}

.schedule-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-family-title);
  border-bottom: 2px solid rgba(18, 75, 119, 0.1);
  padding-bottom: 10px;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ocultar etiquetas (GRADO, COMÚN, TECNICATURA) */
.horizontal-calendar-card .badge-utn {
  display: none !important;
}

/* Enlaces de Interés (Diseño de Tarjetas Horizontales Separadas) */
.interest-separated-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  text-decoration: none !important;
  transition: all 0.2s ease;
  height: 100%;
}

.interest-separated-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(18, 75, 119, 0.15);
}

.interest-separated-card .card-icon {
  font-size: 18px;
  color: var(--color-primary);
  background: rgba(18, 75, 119, 0.06);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.interest-separated-card:hover .card-icon {
  background: var(--color-accent);
  color: #ffffff !important;
}

.interest-separated-card .card-content {
  flex-grow: 1;
}

.interest-separated-card .card-title {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 2px;
  font-family: var(--font-family-title);
}

.interest-separated-card .card-desc {
  display: block;
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.interest-separated-card .card-arrow {
  color: var(--color-primary);
  font-size: 14px;
  transition: transform 0.2s ease, color 0.2s ease;
  margin-left: auto;
}

.interest-separated-card:hover .card-arrow {
  color: var(--color-accent);
  transform: translateX(3px);
}

/* Enlaces de Interés (Diseño de Tarjetas con Iconos Destacados) */
.interest-featured-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid #f1f3f5;
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  text-decoration: none !important;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
}

.interest-featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.interest-featured-card .featured-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.interest-featured-card:hover .featured-icon-wrapper {
  transform: scale(1.08);
}

.interest-featured-card .featured-card-title {
  font-size: 16.5px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  font-family: var(--font-family-title);
  line-height: 1.3;
}

.interest-featured-card .featured-card-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 24px;
  flex-grow: 1;
}

.interest-featured-card .featured-card-arrow {
  font-size: 18px;
  transition: transform 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.interest-featured-card:hover .featured-card-arrow {
  transform: translateY(3px);
}

/* Rotación de la flecha cuando la tarjeta de interés está expandida (ej: Visita a Empresas) */
.interest-featured-card[aria-expanded="true"] .featured-card-arrow {
  transform: rotate(90deg);
}

.interest-featured-card[aria-expanded="true"]:hover .featured-card-arrow {
  transform: rotate(90deg) translateX(3px);
}

/* Modificadores de Color */
/* 1. Purple (Libro de Temas) */
.interest-card--purple .featured-icon-wrapper {
  background-color: #f3e8ff;
  color: #7c3aed;
}

.interest-card--purple .featured-card-arrow {
  color: #7c3aed;
}

/* 2. Green (Sistema de Licencias) */
.interest-card--green .featured-icon-wrapper {
  background-color: #dcfce7;
  color: #16a34a;
}

.interest-card--green .featured-card-arrow {
  color: #16a34a;
}

/* 3. Blue (Visita a Empresas) */
.interest-card--blue .featured-icon-wrapper {
  background-color: #dbeafe;
  color: #2563eb;
}

.interest-card--blue .featured-card-arrow {
  color: #2563eb;
}

/* 4. Orange (FAGDUT) */
.interest-card--orange .featured-icon-wrapper {
  background-color: rgba(245, 168, 0, 0.1);
  color: #F5A800;
}

.interest-card--orange .featured-card-arrow {
  color: #F5A800;
}

/* 5. Teal (ADUT) */
.interest-card--teal .featured-icon-wrapper {
  background-color: #ccfbf1;
  color: #0d9488;
}

.interest-card--teal .featured-card-arrow {
  color: #0d9488;
}

/* Concursos Docentes - Rediseño */
.concursos-card {
  background: #ffffff;
  border: 1px solid #f1f3f5;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.concursos-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.concursos-icon-circle {
  width: 56px;
  height: 56px;
  background-color: rgba(245, 168, 0, 0.1);
  color: #F5A800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.concursos-title-wrapper {
  display: flex;
  flex-direction: column;
}

.concursos-title {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
  font-family: var(--font-family-title);
}

.concursos-title-line {
  width: 50px;
  height: 3px;
  background-color: #F5A800;
  margin-top: 6px;
  border-radius: 2px;
}

.concursos-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
  margin: 12px 0 20px 0;
}

.concursos-item-row {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 16px;
  transition: all 0.2s ease;
  text-decoration: none !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.concursos-item-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* Modificadores de color de fila */
.concursos-item--blue {
  border-left: 4px solid #2563eb;
}

.concursos-item--green {
  border-left: 4px solid #16a34a;
}

.concursos-item-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  margin-right: 18px;
}

.concursos-item--blue .concursos-item-icon-box {
  background-color: #eff6ff;
  color: #2563eb;
}

.concursos-item--green .concursos-item-icon-box {
  background-color: #f0fdf4;
  color: #16a34a;
}

.concursos-item-content {
  flex-grow: 1;
}

.concursos-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
  font-family: var(--font-family-title);
}

.concursos-item-desc {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
}

.concursos-item-action {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-family-title);
}

.concursos-item-action-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.concursos-item-row:hover .concursos-item-action-circle {
  transform: scale(1.08);
}

.concursos-item--blue .concursos-item-action {
  color: #2563eb;
}

.concursos-item--blue .concursos-item-action-circle {
  background-color: #eff6ff;
  color: #2563eb;
}

.concursos-item--green .concursos-item-action {
  color: #16a34a;
}

.concursos-item--green .concursos-item-action-circle {
  background-color: #f0fdf4;
  color: #16a34a;
}

/* Info Footer Banner */
.concursos-info-footer {
  background-color: #fff8eb;
  padding: 16px 24px;
  border-top: 1px solid #ffe8cc;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #7c2d12;
}

.concursos-info-footer i {
  font-size: 18px;
  color: #F5A800;
  flex-shrink: 0;
}

.concursos-info-footer p {
  margin: 0;
  line-height: 1.5;
}

.concursos-info-link {
  color: #F5A800;
  font-weight: 700;
  text-decoration: none;
}

.concursos-info-link:hover {
  text-decoration: underline;
  color: #D49100;
}

/* Comunidad Graduados - Tarjetas Exclusivas */
.graduados-community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.graduados-community-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.graduados-community-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--card-accent-color, var(--color-accent));
  transition: height 0.2s ease;
}

.graduados-community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.graduados-community-card:hover::before {
  height: 6px;
}

.graduados-card-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: var(--card-bg-light, rgba(245, 168, 0, 0.08));
  color: var(--card-accent-color, var(--color-accent));
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.graduados-card-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.graduados-card-icon-row i {
  font-size: 22px;
  color: var(--card-accent-color, var(--color-accent));
}

.graduados-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  font-family: var(--font-family-title);
}

.graduados-card-text {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.graduados-card-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--card-accent-color, var(--color-accent));
  text-decoration: none !important;
  transition: gap 0.2s ease;
  margin-top: auto;
  font-family: var(--font-family-title);
}

.graduados-card-link-btn:hover {
  gap: 10px;
  color: var(--card-accent-color, var(--color-accent));
}

/* Graduados: Línea de tiempo / Pasos del trámite */
.tramite-timeline {
  position: relative;
  padding: 10px 0;
}

.tramite-step {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

/* Línea de conexión dinámica que empieza en el centro de 1 y termina en el centro de 5 */
.tramite-step::before {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -25px;
  height: 25px;
  width: 2px;
  background-color: #e2e8f0;
  z-index: 1;
}

.tramite-step::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e2e8f0;
  z-index: 1;
}

.tramite-step:first-child::after {
  top: 50%;
}

.tramite-step:last-child::before {
  display: none;
}

.tramite-step:last-child::after {
  bottom: 50%;
}

.tramite-step:last-child {
  margin-bottom: 0;
}

.tramite-step-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #F5A800;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(245, 168, 0, 0.2);
  z-index: 2;
}

.tramite-step-content {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 20px;
  border-radius: 14px;
  flex-grow: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: all 0.2s ease;
}

.tramite-step:hover .tramite-step-content {
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.tramite-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
  font-family: var(--font-family-title);
}

.tramite-step-desc {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Posgrados */
.posgrado-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.posgrado-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.posgrado-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
}

.posgrado-card-header {
  padding: 24px 20px;
  color: #ffffff;
  position: relative;
}

.posgrado-card-abbr {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
}

.posgrado-card-title {
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  line-height: 1.4;
  font-family: var(--font-family-title);
}

.posgrado-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.posgrado-card-text {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.posgrado-card-meta {
  border-top: 1px solid #f1f5f9;
  padding-top: 15px;
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #475569;
  margin-top: auto;
}

.posgrado-card-meta i {
  color: #F5A800;
}

/* Nuevo contenedor CV horizontal matching mockup */
.cv-container-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
  padding: 24px;
  margin-top: 3rem;
}

.cv-badge {
  background-color: #f1f0fe;
  color: #6366f1;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.cv-badge.theme-orange {
  background-color: #fffbeb;
  color: #f59e0b;
}

.cv-title-main {
  font-family: var(--font-family-title);
  font-weight: 800;
  font-size: 20px;
  color: #0f172a;
  line-height: 1.2;
}

.cv-title-line {
  width: 50px;
  height: 4px;
  background-color: #6366f1;
  border-radius: 2px;
  margin: 15px 0 20px 0;
  position: relative;
}

.cv-title-line::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: inherit;
  border-radius: 50%;
}

.cv-subtitle {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 30px;
}

/* Icono superior del CV con destellos */
.cv-top-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.cv-top-icon {
  width: 48px;
  height: 48px;
  background-color: #f1f0fe;
  color: #6366f1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.cv-sparkle {
  position: absolute;
  color: #6366f1;
}

.cv-sparkle-1 {
  top: 10px;
  right: -12px;
  font-size: 10px;
}

.cv-sparkle-2 {
  bottom: 12px;
  right: -16px;
  font-size: 6px;
}

/* Ilustración del CV en CSS */
.cv-illustration-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cv-ill-bg-circle {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.cv-ill-dots {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
  background-size: 10px 10px;
  opacity: 0.6;
  z-index: 1;
}

.cv-ill-sheet {
  position: relative;
  width: 160px;
  height: 210px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  padding: 20px 15px;
  z-index: 2;
  transform: rotate(-5deg);
}

.cv-ill-avatar {
  width: 32px;
  height: 32px;
  background-color: #f1f0fe;
  color: #6366f1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 14px;
}

.cv-ill-line {
  height: 4px;
  background-color: #f1f5f9;
  border-radius: 2px;
  margin-bottom: 10px;
}

.cv-ill-line.short {
  width: 60%;
}

.cv-ill-line.medium {
  width: 80%;
}

.cv-ill-check-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cv-ill-check-icon {
  width: 14px;
  height: 14px;
  background-color: #a5b4fc;
  /* Light purple circle */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-family: FontAwesome;
  min-width: 14px;
}

.cv-ill-check-icon::before {
  content: "\f00c";
  /* FontAwesome check symbol */
}

.cv-ill-line-placeholder {
  height: 3px;
  background-color: #e2e8f0;
  border-radius: 1.5px;
  flex-grow: 1;
}

.cv-ill-badge {
  position: absolute;
  bottom: 10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background-color: #6366f1;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
  font-size: 16px;
  z-index: 3;
}

/* Tarjetas individuales de recomendación */
.cv-rec-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cv-rec-card:hover {
  transform: translateX(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.cv-rec-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
}

/* Temas de color para las tarjetas */
.cv-rec-card.theme-purple::after {
  background-color: #6366f1;
}

.cv-rec-card.theme-blue::after {
  background-color: #3b82f6;
}

.cv-rec-card.theme-green::after {
  background-color: #10b981;
}

.cv-rec-card.theme-orange::after {
  background-color: #f59e0b;
}

.cv-rec-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  min-width: 48px;
}

.cv-rec-card.theme-purple .cv-rec-icon-box {
  background-color: #f1f0fe;
  color: #6366f1;
}

.cv-rec-card.theme-blue .cv-rec-icon-box {
  background-color: #eff6ff;
  color: #3b82f6;
}

.cv-rec-card.theme-green .cv-rec-icon-box {
  background-color: #ecfdf5;
  color: #10b981;
}

.cv-rec-card.theme-orange .cv-rec-icon-box {
  background-color: #fffbeb;
  color: #f59e0b;
}

.cv-rec-body {
  flex-grow: 1;
}

.cv-rec-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 16px;
  margin-bottom: 4px;
  font-family: var(--font-family-title);
}

.cv-rec-text {
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

.cv-rec-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  min-width: 28px;
}

.cv-rec-card.theme-purple .cv-rec-number {
  background-color: #6366f1;
}

.cv-rec-card.theme-blue .cv-rec-number {
  background-color: #3b82f6;
}

.cv-rec-card.theme-green .cv-rec-number {
  background-color: #10b981;
}

.cv-rec-card.theme-orange .cv-rec-number {
  background-color: #f59e0b;
}

/* Pestañas personalizadas UTN (Estilo Concursos / Investigadores) */
.custom-utn-tabs {
  border: none !important;
  background-color: transparent !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  max-width: 100% !important;
  padding-bottom: 4px !important;
}

.custom-utn-tabs::-webkit-scrollbar {
  display: none !important;
}

.custom-utn-tabs .nav-item {
  flex-shrink: 0 !important;
}

.custom-utn-tabs .nav-link {
  white-space: nowrap !important;
  color: #111827 !important;
  background-color: transparent !important;
  border: 1.5px solid transparent !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 10px 24px !important;
  transition: all 0.2s ease-in-out !important;
}

@media (max-width: 767.98px) {
  .custom-utn-tabs .nav-link {
    font-size: 11.5px !important;
    padding: 8px 16px !important;
  }
}

.custom-utn-tabs .nav-link:hover {
  color: #F5A800 !important;
  border-color: #F5A800 !important;
  background-color: transparent !important;
}

.custom-utn-tabs .nav-link.active {
  background-color: #F5A800 !important;
  border-color: #F5A800 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(245, 168, 0, 0.3) !important;
}

/* ==========================================================================
   Sección: Novedades de Graduados
   ========================================================================== */
.novedad-graduado-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eef2f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.novedad-graduado-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(18, 75, 119, 0.15);
}

.novedad-img-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.novedad-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.novedad-graduado-card:hover .novedad-img-wrapper img {
  transform: scale(1.06);
}

.novedad-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: rgba(18, 75, 119, 0.9);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

.novedad-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.novedad-date {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 8px;
}

.novedad-title {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  font-family: var(--font-family-title);
  line-height: 1.35;
  margin-bottom: 10px;
}

.novedad-excerpt {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.novedad-link-btn {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.novedad-link-btn:hover {
  color: var(--color-primary);
  gap: 10px;
}


/* ==========================================================================
   Sección: Censo de Graduados (Flyers & Relevamiento)
   ========================================================================== */
.censo-container-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.censo-stat-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.censo-stat-box:hover {
  transform: translateY(-3px);
  border-color: #f97316;
}

.censo-stat-value {
  font-size: 32px;
  font-weight: 800;
  color: #f97316;
  font-family: var(--font-family-title);
  line-height: 1;
  margin-bottom: 4px;
}

.censo-stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  line-height: 1.3;
}

.censo-flyer-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #cbd5e1;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.censo-flyer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.censo-flyer-header {
  position: relative;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
}

.censo-flyer-badge {
  background-color: #f97316;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.censo-flyer-preview {
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.25rem;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.censo-flyer-img {
  max-height: 220px;
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* ==========================================================================
   Buscador y Filtros al Estilo Galería (Bolsa de Empleo - Neutral Theme)
   ========================================================================== */
.empleo-search-bar-container {
  width: 100%;
  max-width: 950px;
  margin: 0 auto 2rem;
}

.empleo-search-group {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 50px;
  padding: 0 12px;
  height: 48px;
  flex-grow: 1;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.empleo-search-group:focus-within {
  border-color: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.15);
}

.empleo-search-icon {
  color: #64748b;
  margin-left: 12px;
  font-size: 1.1rem;
}

.empleo-search-input {
  background: transparent;
  border: none;
  color: #1e293b;
  padding: 8px 12px;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  font-family: var(--font-family-body);
}

.empleo-search-input::placeholder {
  color: #94a3b8;
}

.empleo-toggle-filters-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #64748b;
  font-weight: 400;
  padding: 0 20px;
  height: 48px;
  border-radius: 50px;
  letter-spacing: normal;
  font-size: 0.95rem;
  text-transform: none;
  font-family: var(--font-family-body);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  width: auto;
  min-width: 110px;
  max-width: 150px;
  flex-shrink: 0;
  outline: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

@media (max-width: 575.98px) {
  .empleo-toggle-filters-btn {
    min-width: auto;
    padding: 0 14px;
    font-size: 0.88rem;
    height: 44px;
  }
}

.empleo-toggle-filters-btn:hover {
  background-color: #f8fafc;
  color: #1e293b;
  border-color: #94a3b8;
}

.empleo-toggle-filters-btn[aria-expanded="true"] {
  background-color: #f1f5f9;
  border-color: #94a3b8;
  color: #1e293b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.empleo-toggle-filters-btn .toggle-chevron {
  transition: transform 0.25s ease;
}

.empleo-toggle-filters-btn[aria-expanded="true"] .toggle-chevron {
  transform: rotate(180deg);
}

.empleo-filters-panel {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 2rem;
  color: #1e293b;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.empleo-filter-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.empleo-filter-select {
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  font-size: 0.9rem;
  border-radius: 8px;
  padding: 10px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.25s ease;
  cursor: pointer;
}

.empleo-filter-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background-color: #ffffff;
}

.empleo-filter-select option {
  background-color: #ffffff;
  color: #1e293b;
}

.empleo-reset-filters-btn {
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 8px;
  width: 100%;
  transition: all 0.2s ease;
  cursor: pointer;
  height: 42px;
}

.empleo-reset-filters-btn:hover {
  background-color: #e2e8f0;
  color: #0f172a;
}

.job-card-interactive {
  cursor: pointer;
  border: 1px solid #e2e8f0 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.job-card-interactive:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08) !important;
  border-color: #cbd5e1 !important;
}

.extra-small {
  font-size: 11.5px;
}

.btn-postularse-red {
  transition: transform 0.15s ease, background-color 0.2s ease;
}

.btn-postularse-red:hover {
  background-color: #b91c1c !important;
  transform: scale(1.03);
}

.hover-dark:hover {
  color: #0f172a !important;
}

/* Badges personalizados con colores especificos */
.job-badge-tipo, .job-badge-modalidad {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-block;
  line-height: 1.2;
}

.job-badge-presencial {
  background-color: #e0e7ff;
  color: #3730a3;
  border: 1px solid #c7d2fe;
}

.job-badge-hibrido {
  background-color: #f3e8ff;
  color: #6b21a8;
  border: 1px solid #e9d5ff;
}

.job-badge-remoto {
  background-color: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}

.job-badge-empleo {
  background-color: #e0f2fe;
  color: #0369a1;
  border: 1px solid #7dd3fc;
}

.job-badge-pasantia {
  background-color: #ffedd5;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

/* Ocultar barra de desplazamiento en el Modal de Detalle de Oferta */
#detalleOfertaModal .modal-body,
#detalleOfertaModal .modal-dialog-scrollable .modal-body,
#detalleOfertaModal .modal-content {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

#detalleOfertaModal .modal-body::-webkit-scrollbar,
#detalleOfertaModal .modal-dialog-scrollable .modal-body::-webkit-scrollbar,
#detalleOfertaModal ::-webkit-scrollbar {
  width: 0px !important;
  height: 0px !important;
  background: transparent !important;
  display: none !important;
}

/* Contenedor del Mapa Embebido de Google My Maps (Graduados por el Mundo) */
.map-embed-container {
  width: 100%;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07) !important;
}

.map-embed-container iframe {
  width: 100%;
  height: 650px;
  border: 0;
  display: block;
}

@media (max-width: 767.98px) {
  .map-embed-container iframe {
    height: 480px;
  }
}

/* ==========================================
   SECCION DE GESTION DE OPORTUNIDADES Y RECOMENDACIONES CV (GRADUADOS)
   ========================================== */

/* Tarjeta Izquierda: Gestión de Oportunidades */
.oportunidades-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  min-height: 420px !important;
  height: auto !important;
}

.oportunidades-card-body {
  position: relative;
  z-index: 2;
  max-width: 310px;
  min-height: 330px;
}

.oportunidades-badge {
  background-color: #eff6ff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 14px;
}

.oportunidades-title {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.25;
}

.oportunidades-underline {
  width: 38px;
  height: 3.5px;
  background-color: #2563eb;
  border-radius: 2px;
  margin-bottom: 20px;
}

.oportunidades-text {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.btn-publicar-busqueda {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-publicar-busqueda:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.45);
  color: #ffffff !important;
}

.oportunidades-illustration {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 210px;
  height: 82%;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
}

.oportunidades-illustration svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

@media (max-width: 991.98px) {
  .oportunidades-illustration {
    display: none;
  }
  .oportunidades-card-body {
    max-width: 100%;
  }
}

/* Tarjeta Derecha: Recomendaciones para tu CV */
.cv-recomendaciones-card {
  background: #fffdf5 !important;
  border: 1px solid #fef3c7 !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03) !important;
}

.cv-icon-box-header {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: #fef3c7;
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.cv-badge {
  background-color: #fef3c7;
  color: #d97706;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}

.cv-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.25;
}

.cv-underline {
  width: 38px;
  height: 3.5px;
  background-color: #f59e0b;
  border-radius: 2px;
  margin-bottom: 24px;
}

/* Items individuales de CV */
.cv-item-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.025);
  border: 1px solid rgba(245, 158, 11, 0.12);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cv-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.08);
}

.cv-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #fffbeb;
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cv-item-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.cv-item-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 0;
}

/* Callout inferior de CV */
.cv-callout-card {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.cv-callout-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f59e0b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.cv-callout-text-main {
  font-size: 13.5px;
  color: #475569;
}

.cv-callout-text-highlight {
  font-size: 14px;
  font-weight: 700;
  color: #d97706;
  display: block;
  margin-top: 2px;
}