.seccion--seleccion {
  text-align: center;
  padding: 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin: 0 auto;
  /**/
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.491) 0%,
    rgba(255, 255, 255, 0.53) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-sizing: border-box;
  margin-top: 2rem;
}

.seccion--seleccion h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #113b8a;
  text-align: center;
}

.contenedor--opciones {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  /**/
}

.opcion {
  padding: 1.5rem;
  border-radius: 1rem;
  width: 550px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /**/
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.491) 0%,
    rgba(255, 255, 255, 0.53) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-sizing: border-box;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.opcion:hover {
  background: linear-gradient(135deg, rgb(24, 45, 114) 0%, #113b8ab0 100%);
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.opcion:hover h3,
.opcion:hover p {
  color: #ffffff;
}
