.container-parques {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  font-family: Arial, sans-serif;
}

@media (max-width: 1024px) {
  .container-parques { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .container-parques { grid-template-columns: 1fr; }
}

.card {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 120px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.titulo {
  font-size: 16px;
  font-weight: bold;
}

.precos { margin: 10px 0; }

.preco-bilheteria {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.preco-abratur {
  color: #0099cc;
  font-size: 20px;
  font-weight: bold;
}

.desconto {
  color: #28a745;
  font-weight: bold;
  margin: 10px 0;
}

.info {
  font-size: 13px;
  color: #555;
  margin: 10px 0;
  line-height: 1.4;
}

.cupom { font-weight: bold; }

.botao {
  margin-top: auto;
  background: #8DB243;
  color: #fff;
  padding: 12px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-size: 14px;
  display: block;
  text-align: center;
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 16px;
  box-sizing: border-box;
}
.popup-overlay.ativo { display: flex; }
.popup-box {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 100%;
  padding: 28px 24px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  text-align: center;
  position: relative;
  animation: popupIn 0.25s ease;
}
@keyframes popupIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.popup-fechar {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
}
.popup-fechar:hover { color: #555; }
.popup-icone { font-size: 40px; margin-bottom: 8px; }
.popup-titulo {
  font-size: 17px;
  font-weight: 800;
  color: #222;
  margin: 0 0 14px;
}
.popup-texto {
  font-size: 14px;
  color: #444;
  line-height: 1.65;
  text-align: left;
  background: #f7f9f4;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.popup-texto .check { color: #8DB243; font-weight: bold; }
.popup-tel {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #25D366;
  text-decoration: none;
  margin-bottom: 14px;
}
.popup-tel:hover { text-decoration: underline; }
.popup-btn-continuar {
  display: block;
  width: 100%;
  background: #8DB243;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 13px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  box-sizing: border-box;
}
.popup-btn-continuar:hover { background: #76953a; }
.popup-btn-cancelar {
  display: block;
  margin-top: 10px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 13px;
  cursor: pointer;
}
.popup-btn-cancelar:hover { color: #777; }
