body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Container padrão */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.topo-contato {
  background-color: #ffffff;
  padding: 42px 0 38px;
}

.topo-contato h1 {
  margin: 0;
  color: #ef2b1f;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
}

/* Seção FAQ */
.faq {
  background-color: #e2ccbc;
  padding: 60px 0;
}

.faq h2 {
  color: #dabc7c;
  font-size: 1.9rem;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* Lista */
.faq-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-lista li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Texto */
.faq-lista span {
  font-size: 0.95rem;
  color: #333;
}

/* Botão + */
.faq-lista button {
  background: none;
  border: none;
  color: #e52420;
  font-size: 1.3rem;
  cursor: pointer;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
}

/* topo contato */
.topo-contato {
  background-color: #ffffff;
  padding: 42px 0 38px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.topo-contato h1 {
  margin: 0;
  color: #dabc7c;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
}

/* faq */
.faq {
  background-color: #ddd5cf;
  padding: 28px 0 44px;
}

.container-faq {
  max-width: 600px;
  margin-left: 120px;
}

.faq-titulo {
  margin: 0 0 10px;
  color: #dabc7c;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.faq-item {
  border-bottom: 1px solid #cfc6c0;
}

.faq-pergunta {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-pergunta span:first-child {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-item.active .faq-pergunta span:first-child {
  font-weight: 700;
}

.faq-icone {
  color: #dabc7c;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  margin-left: 18px;
  flex-shrink: 0;
}

.faq-resposta {
  display: none;
  padding: 0 28px 14px 0;
}

.faq-item.active .faq-resposta {
  display: block;
}

.faq-resposta p {
  margin: 0 0 14px;
  color: #222222;
  font-size: 0.84rem;
  line-height: 1.7;
}

.faq-resposta p:last-child {
  margin-bottom: 0;
}

.faq-resposta a {
  color: #dabc7c;
  text-decoration: none;
}

.faq-resposta a:hover {
  text-decoration: underline;
}

.form-contato {
  background-color: #f1f1f1;
  padding: 60px 0;
}

/* GRID */
.contato-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* ESQUERDA */
.contato-esquerda {
  width: 55%;
}

.contato-esquerda h2 {
  color: #dabc7c;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contato-texto {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 20px;
}

.contato-texto span {
  color: #dabc7c;
}

/* FORM */
.contato-form {
  display: flex;
  flex-direction: column;
}

.contato-form label {
  font-size: 0.85rem;
  margin-bottom: 5px;
  color: #222;
}

.contato-form input,
.contato-form select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: none;
  background-color: #ddd5cf;
  font-size: 0.9rem;
  box-sizing: border-box;
  border-radius: 8px;
}

.contato-form textarea {
  width: 100%;
  height: 110px;
  padding: 12px;
  border: none;
  background-color: #ddd5cf;
  font-size: 0.9rem;
  resize: none;
  box-sizing: border-box;
  margin-bottom: 20px;
    border-radius: 8px;
}

/* BOTÃO */
.contato-form button {
  background-color: #dabc7c;
  color: #fff;
  border: none;
  padding: 14px;
  font-weight: bold;
  border-radius: 17px;
  cursor: pointer;
  width: 200px;
   margin-top: 10px;
}

.contato-form button:hover {
  opacity: 0.9;
}

/* DIREITA */
.contato-direita {
  width: 40%;
}

.contato-direita h3 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 5px;
  color: #000;
}

.contato-direita p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 20px;
}

.mensagem-sucesso {
  display: none;
  background-color: #dabc7c;
  padding: 60px;
  text-align: center;
  border-radius: 6px;
  animation: aparecer 0.4s ease;
}

@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contato-texto a {
  color: #e1251b;
  text-decoration: none;
  font-weight: 500;
}

.contato-texto a:hover {
  text-decoration: underline;
}