.plans {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.plan {
  background: linear-gradient(to right, #3f07434a);/* gradiente más claro al pasar el ratón */
  border: 6px white;
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 30px;
  width: 330px;
  height:340px;
  text-align: center;
  transition: transform 0.2s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}


.plan:hover {
  transform: scale(1.03);
  background: linear-gradient(to right, #f34fff,#30b0ff);/* gradiente más claro al pasar el ratón */
  box-shadow: 0 6px 20px rgb(255, 225, 73);
}



.plan h3 {
  font-size: 23px;
  margin-bottom: 15px;
  color: #fff6e5;

}

.plan p {
  font-size: 16px;
  margin-bottom: 2px;
}

.price {
  font-size: 28px;
  font-weight: bold;
  color:  #ffe599;; /* Amarillo cálido que resalta sobre el fondo */
  margin-bottom: 10px;
  margin-top:20px;
}

/* Sustituye el botón .btn por esta clase */
.btn {
  background: linear-gradient(to right, #ffe056, #ff8000); 
  border-radius: 80px;
  box-shadow: 0 4px 15px rgba(255, 190, 70, 0.4);
  color: #fff; /* texto oscuro para contrastar bien */
  font-weight: 600;
  padding: 10px 24px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  margin-top:6px;
}

.btn:hover {
  transform: scale(1.05) translateY(-2px);
  background: linear-gradient(to right, #ffd000, #ffa042); /* gradiente más claro al pasar el ratón */
  box-shadow: 0 6px 20px rgba(255, 214, 102, 0.6);
}

p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size:18px;
}

.icon-check {
  width: 18px;
  height: 18px;
  color: #ffd166; /* o el color dorado que uses */
  flex-shrink: 0;
}