/* pmp-style.css - estilos para modal e ícones */
.pmp-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pmp-modal[aria-hidden="false"] {
  display: flex;
}
.pmp-modal-content {
  background: #fff;
  border-radius: 8px;
  max-width: 720px;
  width: 100%;
  padding: 22px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  border: 1px solid #e6e6e6;
  position: relative;
}
.pmp-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  background: none;
  border: 0;
  font-size: 26px;
  cursor: pointer;
  color: #666;
}
.pmp-modal-title {
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}
.pmp-cartoes {
  text-align: center;
  margin-bottom: 14px;
}
.pmp-cartoes-icones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 8px 0;
}
.pmp-cartoes-icones img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.18s ease-in-out;
}
.pmp-cartoes-icones img:hover {
  transform: scale(1.05);
}
.pmp-aprovacao {
  color: #1e9a4b;
  font-weight: 600;
  margin-top: 6px;
}
.pmp-tabela table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.pmp-tabela th,
.pmp-tabela td {
  border: 1px solid #eee;
  padding: 8px;
  text-align: center;
  font-size: 14px;
}
.pmp-tabela th {
  background: #fafafa;
  font-weight: 600;
}
.pmp-modal-actions {
  text-align: right;
  margin-top: 12px;
}
.pmp-fechar-modal {
  padding: 8px 14px;
}
.parcelamento-mercadopago .button {
  margin-top: 8px;
}
@media (max-width: 480px) {
  .pmp-modal-content {
    padding: 14px;
  }
  .pmp-cartoes-icones img {
    max-height: 32px;
  }
}
