.card-plan {
  border: 1px solid #00AEEF;
  border-radius: 15px;
  width: 80%;
  background-color: white;
  overflow: hidden;
}

.plan-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid #00AEEF;
}

.plan-row:last-child {
  border-bottom: none;
}

.plan-info {
  display: grid;
  flex-direction: row;
  grid-template-columns: 1fr auto;
  /* Imagen | Nombre | Precio */
  align-items: flex-end;
  justify-content: flex-start;
  gap: 8px;
  width: 75%;
}

.plan-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #00AEEF;
  background-color: #e6f7ff;
  border-radius: 5px;
}

.btn-ver {
  padding: 8px 18px;
  font-size: 14px;
  margin-left: 16px;
  margin-right: 0;
  align-self: center;
  flex-shrink: 0;
  width: auto;
  min-width: 90px;
  max-width: 100%;
  color: white;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  border: none;
  background: linear-gradient(90deg, #00AEEF 0%, #007BFF 100%);
  box-shadow: 0 2px 8px 0 rgba(0, 174, 239, 0.08);

}

@media (max-width: 450.98px) {
  .plan-info {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
    width: 50%;

  }

  .btn-ver {
    font-size: 12px;
    padding: 6px 10px;
    min-width: 60px;
    align-self: flex-end;
  }

  .card-plan {
    width: 90%;
    margin: 0 auto;
  }

  .plan-row {
    padding: 9px 0px 9px 0px !important;
  }
}