@import url("inicio.css");

/* ===== SECCIÓN CONVOCATORIAS ===== */
.convocatorias {
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.convocatorias h1 {
  font-size: 2.5rem;
  color: #0a3d62;
  margin-bottom: 1rem;
  text-align: center;
}

.convocatorias .intro {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.convocatorias h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #e63946;
  text-align: center;
}

.perfil {
  background: #fafafa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform .3s ease;
}

.perfil:hover {
  transform: translateY(-5px);
}

.perfil h3 {
  margin-bottom: .8rem;
  color: #333;
}

.perfil p {
  margin-bottom: .4rem;
}

