* {

  font-family: "Montserrat", sans-serif;
}

.procesos-seleccion {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
  font-family: "Montserrat", sans-serif;
}

.ps-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ps-header h1 {
  font-family: "Montserrat", sans-serif;
  color: #1e3a8a;
  margin: 4rem auto;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ps-header p {
  color: #333;
  font-size: 1.2rem;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  justify-content: center;
  text-align: justify;
}

/* Accordion */
.ps-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.ps-item {
  border-bottom: 1px solid #ddd;
}

.ps-title {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ps-title:hover {
  background-color: #f5f7fa;
}

.ps-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.ps-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.2rem;
}

.ps-content ol,
.ps-content ul {
  padding: 1rem 1.2rem 1.5rem;
}

/* Ajustes específicos para PDFs */
.academicas .ps-content iframe {
  width: 100%;
  height: 600px;
  border: none;
  margin-bottom: 1.5rem;
}

/* Separación inferior */
.academicas {
  margin-bottom: 5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .academicas .ps-content iframe {
    height: 450px;
  }
}

/* GRID PRINCIPAL */
.normativas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

/* Columna de normativa */
.normativa-col {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
}

/* Título de cada bloque */
.normativa-title {
  text-align: center;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Ajuste del acordeón dentro */
.normativa-col .ps-accordion {
  max-width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .normativas-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   AGREGADO DE RESPONSIVIDAD ADICIONAL (Móvil)
   ========================================== */

@media (max-width: 600px) {
  .procesos-seleccion {
    margin: 2rem auto; /* Reduce el margen superior en móviles */
  }

  .ps-header h1 {
    font-size: 1.8rem; /* Título más pequeño para pantallas chicas */
    margin: 2rem auto;
  }

  .ps-header p {
    font-size: 1rem; /* Texto más legible en móvil */
    text-align: left; /* Evita espacios extraños del justificado en pantallas angostas */
  }

  .ps-title {
    font-size: 0.95rem; /* Ajuste sutil al título del acordeón */
    padding: 1rem 0.8rem;
  }

  .normativa-col {
    padding: 1.5rem 1rem; /* Menos espacio interno en las columnas */
  }

  .academicas .ps-content iframe {
    height: 350px; /* Iframe más corto para móviles */
  }
  
  .ps-content {
    padding: 0 0.5rem; /* Reduce padding lateral para ganar espacio de lectura */
  }
}