.welcome{
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.welcome__overlay{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  /* opcional: mejora legibilidad sobre la imagen */
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.35),
    rgba(0,0,0,.55)
  );
}

.welcome__card{
  width: min(720px, 100%);
  text-align: center;
}

.welcome__title{
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: clamp(2px, 1vw, 7px);
  margin: 0 0 12px 0;
}

.welcome__text{
  font-size: clamp(16px, 2.2vw, 24px);
  line-height: 1.35;
  margin: 0 auto;
  width: min(60ch, 100%);
}

.welcome__actions{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.welcome__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 18px;
  text-decoration: none;
  background: var(--red);
  color: #fff;
  width: min(280px, 100%);
  font-size: 16px;
}

.welcome__btn--ghost{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.35);
}