:root {
  --blue-950: #041a3b;
  --blue-900: #072a5d;
  --blue-800: #063d86;
  --blue-700: #075bb9;
  --blue-600: #0a78db;
  --orange-600: #f04b16;
  --orange-500: #ff6a00;
  --yellow-400: #ffbf22;
  --white: #ffffff;
  --ink: #101828;
  --muted: #667085;
  --line: #e7ebf0;
  --soft: #f6f8fb;
  --shadow: 0 20px 60px rgba(3, 30, 74, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section--soft { background: var(--soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--blue-700);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange-500), var(--yellow-400));
}
h1, h2, h3 { margin: 0 0 18px; line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 18px; }
.lead { color: #dbe7f8; font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 680px; }
.text-muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 235, 240, .8);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; color: var(--blue-900); }
.brand img { width: 60px; height: 60px; object-fit: contain; border-radius: 14px; }
.brand span { font-size: 1rem; letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .95rem; font-weight: 700; color: #334155; }
.nav-links a:hover { color: var(--blue-700); }
.nav-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; border-radius: 12px; cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); box-shadow: 0 12px 30px rgba(240, 75, 22, .28); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.08); }
.btn-blue { color: var(--white); background: var(--blue-700); box-shadow: 0 12px 30px rgba(7, 91, 185, .2); }

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(10, 120, 219, .42), transparent 30%),
    radial-gradient(circle at 20% 82%, rgba(255, 106, 0, .2), transparent 26%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 55%, #02142f);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: .8;
}
.hero::before { width: 480px; height: 480px; right: -200px; top: -120px; border: 70px solid rgba(255,255,255,.04); }
.hero::after { width: 300px; height: 300px; left: -150px; bottom: -120px; border: 48px solid rgba(255,106,0,.08); }
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 60px;
  padding: 70px 0;
}
.hero-copy strong { color: var(--yellow-400); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-badge { padding: 9px 13px; border-radius: 999px; color: #e6eef9; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); font-size: .88rem; font-weight: 700; }
.logo-card {
  position: relative;
  padding: 34px;
  background: rgba(255,255,255,.97);
  border-radius: 34px;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
  transform: rotate(1.5deg);
}
.logo-card::before {
  content: "";
  position: absolute;
  inset: -12px 24px 18px -14px;
  border-radius: 36px;
  border: 2px solid rgba(255,191,34,.55);
  z-index: -1;
}
.logo-card img { border-radius: 20px; }

.stats {
  margin-top: -54px;
  position: relative;
  z-index: 10;
}
.stats-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat { padding: 28px 30px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; color: var(--blue-800); font-size: 1.05rem; margin-bottom: 5px; }
.stat span { color: var(--muted); font-size: .92rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.visual-panel {
  min-height: 460px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(255,191,34,.9), transparent 20%),
    radial-gradient(circle at 26% 72%, rgba(255,106,0,.75), transparent 24%),
    linear-gradient(135deg, #0d71d3, #072a5d 70%);
  box-shadow: var(--shadow);
  position: relative;
}
.visual-panel::after {
  content: "MOVIMENTO • FOCO • EVOLUÇÃO";
  position: absolute;
  left: 32px;
  bottom: 32px;
  right: 32px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.rings { position: absolute; inset: 0; }
.rings span { position: absolute; border: 2px solid rgba(255,255,255,.22); border-radius: 50%; }
.rings span:nth-child(1) { width: 290px; height: 290px; right: -70px; top: -80px; }
.rings span:nth-child(2) { width: 170px; height: 170px; right: 35px; top: 45px; }
.rings span:nth-child(3) { width: 330px; height: 330px; left: -150px; bottom: -165px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  margin-bottom: 22px;
  font-weight: 900;
}
.card:nth-child(2) .icon { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); }
.card:nth-child(3) .icon { background: linear-gradient(135deg, var(--yellow-400), var(--orange-500)); color: #4b2b00; }

.trust-wrap {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 28px;
  margin-top: 42px;
}
.trust-card { padding: 34px; border-radius: 24px; background: var(--white); border: 1px solid var(--line); }
.legal-card { color: #eaf2ff; background: linear-gradient(145deg, var(--blue-900), var(--blue-950)); border: 0; }
.legal-card .legal-row { border-color: rgba(255,255,255,.12); }
.legal-row { display: grid; grid-template-columns: 160px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.legal-row:last-child { border-bottom: 0; }
.legal-row span:first-child { font-weight: 800; opacity: .8; }

.cta-section { padding: 84px 0; }
.cta-box {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border-radius: 32px;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-900), var(--blue-700));
}
.cta-box::after { content:""; position:absolute; width:330px; height:330px; border-radius:50%; right:-90px; bottom:-170px; background:linear-gradient(135deg,var(--orange-500),var(--yellow-400)); opacity:.88; }
.cta-box > * { position: relative; z-index: 2; }
.cta-box p { color: #dbe7f8; max-width: 700px; }

.site-footer { background: #061a36; color: #cbd8e8; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr .8fr; gap: 42px; }
.footer-brand img { width: 100px; height: 100px; object-fit: contain; background: #fff; border-radius: 18px; margin-bottom: 18px; }
.footer-title { color: #fff; font-weight: 900; margin-bottom: 16px; }
.footer-links { display: grid; gap: 9px; color: #cbd8e8; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; gap:20px; font-size:.86rem; color:#9db0c7; }

.page-hero { padding: 88px 0 62px; color: #fff; background: linear-gradient(135deg, var(--blue-950), var(--blue-800)); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.content-page { padding: 68px 0 100px; }
.prose { max-width: 860px; }
.prose h2 { margin-top: 42px; font-size: 1.75rem; }
.prose h3 { margin-top: 30px; font-size: 1.2rem; }
.prose p, .prose li { color: #475467; }
.prose ul { padding-left: 22px; }
.notice { padding: 20px 22px; border-left: 4px solid var(--orange-500); background: #fff7ed; border-radius: 12px; margin: 26px 0; }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 78px; left: 20px; right: 20px; padding: 18px; background:#fff; border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow); flex-direction:column; align-items:stretch; }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: grid; place-items: center; }
  .hero-grid, .two-col, .trust-wrap, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; gap: 42px; padding: 64px 0 110px; }
  .logo-card { max-width: 560px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr; }
  .stats-card { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .brand span { display: none; }
  .hero-grid { padding-top: 44px; }
  h1 { font-size: 2.8rem; }
  .hero-actions .btn { width: 100%; }
  .cta-box { padding: 34px 24px; }
  .legal-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
