/* ======================================================
   PROTECTION TABLE — Frontend
   As cores de cada coluna vêm dos campos do admin
   (aplicadas inline), este ficheiro só trata da estrutura.
====================================================== */

.ptp-wrap {
  width: 100%;
  box-sizing: border-box;
  padding: 24px 12px;
  font-family: Georgia, 'Times New Roman', serif;
}
.ptp-wrap *,
.ptp-wrap *::before,
.ptp-wrap *::after {
  box-sizing: border-box;
}

.ptp-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 4px;
  max-width: 1100px;
  margin: 0 auto;
}

.ptp-plan {
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
.ptp-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.ptp-plan__header {
  color: #fff;
  text-align: center;
  font-size: 34px;
  letter-spacing: 2px;
  padding: 22px 10px 16px;
}

.ptp-plan__price {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  padding: 14px 10px;
}

.ptp-plan__row {
  text-align: center;
  color: #34495e;
  font-weight: bold;
  font-size: 17px;
  padding: 18px 12px;
  background: #fff;
}
.ptp-plan__row--alt {
  background: #f0f0f0;
}
.ptp-plan__row--disabled {
  color: #bbb;
  text-decoration: line-through;
  font-weight: normal;
}

.ptp-plan__deposit {
  color: #fff;
  text-align: center;
  padding: 18px 10px 24px;
}
.ptp-plan__deposit span {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}
.ptp-plan__deposit strong {
  display: block;
  font-size: 30px;
  font-weight: normal;
}

.ptp-plan__cta {
  background: #fff;
  text-align: center;
  padding: 22px 20px 26px;
  margin-top: auto;
}

.ptp-btn {
  font-family: Georgia, serif;
  font-weight: bold;
  color: #fff;
  font-size: 17px;
  border: none;
  border-radius: 4px;
  padding: 12px 40px;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
  transition: filter 0.2s ease, transform 0.15s ease;
}
.ptp-btn:hover {
  filter: brightness(1.05);
}
.ptp-btn:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.ptp-btn--included {
  cursor: default;
}
.ptp-btn--included:hover {
  filter: none;
}

/* ---------- Responsivo ---------- */
@media (max-width: 780px) {
  .ptp-table {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ptp-plan:hover {
    transform: translateY(-4px);
  }
}
