.lbl_bienvenida_vg_plan h1 {
  font-family: Gloock, Verdana;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 1.5px;
  color: #f6fffe;
  background-color: #007848;
  border-radius: 10px;
  padding: 10px 20px;
  position: relative;
  width: 480px;
  margin-left: 60px;
}

/* ------------------------------------------------------------------------------------------------- */

/* Contenedor de mi plan/suscripcion activa */
.contenedor_plan {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 20px; /* top-right-bottom-left */
}

.tarjeta_vg_plan {
  width: 90%;
  height: 530px;
  padding: 14px;
  border-radius: 01rem;
  overflow: visible;
  background: var(--backg-tarjetaplan);
  position: relative;
  z-index: 1;
}

.tarjeta-vg-plan::after {
  position: absolute;
  content: "";
  top: 40px;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: scale(0.9);
  filter: blur(30px);
  background: #154734;
  transition: opacity 0.5s;
}

.contenido_tarj_plan_vg {
  --color: #f6fffe;

  background: var(--color);
  color: #1a1c1c;
  width: 100%;
  height: 100%;
  overflow: visible;
  border-radius: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center; /* alineados centro */
}

.tarjeta_vg_plan:hover::after {
  opacity: 0;
}

/*  */

/* titulo */
.titulo_tarj_plan_vg {
  color: #1a1c1c;
}

/* descripcion tarjeta para iniciar plan */
.descripcion_tarj_plan_vg {
  text-wrap: pretty;
  font-size: 1.1rem;
  align-items: center;
  padding: 0 2rem;
  color: #1a1c1c;
}

/* img con animación */
.circulo_plan_vg {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(30deg, #007848 0%, #e99a3c 100%);
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 0;
}

/* Imagen encima */
.img_tarj_plan_pred {
  position: absolute;
  width: 135px;
  height: auto;
  top: 1rem;
  z-index: 2;
}

/* Boton de plan dieta en plan */
.btn_plan_dieta {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 20px #ffe24f90;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: #e99a3c;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1c1c;
  gap: 10px;
  font-weight: bold;
  font-family: Comfortaa, Verdana;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
}

.btn_plan_dieta:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.btn_plan_dieta:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.btn_plan_dieta::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgb(255 255 255 / 0%) 30%,
    rgb(255 255 255 / 80%),
    rgb(255 255 255 / 0%) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}
