/* EXTII Trip — identidade oficial e jornada do Método EXTII. */
@font-face {
  font-family: "Montserrat";
  src: url("/static/fonts/montserrat.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --text: #111827;
  --muted: #667085;
  --line: #dce2e8;
  --purple: #0a3dff;
  --purple-dark: #052c67;
  --blue: #0a3dff;
  --shadow: 0 14px 38px rgba(5, 44, 103, 0.08);
}

body {
  background: radial-gradient(circle at 88% 0, rgba(87, 183, 231, 0.14), transparent 28rem), var(--bg);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.site-header {
  border-top: 4px solid #57b7e7;
}

.header-inner {
  min-height: 84px;
}

.brand {
  gap: 14px;
}

.brand-logo {
  width: 132px;
  height: auto;
}

.product-lockup {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.product-lockup strong,
.product-lockup small {
  display: block;
}

.product-lockup strong {
  color: #052c67;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.product-lockup small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.main-nav a:hover {
  background: #edf3ff;
  color: var(--purple-dark);
}

.trip-start-button {
  border-color: #052c67;
  background: #052c67;
}

.trip-start-button:hover {
  background: #0a3dff;
}

.journey-section {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.journey-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.journey-heading .eyebrow {
  margin-bottom: 5px;
}

.journey-heading h2,
.journey-heading p {
  margin-bottom: 0;
}

.journey-heading p {
  color: var(--muted);
  font-size: 13px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.journey-grid li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 13px;
  border: 1px solid #dbe6f5;
  border-radius: 13px;
  background: #f8fbff;
}

.journey-grid li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: #052c67;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.journey-grid strong,
.journey-grid small {
  display: block;
}

.journey-grid strong {
  color: #052c67;
  font-size: 12px;
}

.journey-grid small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.journey-return {
  margin: 14px 0 0;
  color: #315274;
  font-size: 12px;
  font-weight: 700;
}

.journey-return span {
  margin-right: 7px;
  color: #0a3dff;
}

@media (max-width: 980px) {
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 112px;
  }

  .product-lockup small {
    display: none;
  }

  .journey-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }
}
