.et_pb_pricing_multi_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.et_pb_pricing_card {
  border: 1px solid #ddd;
  overflow: hidden;
  width: 250px;
  font-family: Arial, sans-serif;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  gap: 10px;
  flex-direction: column;
  height: 100vh;
}

.card_body {
  flex: 1; /* Faz o body ocupar todo o espaço restante */
  display: flex;
  flex-direction: column;
  justify-content: end; /* Preço e botão ficam no final */
  gap: 25px;
}

.card_header {
  font-size: 200%;
  line-height: 1.2em;
  padding: 6px;
  height: 100%;
}

a.card_button {
  padding: 10px;
  border-radius: 20px;
}

.et_pb_pricing_card .card_button {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.et_pb_pricing_card .card_button:hover {
  filter: brightness(90%);
}

.card_price {
  font-size: 250%;
  font-weight: 700;
  line-height: 1.2em;
}

@media (max-width: 768px) {
  .et_pb_pricing_multi_wrapper {
    flex-direction: column;
    align-items: center;
  }
  .et_pb_pricing_card {
    width: 90%;
    margin-bottom: 15px;
  }
}
