.hero-image.face-hero-planos {
  object-position: 50% 40%;
}

.plan-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.plan-card {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  padding: 16px 14px 12px;
  background: linear-gradient(180deg, #fcfcfc, #ececec);
  color: #111;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.35);
}

.plan-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #2b2b2b;
  margin-bottom: 2px;
}

.plan-card h3 {
  text-align: center;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: #0b0b0b;
}

.plan-medal {
  width: 82px;
  height: 82px;
  margin: 2px auto 14px;
  border-radius: 50%;
  border: 4px solid #bbb;
  background: radial-gradient(circle at 32% 28%, #ffffff, #d8d8d8);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.18);
  display: grid;
  place-items: center;
}

.plan-medal img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.plan-card--bronze .plan-medal {
  border-color: #b97842;
  background: radial-gradient(circle at 32% 28%, #ffe2ca, #bc7b45);
}

.plan-card--prata .plan-medal {
  border-color: #a5abb3;
  background: radial-gradient(circle at 32% 28%, #f8f9fb, #a8aeb6);
}

.plan-card--ouro .plan-medal {
  border-color: #cfaf37;
  background: radial-gradient(circle at 32% 28%, #fff7ca, #d4af37);
}

.plan-card--diamante .plan-medal {
  border-color: #8fc8d9;
  background: radial-gradient(circle at 32% 28%, #f2fdff, #90cbdc);
}

.plan-checks {
  list-style: none;
  margin: 0 0 14px;
  display: grid;
  gap: 9px;
}

.plan-checks li {
  position: relative;
  padding-left: 28px;
  color: #171717;
  font-size: 1rem;
  line-height: 1.35;
}

.plan-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.16em;
  width: 14px;
  height: 14px;
  border: 2px solid #111;
  border-radius: 4px;
}

.plan-checks li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.45em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(-45deg);
}

.plan-checks li strong {
  font-weight: 800;
}

.plan-price {
  margin-top: auto;
  border-radius: 14px;
  background: #050505;
  color: #fff;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
  padding: 11px 12px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3px;
  white-space: nowrap;
}

.plan-price .currency {
  font-size: 0.56em;
  line-height: 1;
  align-self: center;
}

.plan-price small {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.32em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  padding-bottom: 3px;
}

@media (max-width: 1060px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 0;
  }

  .hero-image.face-hero-planos {
    object-position: 50% 36%;
  }
}
