/* ===== Quem Somos ===== */
.section-quem-somos { background: var(--background); padding: 60px 0; }
.qs-intro { color: rgba(245,242,237,0.8); max-width: 720px; margin-bottom: 48px; line-height: 1.6; }
.qs-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.qs-card { background: var(--surface); border-radius: 16px; padding: 32px; border-top: 2px solid var(--primary); transition: box-shadow .3s ease, transform .3s ease; }
.qs-card:hover { box-shadow: 0 0 20px rgba(217,119,50,0.15); }
.qs-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qs-avatar { width: 56px; height: 56px; border-radius: 9999px; background: rgba(217,119,50,0.15); border: 2px solid rgba(217,119,50,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qs-avatar svg { width: 28px; height: 28px; color: var(--primary); }
.qs-name { color: var(--offwhite); font-size: 24px; }
.qs-role { color: var(--primary); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 4px; }
.qs-photo { border-radius: 12px; overflow: hidden; margin-bottom: 20px; box-shadow: 0 0 0 1px rgba(217,119,50,0.2); aspect-ratio: 4/5; }
.qs-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.qs-divider { border-top: 1px solid rgba(255,255,255,0.1); margin: 20px 0; }
.qs-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.qs-stat-n { color: var(--offwhite); font-size: 22px; font-weight: 700; font-family: var(--font-display); }
.qs-stat-l { color: rgba(245,242,237,0.6); font-size: 12px; margin-top: 4px; }
.qs-bio { color: rgba(245,242,237,0.8); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.qs-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.qs-tag { padding: 4px 12px; border-radius: 9999px; border: 1px solid rgba(217,119,50,0.5); color: rgba(217,119,50,0.85); font-size: 12px; }
.qs-quote { margin-top: 40px; background: var(--surface); border-left: 3px solid var(--primary); border-radius: 0 12px 12px 0; padding: 28px 32px; text-align: center; }
.qs-quote p { color: rgba(245,242,237,0.9); font-size: 18px; font-family: var(--font-display); margin-bottom: 16px; }
.qs-quote cite { color: rgba(245,242,237,0.7); font-size: 14px; font-style: normal; }

@media (min-width: 768px) {
  .qs-grid { grid-template-columns: 1fr 1fr; }
  .qs-quote p { font-size: 20px; }
}

/* ===== FAQ ===== */
.section-faq { background: var(--background); padding: 60px 0; }
.faq-list { }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; text-align: left; background: none; border: none; }
.faq-btn span { color: var(--offwhite); font-size: 18px; font-weight: 700; font-family: var(--font-display); }
.faq-chevron { color: var(--primary); flex-shrink: 0; transition: transform .2s ease; width: 20px; height: 20px; }
.faq-item.open .faq-chevron { transform: rotate(90deg); }
.faq-panel { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-item.open .faq-panel { max-height: 400px; }
.faq-panel p { padding-bottom: 20px; color: rgba(245,242,237,0.75); line-height: 1.6; }

/* ===== Contato ===== */
.section-contato { background: var(--background); padding: 60px 0; }
.contato-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
.contato-title { color: var(--offwhite); font-size: 28px; margin-bottom: 40px; line-height: 1.2; }
.contato-steps { display: flex; flex-direction: column; gap: 16px; }
.contato-step { background: var(--surface); border-radius: 12px; padding: 20px; display: flex; align-items: flex-start; gap: 16px; border: 1px solid rgba(255,255,255,0.06); }
.contato-step-n { flex-shrink: 0; width: 36px; height: 36px; border-radius: 9999px; background: var(--primary); color: var(--primary-foreground); font-family: var(--font-display); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.contato-step h3 { color: var(--offwhite); font-size: 16px; }
.contato-step p { color: rgba(245,242,237,0.7); font-size: 14px; margin-top: 4px; }

.contato-form { background: var(--surface); border-radius: 16px; padding: 28px; border: 1px solid rgba(217,119,50,0.25); display: flex; flex-direction: column; gap: 16px; }
.contato-form input, .contato-form textarea {
  width: 100%; background: var(--background); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  padding: 12px 16px; color: var(--offwhite); font-family: var(--font-sans); font-size: 15px;
  transition: border-color .2s ease;
}
.contato-form input::placeholder, .contato-form textarea::placeholder { color: rgba(245,242,237,0.4); }
.contato-form input:focus, .contato-form textarea:focus { outline: none; border-color: var(--primary); }
.form-error { color: #f87171; font-size: 12px; margin-top: 4px; }
.form-success { background: rgba(217,119,50,0.15); color: var(--primary); font-size: 14px; border-radius: 8px; padding: 12px 16px; }
.form-consent { display: flex; align-items: flex-start; gap: 12px; color: rgba(245,242,237,0.75); font-size: 14px; }
.form-consent input { width: auto; accent-color: var(--primary); margin-top: 4px; }
.form-consent button { background: none; border: none; color: var(--primary); text-decoration: underline; padding: 0; font-size: 14px; }
.btn-submit {
  width: 100%; padding: 14px; border-radius: 9999px; border: none;
  background: var(--primary); color: var(--primary-foreground); font-weight: 500; font-size: 15px;
  transition: box-shadow .3s ease, opacity .2s ease;
}
.btn-submit:hover { box-shadow: 0 0 30px rgba(217,119,50,0.18); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

@media (min-width: 1024px) {
  .contato-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .contato-title { font-size: 48px; }
}

/* ===== Footer ===== */
.footer { background: var(--background); border-top: 1px solid var(--primary); }
.footer-top { max-width: 1280px; margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: 1fr; gap: 32px; }
.footer-logo img { height: 56px; width: auto; }
.footer-tagline { color: rgba(245,242,237,0.6); font-size: 14px; margin-top: 12px; max-width: 280px; }
.footer-nav { display: flex; gap: 24px; font-size: 14px; }
.footer-nav a { color: rgba(245,242,237,0.8); }
.footer-nav a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 9999px; background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--offwhite); transition: color .2s ease, border-color .2s ease;
}
.footer-social a:hover { color: var(--primary); border-color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom-inner {
  max-width: 1280px; margin: 0 auto; padding: 20px 24px;
  font-size: 12px; color: rgba(245,242,237,0.4);
  display: flex; flex-direction: column; gap: 8px; justify-content: space-between;
}
.footer-bottom-inner button { background: none; border: none; color: inherit; font-size: 12px; text-align: left; }
.footer-bottom-inner button:hover { color: var(--primary); }

@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
  .footer-nav { justify-content: center; }
  .footer-social { justify-content: flex-end; }
  .footer-bottom-inner { flex-direction: row; }
}

/* ===== Floating WhatsApp ===== */
.floating-whats {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 9999px;
  background: var(--primary); color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3), 0 0 30px rgba(217,119,50,0.18);
}
.floating-whats svg { width: 26px; height: 26px; }

/* ===== Privacy Modal ===== */
.privacy-overlay {
  position: fixed; inset: 0; z-index: 9999; display: none;
  align-items: center; justify-content: center; padding: 16px;
  background: rgba(0,0,0,0.85);
}
.privacy-overlay.open { display: flex; }
.privacy-modal { background: var(--surface); border-radius: 12px; width: 100%; max-width: 680px; position: relative; padding: 32px; }
.privacy-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--offwhite); }
.privacy-close:hover { color: var(--primary); }
.privacy-modal h2 { color: var(--offwhite); font-size: 24px; margin-bottom: 24px; }
.privacy-body { max-height: 70vh; overflow-y: auto; padding-right: 12px; color: rgba(245,242,237,0.8); font-size: 14px; line-height: 1.6; }
.privacy-body h3 { color: var(--offwhite); font-size: 16px; margin: 16px 0 8px; }
.privacy-body p { margin-bottom: 16px; }
.privacy-body a { color: var(--primary); }

@media (min-width: 768px) {
  .privacy-modal { padding: 40px; }
  .privacy-modal h2 { font-size: 30px; }
}
