/* ==============================================
   Página de Contato – mesmo estilo do site
   ============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Charter', 'Georgia', 'Times New Roman', serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  border-bottom: 1px solid #eaeaea;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.15rem;
  font-weight: 650;
  text-decoration: none;
  color: #111;
}
nav a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
  margin-left: 1.2rem;
}
nav a:hover, nav a.active {
  color: #000;
  text-decoration: underline;
}
.dark-mode-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  border-radius: 50%;
  transition: background 0.2s;
}
.dark-mode-toggle:hover {
  background: rgba(0,0,0,0.05);
}

.page-container {
  flex: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  width: 100%;
}
.page-content h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.page-content p {
  margin-bottom: 1.5rem;
  color: #2d3748;
}
.contact-form {
  margin-top: 2rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0D8F81;
  box-shadow: 0 0 0 2px rgba(13,143,129,0.2);
}
.btn-submit {
  background: #0D8F81;
  color: white;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-submit:hover {
  background: #0a6e63;
  transform: translateY(-1px);
}
.form-feedback {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 12px;
  background: #e6fffa;
  color: #234e52;
  font-size: 0.9rem;
}
.site-footer {
  border-top: 1px solid #eee;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: #aaa;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin-top: auto;
}
.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}
.footer-nav {
  margin-bottom: 0.8rem;
}
.footer-nav a {
  color: #666;
  text-decoration: none;
  margin: 0 0.8rem;
  font-size: 0.8rem;
}
.footer-nav a:hover {
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 640px) {
  .header-inner { padding: 0.8rem 1rem; }
  nav a { margin-left: 0.8rem; font-size: 0.8rem; }
  .page-container { padding: 2rem 1rem; }
  .page-content h1 { font-size: 1.8rem; }
}

/* Modo escuro (complementar ao global) */
body.dark-mode .page-content p { color: #cbd5e1; }
body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
  background: #1e2a36;
  border-color: #3f5568;
  color: #e0e4e8;
}
body.dark-mode .form-feedback {
  background: #1e3a3a;
  color: #b2f5ea;
}

/* igual ao style.css do contato, adicionando: */
.privacy-content h2 {
  font-size: 1.4rem;
  margin: 1.8rem 0 0.8rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}