.elementor-551 .elementor-element.elementor-element-4da8c83{--display:flex;--min-height:248px;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;}.elementor-551 .elementor-element.elementor-element-4da8c83:not(.elementor-motion-effects-element-type-background), .elementor-551 .elementor-element.elementor-element-4da8c83 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://viasted.globalinternational.edu.co/wp-content/uploads/2026/01/Generated-Image-January-07-2026-9_07PM.png");}.elementor-551 .elementor-element.elementor-element-4da8c83.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-551 .elementor-element.elementor-element-ebdced1{width:var( --container-widget-width, 38.299% );max-width:38.299%;--container-widget-width:38.299%;--container-widget-flex-grow:0;}.elementor-551 .elementor-element.elementor-element-ebdced1.elementor-element{--align-self:center;--flex-grow:0;--flex-shrink:0;}.elementor-551 .elementor-element.elementor-element-ebdced1 .elementor-heading-title{font-family:"Cormorant Garamond", Sans-serif;font-size:88px;color:#FFFFFF;}.elementor-551 .elementor-element.elementor-element-0d02bc2.elementor-element{--align-self:center;}.elementor-551 .elementor-element.elementor-element-0d02bc2{text-align:justify;}.elementor-551 .elementor-element.elementor-element-f439b16{--display:flex;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-551 .elementor-element.elementor-element-ebdced1{width:var( --container-widget-width, 185.819px );max-width:185.819px;--container-widget-width:185.819px;--container-widget-flex-grow:0;}.elementor-551 .elementor-element.elementor-element-ebdced1 .elementor-heading-title{font-size:44px;}}/* Start custom CSS for html, class: .elementor-element-4c499ab *//* =========================
   CONTENEDOR GENERAL
========================= */
.programs-wrapper {
  width: 100%;
}

/* =========================
   FILTROS (BOTONES ARRIBA)
========================= */
.program-filters {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.filter-btn {
  border: 1px solid #001C64;
  background: transparent;
  color: #001C64;
  padding: 8px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #e6eeff;
}

.filter-btn.active {
  background: #001C64;
  color: #ffffff;
}

/* =========================
   LISTADO DE TARJETAS
========================= */
#programs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =========================
   TARJETA
========================= */
.program-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border: 1px solid #dbe6ff;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
}

.program-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* =========================
   CONTENIDO IZQUIERDO
========================= */
.program-content {
  max-width: 75%;
}

/* ETIQUETAS (NIVEL + SEDE) */
.program-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.program-badge {
  border: 1px solid #4c7dff;
  color: #4c7dff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.program-location {
  border: 1px solid #0a2a66;
  color: #0a2a66;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* TÍTULO */
.program-title {
  margin: 10px 0 12px;
  font-size: 20px;
  color: #0a2a66;
}

/* INFO */
.program-info {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #5a6b8c;
}

/* =========================
   ACCIÓN / BOTÓN
========================= */
.program-action {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  color: #0a2a66;
}

/* FLECHA */
.program-action .arrow {
  width: 42px;
  height: 42px;
  background-color: #cfe0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

/* HOVER FLECHA */
.program-card:hover .program-action .arrow {
  background-color: #001C62;
  color: #ffffff;
}

/* =========================
   PAGINACIÓN
========================= */
.pagination {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination button {
  border: 1px solid #001C64;
  background: transparent;
  color: #4c7dff;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination button:hover {
  background: #e6eeff;
}

.pagination button.active {
  background: #001C64;
  color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .program-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .program-content {
    max-width: 100%;
  }

  .program-action {
    align-self: flex-end;
  }

  .program-info {
    flex-direction: column;
    gap: 5px;
  }
}
/* =========================
   MODAL SELECCIÓN PROGRAMA
========================= */

/* FONDO OSCURO */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

/* ACTIVO */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* CAJA */
.modal-box {
  background: #ffffff;
  padding: 30px;
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
  animation: modalFade 0.3s ease;
}

/* TÍTULO */
.modal-title {
  margin-bottom: 25px;
  font-size: 22px;
  color: #0a2a66;
}

/* GRUPOS */
.modal-group {
  margin-bottom: 20px;
}

.modal-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0a2a66;
}

.modal-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfd8f0;
  font-size: 14px;
  outline: none;
}

/* OCULTO */
.hidden {
  display: none;
}

/* BOTONES */
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 25px;
}

.modal-actions button {
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

#modal-cancelar {
  background: #e6eeff;
  color: #001C64;
}

#modal-aceptar {
  background: #001C64;
  color: #ffffff;
}

/* ANIMACIÓN */
@keyframes modalFade {
  from {
    transform: translateY(15px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .modal-box {
    padding: 25px 20px;
  }
}/* End custom CSS */