/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #1f2937; /* cinza escuro */
  color: #e5e5e5;
  line-height: 1.6;
}

/* Seções gerais */
section {
  padding: 3rem 1rem;
}

h1, h2, h3 {
  color: #10b981; /* verde emerald */
}

/* ----------------------- */
/* FORMULÁRIO DE CONTATO  */
/* ----------------------- */
#contato {
  text-align: center;
}

#contato h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

#contato p {
  color: #9ca3af; /* cinza claro */
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Card verde */
#contato .card {
  background-color: #111827;
  border: 1px solid #10b981;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
  padding: 1.5rem;
  max-width: 420px;
  margin: 0 auto;
}

/* Campos do formulário */
#contato input,
#contato textarea {
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #374151;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

#contato input::placeholder,
#contato textarea::placeholder {
  color: #9ca3af;
}

#contato input:focus,
#contato textarea:focus {
  outline: none;
  border: 1px solid #10b981;
  background-color: #1f2937;
}

/* Botão */
#contato button {
  width: 100%;
  background-color: #10b981;
  color: #fff;
  padding: 0.6rem;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

#contato button:hover {
  background-color: #059669;
}

/* Mensagem de sucesso */
#sucesso {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #6ee7b7;
  font-size: 0.85rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* Links sociais */
#contato .social-links {
  margin-top: 1rem;
  font-size: 0.9rem;
}

#contato .social-links a {
  color: #10b981;
  margin: 0 0.75rem;
  text-decoration: none;
}

#contato .social-links a:hover {
  text-decoration: underline;
}
