:root {
  --azul: #0768c9;
  --azul-escuro: #034f9c;
  --laranja: #ff8600;
  --branco: #ffffff;
  --texto: #18304a;
  --cinza: #f4f7fb;
  --borda: #dfe8f2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--texto);
  background: var(--branco);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); }

.topo {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--borda);
  backdrop-filter: blur(10px);
}
.topo__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { width: 245px; height: auto; }
.menu { display: flex; align-items: center; gap: 25px; font-size: 14px; font-weight: 700; }
.menu a:hover { color: var(--azul); }
.menu__cta { background: var(--laranja); color: var(--branco)!important; padding: 11px 18px; border-radius: 999px; }

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f2f8ff 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; position: relative; z-index: 2; padding: 80px 0; }
.hero__content { max-width: 700px; }
.eyebrow, .section__tag { display: inline-block; color: var(--laranja); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 900; }
.hero h1 { margin: 10px 0 0; color: var(--azul); font-size: clamp(52px, 7vw, 88px); line-height: .95; letter-spacing: -.055em; font-weight: 900; text-transform: uppercase; }
.hero h1 strong { color: var(--laranja); }
.hero__cargo { margin: 12px 0 20px; color: var(--azul-escuro); text-transform: uppercase; letter-spacing: .22em; font-weight: 800; }
.hero__texto { max-width: 660px; font-size: 18px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 8px; font-weight: 800; font-size: 14px; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--laranja { background: var(--laranja); color: var(--branco); }
.btn--outline { border: 2px solid var(--azul); color: var(--azul); }
.numero-card { aspect-ratio: 1/1; border-radius: 34px; background: var(--azul); color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; box-shadow: 0 24px 55px rgba(7,104,201,.25); transform: rotate(2deg); }
.numero-card span { font-size: 13px; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; }
.numero-card strong { font-size: clamp(76px, 10vw, 130px); line-height: 1; color: var(--laranja); letter-spacing: -.07em; }
.numero-card small { font-size: 22px; font-weight: 900; text-transform: uppercase; }
.hero__shape { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero__shape--1 { width: 280px; height: 280px; background: rgba(255,134,0,.08); left: -120px; top: 70px; }
.hero__shape--2 { width: 420px; height: 420px; background: rgba(7,104,201,.06); right: -160px; bottom: -160px; }

.section { padding: 90px 0; }
.section h2, .cta h2 { margin: 8px 0 20px; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -.035em; color: var(--azul-escuro); }
.section p { font-size: 17px; }
.section__header { max-width: 750px; margin-bottom: 40px; }
.section--azul { background: var(--azul-escuro); color: var(--branco); }
.section--azul h2, .section__header--claro h2 { color: var(--branco); }
.section__header--claro p { color: rgba(255,255,255,.78); }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: var(--branco); color: var(--texto); border-radius: 16px; padding: 28px; min-height: 230px; }
.card span { font-weight: 900; color: var(--laranja); }
.card h3 { color: var(--azul); font-size: 22px; margin: 12px 0 10px; }
.card p { margin: 0; font-size: 14px; }

.timeline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.timeline__item { border: 1px solid var(--borda); background: var(--cinza); padding: 28px; border-radius: 14px; border-left: 5px solid var(--laranja); }
.timeline__item b { display: block; color: var(--azul); font-size: 20px; margin-bottom: 6px; }
.timeline__item p { margin: 0; font-size: 15px; }

.cta { background: var(--laranja); color: var(--branco); padding: 70px 0; }
.cta__inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta .section__tag { color: var(--azul-escuro); }
.cta h2 { color: var(--branco); max-width: 720px; }
.cta p { max-width: 760px; }
.cta__number { min-width: 240px; text-align: center; background: var(--branco); color: var(--azul); border-radius: 20px; padding: 25px 30px; }
.cta__number small { display: block; text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.cta__number strong { display: block; font-size: 68px; line-height: 1; color: var(--laranja); }
.cta__number span { font-weight: 900; text-transform: uppercase; }

.footer { padding: 32px 0; background: #fff; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer img { width: 180px; }
.footer p { margin: 0; font-size: 13px; font-weight: 700; color: #627286; }

@media (max-width: 900px) {
  .menu a:not(.menu__cta) { display: none; }
  .logo img { width: 205px; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding: 65px 0; }
  .numero-card { width: min(420px, 100%); justify-self: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cta__inner { grid-template-columns: 1fr; }
  .cta__number { width: 100%; }
}

@media (max-width: 600px) {
  .container, .narrow { width: min(100% - 28px, 1120px); }
  .topo__inner { min-height: 70px; }
  .logo img { width: 165px; }
  .menu__cta { padding: 9px 14px; font-size: 12px; }
  .hero__grid { padding: 52px 0; }
  .hero h1 { font-size: 50px; }
  .hero__texto { font-size: 16px; }
  .btn { width: 100%; }
  .section { padding: 65px 0; }
  .cards, .timeline { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .cta { padding: 55px 0; }
  .footer__inner { flex-direction: column; text-align: center; }
}

.footer__legal {
  text-align: right;
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: .9;
}
.footer__legal strong { display: block; }
@media (max-width: 700px) {
  .footer__legal { text-align: center; }
}
