:root {
  --ink: #040814;
  --ink-soft: #08101b;
  --petrol: #336666;
  --petrol-light: #4c8580;
  --orange: #ff6633;
  --paper: #f4f6f6;
  --paper-strong: #eef3f2;
  --white: #ffffff;
  --muted: #6a7180;
  --line: rgba(4, 8, 20, .12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a:hover {
  color: var(--orange);
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 10px 28px rgba(4, 8, 20, .2);
}

.navbar {
  min-height: 84px;
  padding: 12px 0;
}

.brand img {
  width: 214px;
  max-width: 58vw;
  display: block;
}

.navbar-toggler {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  padding: 8px 10px;
}

.nav-link {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px !important;
}

.nav-item.active .nav-link,
.nav-link:hover {
  color: var(--white);
}

.nav-item.active .nav-link::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  margin-top: 6px;
  background: var(--orange);
}

.hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(4, 8, 20, .98) 0%, rgba(4, 8, 20, .9) 48%, rgba(51, 102, 102, .72) 100%),
    url("../imagensExemplo/bg_1.jpg") center/cover;
  padding: 92px 0 84px;
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 8, 20, .98), rgba(51, 102, 102, .84)),
    url("../imagensExemplo/about-bg.jpg") center/cover;
  padding: 104px 0 92px;
}

.page-hero.compact {
  padding-bottom: 70px;
}

.eyebrow,
.section-kicker,
.panel-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 50px);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 24px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 24px;
}

h3 {
  font-size: 20px;
  font-weight: 800;
}

.lead,
.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
  font-size: 20px;
}

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

.btn {
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  padding: 14px 22px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.btn-accent {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.btn-accent:hover {
  color: var(--white);
  background: #e95525;
  border-color: #e95525;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .3);
}

.insight-panel {
  margin-left: auto;
  max-width: 420px;
  padding: 30px;
  background: rgba(4, 8, 20, .78);
  border: 1px solid rgba(255, 102, 51, .24);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .28);
}

.metric-line {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.metric-line strong {
  color: var(--orange);
  font-size: 24px;
}

.panel-chart {
  height: 140px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: end;
  margin-top: 28px;
}

.panel-chart span {
  display: block;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--orange), var(--petrol-light));
}

.section {
  padding: 96px 0;
}

.light-section {
  background: var(--paper);
}

.light-section:nth-of-type(even) {
  background: var(--paper-strong);
}

.dark-section {
  color: var(--white);
  background: var(--ink);
}

.target-section {
  background:
    linear-gradient(135deg, rgba(51, 102, 102, .96), rgba(8, 16, 27, .96)),
    url("../imagensExemplo/bg_5.jpg") center/cover;
}

.governance-section {
  color: var(--ink);
  background: linear-gradient(135deg, var(--paper), #dfeceb);
}

.section-lead {
  color: var(--muted);
  font-size: 19px;
}

.value-grid,
.statement-grid,
.solution-grid {
  display: grid;
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.value-grid article,
.statement-grid article,
.solution-grid article,
.mock-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(4, 8, 20, .07);
}

.value-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--petrol);
  border-radius: 6px;
  margin-bottom: 18px;
}

.value-grid p,
.statement-grid p,
.solution-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.image-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(51, 102, 102, .94), rgba(4, 8, 20, .95)),
    url("../imagensExemplo/bg_2.jpg") center/cover;
}

.mock-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 18px;
  margin-top: 38px;
}

.mock-photo {
  min-height: 240px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, .16);
}

.mock-photo.large {
  min-height: 340px;
}

.pill-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pill-list span {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
  padding: 18px 20px;
  font-weight: 700;
}

.target-block {
  max-width: 1040px;
  margin: 0 auto;
}

.target-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.statement-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
}

.statement-grid strong {
  display: block;
  color: var(--petrol);
  font-size: 22px;
  margin-bottom: 10px;
}

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

.solution-grid article span {
  color: var(--orange);
  font-weight: 800;
}

.solution-grid h2 {
  font-size: 24px;
  margin-top: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline article {
  border-top: 4px solid var(--orange);
  background: var(--white);
  border-radius: 0 0 8px 8px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(4, 8, 20, .08);
}

.timeline span {
  display: block;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--petrol);
}

.timeline p {
  color: var(--muted);
  margin-bottom: 0;
}

.info-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 42px;
  align-items: start;
}

.info-sidebar {
  position: sticky;
  top: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(4, 8, 20, .07);
}

.info-sidebar h2 {
  font-size: 18px;
  margin-bottom: 16px;
}

.info-sidebar a {
  display: block;
  color: var(--muted);
  font-weight: 700;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.info-sidebar a:hover {
  color: var(--orange);
}

.info-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 42px;
  box-shadow: 0 18px 50px rgba(4, 8, 20, .07);
}

.info-content article + article {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.info-content h2 {
  color: var(--petrol);
}

.info-content p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 700;
}

.contact-list span {
  color: var(--orange);
}

.mock-form label {
  display: block;
  font-weight: 800;
  margin-bottom: 16px;
}

.mock-form input,
.mock-form textarea {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  margin-top: 8px;
  font: inherit;
}

.mock-form textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  padding: 72px 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 42px;
  align-items: start;
}

.footer-brand img {
  width: 220px;
  max-width: 100%;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
}

.footer-col h3 {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
}

.footer-social a:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding-top: 14px;
  }

  .insight-panel {
    margin: 48px 0 0;
    max-width: none;
  }

  .value-grid,
  .statement-grid,
  .solution-grid,
  .timeline,
  .contact-layout,
  .info-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .info-sidebar {
    position: static;
  }

  .mock-gallery {
    grid-template-columns: 1fr;
  }

  .pill-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .hero,
  .page-hero,
  .section {
    padding-left: 0;
    padding-right: 0;
  }

  h1 {
    font-size: 40px;
  }

  .lead,
  .page-hero p {
    font-size: 18px;
  }
}
