body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #AA8A50;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  max-width: 60%;
  height: auto;
}

.btn-fale-conosco {
  padding: 20px 40px;
  margin-top: 30px;
  font-size: 24px;
  background-color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup label,
.popup input,
.popup textarea {
  display: block;
  margin-bottom: 10px;
  width: 100%;
}

.popup input,
.popup textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.popup button {
  padding: 20px 40px;
  font-size: 24px;
  background-color: #AA8A50;
  border: none;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  margin-top: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px; /* Reduzindo o tamanho da fonte */
  width: 10px; /* Definindo uma largura menor */
  height: 20px; /* Definindo uma altura menor */
  border: none;
  background-color: #AA8A50; /* Alterando a cor de fundo para combinar com o fundo da página */
  color: #fff; /* Definindo a cor do texto para branco */
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Tornando o botão circular */
}