/* Modal fechado */
.modalTabela {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3e3e3c;
  z-index: 1000;
  overflow-y: auto;
  flex-direction: column;
}

/* Modal aberto */
#modalTabela.active {
  display: flex;
}

.modalTabela-interface-wrapper {
  max-width: 1000px; /* largura máxima */
  margin: 0 auto; /* centraliza */
}

.modalTabela-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #333;
}

.close-modalTabela {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
}

/* COMEÇO DO ESTILO DA SECTION --> Tabela de Preços */
.topo-tabela {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.topo-tabela img {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  width: 100%;
}

.modalTabela footer {
  margin-top: auto; /* Empurra o footer para o final do modal quando o container pai usa display: flex em coluna */
}
