.cc-message, .cc-banner, .cc-window, .cc-banner, .cc-type-info, .cc-theme-classic, .cc-bottom, .cc-color-override--599318998, .cc-btn, .cc-dismiss{display: none}


.modal {
  display: none;
  position: absolute;
  z-index: 1000;
  padding-top: 80px; /* Dá um espaço maior do topo para não ficar grudado */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 20px auto; /* margem vertical de 40px e centralizado horizontal */
  padding: 40px 40px; /* aumenta o padding interno pra mais conforto visual */
  border-radius: 10px; /* bordas mais arredondadas pra suavizar */
  width: 90%; /* ocupa 90% da largura da tela */
  max-width: 480px; /* largura máxima do modal */
  box-shadow: 0 8px 24px rgba(0,0,0,0.35); /* sombra mais suave e profunda */
  box-sizing: border-box; /* padding conta dentro da largura */
  font-family: inherit;
}

/* Inputs e botão - deixa tudo consistente */
.modal-content input,
.modal-content button {
  width: 100%;
  padding: 12px 15px; /* mais confortável para clicar e digitar */
  margin-top: 8px;
  margin-bottom: 10px;
  border: 1.5px solid #ccc; /* bordas um pouco mais definidas */
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.modal-content input:focus {
  border-color: #1b9e3e; /* borda verde no foco, alinhado com o CTA */
  outline: none;
}

/* Botão igual aos CTA do site, com transição suave */
.btn-cta {
  background-color: #1b9e3e;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 14px 0;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: #14832f;
}

.contatoForm {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}