:root {
  --brand: #2e6fd0;
  --brand-dark: #1e4c8f;
  --ink: #22324b;
  --text: #3a4658;
  --muted: #737f90;
  --line: #e7ebf1;
  --card: #f5f7fa;
  --soft: #f7f9fc;
  --green: #27a35d;
  --green-dark: #1f8a4f;
  --orange: #f08a24;
  --red: #e0494d;
  --ok: #1fa971;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: clip;
}

/* HEADER */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo .mark {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.logo .mark .a {
  color: var(--brand);
}
.logo .mark .b {
  color: var(--ink);
}
.logo .sub {
  font-size: 7.5px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 500;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
  position: relative;
}
/* display:contents — .menu-links some do layout (só fica no DOM), os links continuam como filhos diretos do nav flex; existe só pra dar um alvo de posicionar no mobile. */
.menu-links {
  display: contents;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 7px;
  align-items: center;
  justify-content: center;
}
nav a.menu {
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: 0.15s;
}
nav a.menu:hover {
  color: var(--brand);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn-login {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.btn-login:hover {
  color: var(--brand-dark);
}
.btn-pill {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s;
  box-shadow: 0 5px 14px rgba(46, 111, 208, 0.3);
  text-decoration: none;
  display: inline-block;
}
.btn-pill:hover {
  background: var(--brand-dark);
}

/* HERO */
.hero {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 64px 20px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(20, 32, 52, 0.94), rgba(15, 26, 43, 0.97)),
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.03) 0 2px,
      transparent 2px 26px
    ),
    repeating-linear-gradient(
      25deg,
      rgba(255, 255, 255, 0.025) 0 2px,
      transparent 2px 30px
    ),
    linear-gradient(135deg, #21344e, #101a2b);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 75% 30%,
    rgba(46, 111, 208, 0.28),
    transparent 55%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
}
.hero .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(46, 111, 208, 0.2);
  border: 1px solid rgba(120, 170, 240, 0.4);
  color: #cfe0fb;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero p {
  font-size: 16px;
  color: #c4cedd;
  max-width: 620px;
  margin: 0 auto 30px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-green {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 30px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.15s;
  box-shadow: 0 8px 22px rgba(39, 163, 93, 0.35);
  text-decoration: none;
  display: inline-block;
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.btn-ghost-w {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost-w:hover {
  background: rgba(255, 255, 255, 0.16);
}
.breadcrumb {
  position: relative;
  z-index: 2;
  font-size: 12px;
  color: #9fb0c6;
  margin-top: 26px;
}
.breadcrumb b {
  color: #fff;
}

/* DEADLINE STRIP */
.deadline {
  background: linear-gradient(90deg, #b9332f, #e0494d);
  color: #fff;
  text-align: center;
  padding: 13px 20px;
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.deadline b {
  font-weight: 700;
}
.deadline svg {
  flex: none;
}

/* SECTION wrappers */
section {
  padding: 64px 40px;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
}
.h2-blue {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.lead {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.75;
}

/* REFORMA */
.reforma .r-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.reforma .tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.reforma h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.reforma .r-sub {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
}
.reforma .r-sub b {
  color: var(--ink);
}
.chain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 14px;
}
.chain .step {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 22px 22px;
  position: relative;
}
.chain .num {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.chain h3 {
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 6px;
}
.chain p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* TIMELINE */
.timeline {
  margin-top: 48px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 30px 30px;
}
.tl-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand);
  margin-bottom: 30px;
}
.tl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.tl-item {
  text-align: center;
  position: relative;
  padding: 0 10px;
}
.tl-item::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: var(--line);
  z-index: 0;
}
.tl-item:last-child::before {
  display: none;
}
.tl-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand);
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
}
.tl-item.done .tl-dot {
  background: var(--brand);
}
.tl-item.crit .tl-dot {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(224, 73, 77, 0.18);
}
.tl-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.tl-item.crit .tl-date {
  color: var(--red);
}
.tl-desc {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.5;
}

/* EXPLAIN */
.explain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.explain .block + .block {
  margin-top: 30px;
}
.feat-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  transition: 0.18s;
}
.feat:hover {
  border-color: #cdddf4;
  box-shadow: 0 8px 22px rgba(30, 60, 120, 0.07);
  transform: translateY(-2px);
}
.feat .fic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #e9f1fd;
  color: var(--brand);
  display: grid;
  place-items: center;
  flex: none;
}
.feat .ft b {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 3px;
}
.feat .ft span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* URGENCY */
.urgency {
  background: linear-gradient(135deg, #16233a, #0f1a2b);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.urgency::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 15% 20%,
    rgba(46, 111, 208, 0.25),
    transparent 50%
  );
}
.urgency .container {
  position: relative;
  z-index: 2;
}
.urgency .u-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 44px;
}
.urgency .tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7fb0f5;
  margin-bottom: 14px;
}
.urgency h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.urgency .u-sub {
  font-size: 15px;
  color: #b9c5d6;
}
.u-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.u-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px 26px;
  transition: 0.18s;
}
.u-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(127, 176, 245, 0.4);
}
.u-card .uic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.u-card.r1 .uic {
  background: rgba(224, 73, 77, 0.18);
  color: #ff8a8d;
}
.u-card.r2 .uic {
  background: rgba(224, 161, 0, 0.18);
  color: #ffce5c;
}
.u-card.r3 .uic {
  background: rgba(46, 111, 208, 0.2);
  color: #7fb0f5;
}
.u-card.r4 .uic {
  background: rgba(31, 169, 113, 0.18);
  color: #5fd9a3;
}
.u-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 7px;
}
.u-card p {
  font-size: 13px;
  color: #aeb9ca;
  line-height: 1.6;
}
.u-strip {
  text-align: center;
  margin-top: 44px;
  padding: 26px;
  background: rgba(46, 111, 208, 0.12);
  border: 1px solid rgba(127, 176, 245, 0.3);
  border-radius: 16px;
}
.u-strip b {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 16px;
}

/* FINAL CTA */
.final {
  background: #fff;
  text-align: center;
}
.final h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.final p {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 26px;
}

/* FOOTER */
footer {
  background: #161e2b;
  color: #9aa6b8;
  padding: 34px 40px;
  text-align: center;
  font-size: 12px;
}
footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
footer a:hover,
footer a:focus-visible {
  color: #d7e5fa;
}
footer .fl {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
footer .fl .a {
  color: #5b9bf0;
}

@media (max-width: 820px) {
  .mobile-menu-btn {
    display: flex;
  }
  .menu-links {
    display: none;
  }
  .nav-cta .btn-pill {
    display: none;
  }
  /* Menu vira dropdown sob o header ao clicar no hambúrguer. nav vira position:static —
         sem isso, o dropdown (position:absolute) usaria a <nav> (só a parte direita do
         header) como referência de largura, cortando o menu na borda direita da tela. */
  nav#navReforma {
    position: static;
  }
  nav#navReforma.open .menu-links {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  }
  nav#navReforma.open .menu-links .menu {
    display: block;
    padding: 14px 20px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }
  nav#navReforma.open .menu-links .menu:last-child {
    border-bottom: none;
  }
  .explain {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .u-grid {
    grid-template-columns: 1fr;
  }
  .chain {
    grid-template-columns: 1fr;
  }
  .tl {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }
  .tl-item::before {
    display: none;
  }
  .hero h1 {
    font-size: 32px;
  }
  header {
    padding: 14px 20px;
  }
  section {
    padding: 48px 22px;
  }
}
/* Celular pequeno (ex.: iPhone SE, 375px) — breakpoint extra pra telas bem estreitas. */
@media (max-width: 380px) {
  header {
    padding-inline: 14px;
  }
  .logo .mark {
    font-size: 18px;
  }
  .logo .sub {
    letter-spacing: 1.45px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero {
    padding: 48px 16px;
  }
  section {
    padding: 36px 16px;
  }
  .tl {
    grid-template-columns: 1fr;
  }
}
