:root {
  --blue-900: #03325B;
  --blue-800: #0B3D6B;
  --blue-700: #2F6FB3;
  --blue-100: #edf4fa;
  --ink: #17324a;
  --muted: #6D6E71;
  --paper: #f8f9fa;
  --white: #ffffff;
  --line: rgba(255,255,255,.16);
  --shadow: 0 24px 60px rgba(7, 31, 51, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #022A50;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { min-height: 88px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; color: var(--white); }
.brand-logo { width: 248px; height: auto; object-fit: contain; display: block; }
.nav { display: flex; gap: 28px; color: rgba(255,255,255,.86); font-size: 14px; }
.nav a:hover { color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px;
  border-radius: 999px; font-weight: 700; transition: .2s ease; border: 1px solid transparent; cursor: pointer;
  font: inherit; font-weight: 700;
}
.btn:hover { transform: translateY(-1px); }
.btn-small { min-height: 42px; padding: 0 17px; font-size: 13px; }
.btn-primary { background: var(--blue-800); color: #fff; box-shadow: 0 10px 24px rgba(14,53,87,.18); }
.btn-primary:hover { background: #0a2d4a; }
.btn-light { background: #fff; color: var(--blue-900); }
.btn-ghost { border-color: rgba(255,255,255,.36); color: #fff; }
.btn-full { width: 100%; border: 0; }

.hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(107, 156, 191, .22), transparent 34%),
    linear-gradient(135deg, #082f56, var(--blue-800) 58%, #174f82);
  color: #fff;
  padding: 110px 0 105px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%; right: -100px; bottom: -210px;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 72px; align-items: center; }
.eyebrow { display: inline-block; letter-spacing: .16em; font-size: 12px; font-weight: 700; opacity: .72; margin-bottom: 18px; }
.eyebrow.dark { color: var(--blue-800); opacity: 1; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; margin: 0; line-height: 1.08; }
h1 { font-size: clamp(50px, 7vw, 84px); max-width: 820px; letter-spacing: -.03em; }
h2 { font-size: clamp(36px, 5vw, 56px); letter-spacing: -.02em; }
h3 { font-size: 27px; }
.hero-lead { max-width: 700px; font-size: 20px; color: rgba(255,255,255,.8); margin: 28px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .btn-primary { background: #fff; color: var(--blue-900); box-shadow: none; }
.hero .btn-primary:hover { background: #f4f7fa; }
.hero-note { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.58); }

.hero-card { padding: 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; box-shadow: var(--shadow); background: rgba(255,255,255,.08); }
.hero-card-inner { min-height: 420px; border-radius: 20px; padding: 34px; background: rgba(255,255,255,.06); display: flex; flex-direction: column; }
.mini-label { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; opacity: .66; }
.hero-card h2 { font-size: 39px; margin: auto 0 20px; }
.hero-card p { color: rgba(255,255,255,.72); margin: 0; }
.card-line { height: 1px; background: rgba(255,255,255,.16); margin: 28px 0 18px; }
.card-signature { font-size: 12px; letter-spacing: .08em; opacity: .58; }

.section { padding: 100px 0; }
.section-light { background: var(--paper); }
.section-blue { background: var(--blue-900); color: #fff; }
.two-col { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: start; }
.body-copy { max-width: 650px; font-size: 18px; color: var(--muted); }
.body-copy p { margin: 0 0 20px; }

.section-heading { max-width: 760px; }
.section-heading.center { text-align: center; margin: 0 auto 48px; }
.section-heading p { color: rgba(255,255,255,.65); margin-top: 16px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar-card { padding: 34px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.05); border-radius: 20px; min-height: 270px; }
.pillar-number { display: inline-flex; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.24); align-items: center; justify-content: center; font-size: 12px; opacity: .7; margin-bottom: 48px; }
.pillar-card p { color: rgba(255,255,255,.64); margin: 16px 0 0; }

.signup-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 88px; align-items: start; }
.signup-text { font-size: 18px; color: var(--muted); max-width: 520px; }
.lead-form { background: #fff; padding: 34px; border-radius: 22px; box-shadow: 0 18px 50px rgba(25, 55, 76, .10); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label { display: grid; gap: 7px; margin-bottom: 14px; }
.lead-form label > span:first-child { font-size: 13px; font-weight: 700; color: #43525e; }
.lead-form input[type="text"], .lead-form input[type="email"], .lead-form input[type="tel"] {
  width: 100%; height: 48px; border: 1px solid #d8e0e5; border-radius: 12px; padding: 0 14px; font: inherit; background: #fbfcfd;
}
.lead-form input:focus { outline: 2px solid rgba(23,75,117,.18); border-color: var(--blue-700); }
.consent { display: grid !important; grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; font-size: 12px; color: #677784; margin: 8px 0 18px !important; }
.consent input { margin-top: 4px; }
.consent a { text-decoration: underline; }
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.form-status { min-height: 20px; margin: 12px 0 0; font-size: 13px; color: var(--muted); }

.section-contact { background: #123e63; color: #fff; padding: 66px 0; }
.contact-wrap { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.contact-wrap h2 { font-size: 42px; }
.contact-wrap p { color: rgba(255,255,255,.65); margin-bottom: 0; }
.contact-links { display: grid; gap: 8px; text-align: right; color: rgba(255,255,255,.82); }
.contact-links a:hover { color: #fff; }

.site-footer { background: #03325B; color: rgba(255,255,255,.62); font-size: 12px; }
.footer-wrap { min-height: 92px; display: flex; align-items: center; gap: 24px; }
.footer-logo { width: 170px; height: auto; margin-right: auto; }
.footer-wrap p { margin: 0; }
.footer-wrap a { color: rgba(255,255,255,.82); }

@media (max-width: 900px) {
  .nav, .site-header .btn-small { display: none; }
  .hero { padding: 82px 0 72px; }
  .hero-grid, .two-col, .signup-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-card-inner { min-height: 330px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar-card { min-height: 0; }
  .pillar-number { margin-bottom: 28px; }
  .section { padding: 74px 0; }
  .contact-wrap { align-items: flex-start; flex-direction: column; }
  .contact-links { text-align: left; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 74px; }
  .brand-logo { width: 205px; }
  h1 { font-size: 50px; }
  h2 { font-size: 38px; }
  .hero-lead { font-size: 17px; }
  .hero-card-inner { padding: 26px; }
  .hero-card h2 { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 22px; }
  .footer-wrap { padding: 22px 0; min-height: 0; align-items: flex-start; flex-direction: column; }
  .footer-logo { width: 155px; margin-right: 0; }
}

/* Refinamentos de marca — v5 */
.site-header { background: #03325B; }
.nav-wrap { min-height: 102px; }
.brand-logo {
  width: 310px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}
.footer-logo {
  width: 240px;
  height: auto;
  object-fit: contain;
}
.form-status.success { color: #17623a; font-weight: 600; }
.form-status.error { color: #9b2c2c; font-weight: 600; }
.lead-form button:disabled { opacity: .72; cursor: wait; transform: none; }

@media (max-width: 560px) {
  .nav-wrap { min-height: 88px; }
  .brand-logo { width: 238px; max-height: 78px; }
  .footer-logo { width: 198px; }
}
