.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 h2 {
  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;
}

/* Cards */
.ps-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ps-card {
  background: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.ps-card:hover {
  transform: translateY(-6px);
}

.ps-card i {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.ps-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

/* 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;
}

/* Botón */
.ps-boton {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.btn-reglamento {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border: 2px solid #1e3a8a;
  border-radius: 30px;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-reglamento:hover {
  border: none;
  background: #f6303a;
  color: #fff;
}

/* LAYOUT PRINCIPAL */
.ps-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

/* COLUMNA DE CARDS */
.ps-cards-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Cards (se reutiliza tu diseño) */
.ps-card {
  background: #fff;
  padding: 1rem;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.ps-card:hover {
  transform: translateY(-5px);
}

/* COLUMNA DE INFO */
.ps-info-column {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Caja de información */
.ps-info-box {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 14px;
  border-left: 5px solid #1e3a8a;
}

.ps-info-box h3 {
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ps-info-box ol,
.ps-info-box ul {
  padding-left: 1.2rem;
}

.ps-info-box li {
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ps-layout {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   AGREGADO: RESPONSIVIDAD PARA MÓVILES 
   ========================================== */

@media (max-width: 600px) {
  .procesos-seleccion {
    margin: 2rem auto;
  }

  .ps-header h2 {
    font-size: 1.6rem; /* Título un poco más pequeño en móviles */
  }

  .ps-header p {
    font-size: 1rem;
    text-align: left; /* El texto justificado suele verse mal en pantallas muy angostas */
  }

  .ps-info-box {
    padding: 1.5rem; /* Reducción de relleno para ganar espacio */
  }

  .ps-title {
    font-size: 0.95rem; /* Ajuste sutil al acordeón */
    padding: 1rem 0.8rem;
  }

  .btn-reglamento {
    width: 100%; /* El botón ocupa todo el ancho para facilitar el clic */
    justify-content: center;
  }

  .ps-layout {
    gap: 2rem;
  }
}