:root {
  --navy: #16233b;
  --navy-soft: #2d3f5e;
  --gold: #a9812f;
  --bg: #ffffff;
  --bg-alt: #f7f7f5;
  --border: #e6e4de;
  --text: #22283a;
  --text-muted: #676f80;
  --radius: 6px;
  --max-width: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
}

h1, h2, h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--navy);
  line-height: 1.3;
  font-weight: 600;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }
h2.center { margin-bottom: 48px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.nav a:hover { color: var(--navy); }
.nav-cta {
  border: 1px solid var(--navy);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: var(--navy);
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
}

/* Hero */
.hero {
  padding: 120px 0 100px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 700px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 22px;
}
.hero-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--navy);
  color: var(--bg);
}
.btn-primary:hover { background: var(--navy-soft); }
.btn-outline {
  border: 1px solid var(--border);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--navy); }
.full-width { width: 100%; text-align: center; border: none; cursor: pointer; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.col-text p { color: var(--text-muted); margin-bottom: 16px; }
.col-text h2 { margin-bottom: 20px; font-size: 1.7rem; }

.col-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.highlight-card {
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: var(--radius);
}
.highlight-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.highlight-card p { color: var(--text-muted); font-size: 0.94rem; }

/* Services */
.servicos-bg { background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 34px 28px;
  border-radius: var(--radius);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.94rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step { text-align: center; padding: 0 6px; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  font-weight: 600;
  font-family: 'Source Serif 4', serif;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

/* Contact */
.contato-bg { background: var(--bg-alt); border-top: 1px solid var(--border); }
.contato-bg .col-text p { color: var(--text-muted); }

.contact-list { margin-top: 20px; }
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-list strong {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.94rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
}

/* Honeypot - invisível para humanos, visível para bots simples */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  font-size: 0.86rem;
  text-align: center;
  min-height: 20px;
}
.form-status.success { color: #2f7a4d; }
.form-status.error { color: #b3402f; }

.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* Footer */
.site-footer {
  padding: 28px 0;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.footer-sub { margin-top: 6px; opacity: 0.85; }

/* Reveal animation (subtle) */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 90px 0 70px; }
}
