.admisiones-main {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  padding: 2rem;
  background-color: #f9f9f9;
}

.titulo-principal {
  font-size: 2.5rem;
  font-weight: bold;
  color: #006699;
  margin-bottom: 1rem;
  text-align: center;
}

.subtitulo {
  font-size: 1.8rem;
  color: #004466;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-left: 5px solid #00bcd4;
  padding-left: 10px;
}

.pais {
  font-size: 1.5rem;
  color: #006699;
  margin-top: 1.5rem;
}

.descripcion {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.lista-requisitos {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.lista-requisitos li {
  margin-bottom: 0.5rem;
}

a {
  color: #0077cc;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
  color: #005fa3;
}
.admisiones-main {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #333;
  background-color: #fff;
  padding: 2rem 1rem;
}

.titulo-principal {
  font-size: 2.8rem;
  font-weight: bold;
  color: #004c75;
}

.subtitulo {
  font-size: 2rem;
  color: #0077b6;
  border-bottom: 2px solid #00bcd4;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.lista-requisitos {
  list-style: disc;
  padding-left: 1.2rem;
}

.lista-requisitos li {
  margin-bottom: 0.5rem;
}

.card {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.descripcion {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

a {
  color: #005fa3;
  text-decoration: underline;
}





.admisiones-main {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #333;
  padding: 2rem 1rem;
  /* Fondo con degradado suave */
  background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
  min-height: 100vh;
}




.card {
  background-color: rgba(255, 255, 255, 0.85); /* blanco con transparencia */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease;
}

/* Pequeña animación al pasar el mouse */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}




.card {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}





.lista-requisitos li, .descripcion {
  color: #222; /* un gris oscuro para mejor lectura */
}




.admisiones-main {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #333;
  padding: 10rem 1rem 2rem; /* espacio arriba mayor */
  background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
  min-height: 100vh;
  max-width: 900px;   /* ancho máximo para contenido */
  margin: 0 auto;     /* centrado horizontal */
}

.titulo-principal {
  font-size: 2.8rem;
  font-weight: bold;
  color: #004c75;
  margin-bottom: 2rem;
  text-align: center;
}

.subtitulo {
  font-size: 2rem;
  color: #0077b6;
  border-bottom: 2px solid #00bcd4;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.lista-requisitos {
  list-style: disc;
  padding-left: 1.2rem;
}

.lista-requisitos li {
  margin-bottom: 0.5rem;
  color: #222;
}

.card {
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.descripcion {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #222;
  margin-bottom: 1.5rem;
  text-align: justify;
}

a {
  color: #005fa3;
  text-decoration: underline;
}

a:hover {
  color: #003f6b;
  text-decoration: none;
}

/* Para que las columnas no se monten en pantallas grandes */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.col-md-6 {
  flex: 1 1 45%; /* ancho flexible pero máximo 45% */
  min-width: 280px;
}

