:root {
  --navy: #00163A;
  --navy-2: #1E3A6E;
  --gold: #C9A961;
  --gold-2: #B0903F;
  --cream: #FBF8F1;
  --cream-2: #F5EFE0;
  --border: #E5DFD0;
  --text: #1A1A1A;
  --text-2: #495E80;
  --muted: #6B7689;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; letter-spacing: -0.02em; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

header.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img { height: 72px; width: auto; display: block; }
.logo span { display: none; }
nav.main { display: flex; gap: 28px; align-items: center; }
nav.main a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.15s;
}
nav.main a:hover { color: var(--navy); }
.btn-cta {
  background: var(--navy);
  color: white !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.15s;
}
.btn-cta:hover { background: var(--gold); color: var(--navy) !important; transform: translateY(-1px); }

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: white;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-decor {
  position: absolute;
  top: -50px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,97,.18), transparent 60%);
  pointer-events: none;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--gold); }
.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 700;
  color: white;
  margin-bottom: 22px;
  max-width: 900px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,.86);
  max-width: 760px;
  margin-bottom: 30px;
}
.hero-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-tag-pill {
  background: rgba(201,169,97,.15);
  border: 1px solid rgba(201,169,97,.4);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.15s;
}
.btn-primary:hover { background: white; transform: translateY(-1px); }

section { padding: 78px 0; }
.sec-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--navy);
  margin-bottom: 18px;
  max-width: 800px;
}
.sec-lead {
  font-size: 17px;
  color: var(--text-2);
  max-width: 800px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.posicionamento { background: var(--cream); }
.pos-content { max-width: 880px; }
.pos-content p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.pos-list {
  margin-top: 24px;
  background: white;
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 6px;
}
.pos-list ul { list-style: none; padding: 0; }
.pos-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
}
.pos-list li:last-child { margin-bottom: 0; }
.pos-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 2px;
}

.focos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 14px;
}
.foco {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 26px;
  transition: all 0.2s;
}
.foco:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,22,58,.06); }
.foco-num {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.foco h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 600;
}
.foco-block { margin-bottom: 12px; }
.foco-block:last-child { margin-bottom: 0; }
.foco-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.foco-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.metodo { background: var(--cream); }
.metodo-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,22,58,.06);
}
.metodo-table thead th {
  background: var(--navy);
  color: white;
  text-align: left;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.metodo-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-2);
  vertical-align: top;
}
.metodo-table tbody tr:last-child td { border-bottom: none; }
.metodo-table td:first-child {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.metodo-table td:last-child { color: var(--navy); font-weight: 600; }

.porque {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: white;
}
.porque .sec-title { color: white; max-width: 820px; }
.porque .sec-lead { color: rgba(255,255,255,.78); }
.porque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.porque-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,169,97,.22);
  padding: 26px 22px;
  border-radius: 10px;
}
.porque-card h3 {
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.porque-card p {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.publico-list {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 36px;
}
.publico-list h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
  margin-top: 18px;
  font-weight: 600;
}
.publico-list h4:first-child { margin-top: 0; }
.publico-list ul { list-style: none; padding-left: 16px; }
.publico-list li {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}
.publico-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.contrato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.contrato-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
}
.contrato-card b { color: var(--navy); display: block; margin-bottom: 4px; font-size: 15px; }

.cta-final {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  text-align: center;
  padding: 80px 0;
}
.cta-final h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  color: white;
  margin-bottom: 14px;
}
.cta-final p {
  font-size: 16.5px;
  color: rgba(255,255,255,.92);
  max-width: 640px;
  margin: 0 auto 30px;
}
.cta-final .btn-primary {
  background: var(--navy);
  color: white;
  padding: 16px 30px;
}
.cta-final .btn-primary:hover { background: white; color: var(--navy); }

footer.bot {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 50px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.foot-grid h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.foot-grid p, .foot-grid a {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin-bottom: 6px;
  display: block;
}
.foot-grid a:hover { color: var(--gold); }
.foot-bottom {
  border-top: 1px solid rgba(201,169,97,.2);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 820px) {
  section { padding: 56px 0; }
  .hero { padding: 60px 0 70px; }
  nav.main a:not(.btn-cta) { display: none; }
  .focos-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .metodo-table thead { display: none; }
  .metodo-table td { display: block; padding: 8px 14px; }
  .metodo-table tr { padding: 12px 0; display: block; border-bottom: 1px solid var(--border); }
}
