:root {
  --ink: #17212b;
  --muted: #5f6f7d;
  --line: #dce5ec;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --brand: #0b5f7d;
  --brand-2: #1a8a74;
  --accent: #d9972b;
  --danger: #8f2f24;
  --shadow: 0 14px 36px rgba(23, 33, 43, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 229, 236, 0.84);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 96px;
  height: 54px;
  object-fit: contain;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #314452;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  padding: 10px 2px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(11, 95, 125, 0.24);
}

.button.primary:hover {
  background: #084b64;
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.button.accent {
  color: #241604;
  background: var(--accent);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 28, 40, 0.9) 0%, rgba(10, 28, 40, 0.72) 44%, rgba(10, 28, 40, 0.28) 100%),
    url("../images/hero-consultoria.png") center / cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(10, 28, 40, 0), rgba(10, 28, 40, 0.76));
  z-index: -1;
}

.hero-content {
  width: min(720px, 100%);
  padding: 92px 0 88px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #b9e6dc;
  font-size: 14px;
  font-weight: 760;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 780px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

.hero p.lead {
  max-width: 650px;
  margin-top: 22px;
  color: #e9f2f5;
  font-size: 20px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #edf7f6;
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 82px 0;
}

.section.soft {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 20px rgba(23, 33, 43, 0.04);
}

.service-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: #e7f3f6;
  border-radius: 8px;
}

.service-card p,
.feature p,
.product-card p,
.page-intro p,
.check-list li,
.faq p {
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand);
  font-weight: 780;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
}

.metric-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.metric {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.metric strong {
  display: block;
  font-size: 24px;
  color: var(--brand);
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

.product-band {
  background: #102936;
  color: #fff;
}

.product-band .section-head p,
.product-band .check-list li {
  color: #d6e7ec;
}

.product-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
}

.official-logo-panel {
  display: grid;
  place-items: center;
  padding: 24px;
}

.official-logo-panel img {
  width: 100%;
  max-width: 460px;
  object-fit: contain;
}

.official-stack {
  display: grid;
  gap: 18px;
}

.price {
  margin: 18px 0 6px;
  font-size: 44px;
  font-weight: 850;
  line-height: 1;
}

.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-2);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 6px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.page-hero {
  padding: 78px 0 54px;
  background: linear-gradient(135deg, #eef7f7, #ffffff 72%);
  border-bottom: 1px solid var(--line);
}

.page-intro {
  max-width: 820px;
}

.page-intro p {
  margin-top: 18px;
  font-size: 19px;
}

.feature {
  padding: 24px;
}

.feature h3 {
  margin-bottom: 10px;
}

.process {
  counter-reset: step;
}

.process .feature {
  position: relative;
  padding-top: 58px;
}

.process .feature::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--brand);
  font-weight: 850;
}

.faq {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq h3 {
  margin-bottom: 8px;
}

.contact-band {
  padding: 58px 0;
  background: var(--brand);
  color: #fff;
}

.contact-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-band p {
  color: #d9edf2;
  margin-top: 10px;
}

.site-footer {
  padding: 34px 0;
  background: #0d1d27;
  color: #b8c8cf;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.site-footer strong {
  display: block;
  color: #fff;
  margin-bottom: 10px;
}

.site-footer a {
  display: block;
  margin-top: 6px;
}

.notice {
  padding: 14px 16px;
  color: #4f3b12;
  background: #fff7df;
  border: 1px solid #ead38d;
  border-radius: var(--radius);
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    inset: 72px 0 auto;
    display: none;
    padding: 14px 16px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links .button {
    width: 100%;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding: 78px 0 64px;
  }

  .grid.cols-3,
  .grid.cols-2,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-band .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .nav {
    min-height: 66px;
  }

  .brand-logo {
    width: 74px;
    height: 42px;
  }

  .brand-text span {
    display: none;
  }

  .nav-links {
    inset-block-start: 66px;
  }

  .hero {
    min-height: 700px;
  }

  .hero p.lead,
  .page-intro p,
  .section-head p {
    font-size: 17px;
  }

  .section {
    padding: 58px 0;
  }

  .button {
    width: 100%;
  }
}
