.planos-anuncios-page {
  width: 100%;
  min-height: 100vh;
  background: #f8f9fa;
  color: #0f172a;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.planos-section {
  width: 100%;
  padding: 72px 0;
}

.planos-section__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 48px;
  align-items: stretch;
}

.plano-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), #ffffff),
    radial-gradient(circle at 100% 0, rgba(37, 99, 235, 0.1), transparent 32%);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.plano-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
  opacity: 0.75;
}

.plano-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 28px 68px rgba(15, 23, 42, 0.13);
}

.plano-card--featured {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.5);
  background:
    radial-gradient(circle at 88% 8%, rgba(56, 189, 248, 0.22), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 30px 72px rgba(37, 99, 235, 0.18);
}

.plano-card--featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 34px 82px rgba(37, 99, 235, 0.24);
}

.plano-card--featured::before {
  height: 6px;
  background: linear-gradient(90deg, #0ea5e9, #2563eb, #0f172a);
  opacity: 1;
}

.plano-card__header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.plano-card__name {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 1.38rem;
  font-weight: 900;
}

.plano-card__price {
  margin: 0;
  color: #1d4ed8;
  font-size: clamp(2.55rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.plano-card__period {
  color: #475569;
  font-size: 1rem;
  font-weight: 600;
}

.plano-card__subtitle {
  margin: 12px 0 0;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.65;
}

.plano-features {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.plano-features li {
  position: relative;
  padding-left: 36px;
  color: #334155;
  font-size: 1rem;
  line-height: 1.72;
}

.plano-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #047857;
  box-shadow: inset 0 0 0 1px rgba(5, 150, 105, 0.12);
  font-size: 0.85rem;
  font-weight: 900;
}

.planos-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 34px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.22);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.planos-cta:hover,
.planos-cta:focus {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.28);
}

.planos-notes {
  margin-top: 18px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

  .planos-section {
    padding: 56px 18px;
  }

  .plano-card,
  .plano-card--featured {
    transform: none;
  }

  .plano-card:hover,
  .plano-card--featured:hover {
    transform: translateY(-2px);
  }
}
