* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #06145F;
  color: #fff;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

section,
footer {
  scroll-margin-top: 106px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(2, 12, 61, .78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  animation: fadeDown .8s ease forwards;
}

.nav-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  width: 156px;
  max-height: 58px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, .78);
}

.menu a {
  transition: color .2s ease, background .2s ease;
}

.menu a:hover {
  color: #fff;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.nav-socials a:hover {
  color: #fff;
  background: rgba(34, 197, 94, .16);
  border-color: rgba(34, 197, 94, .42);
  transform: translateY(-2px);
}

.menu-socials {
  display: none;
}

.menu-item {
  position: relative;
  display: flex;
  align-items: center;
}

.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.has-submenu > a::after {
  content: "⌄";
  font-size: 12px;
  opacity: .75;
  transform: translateY(-1px);
}

.submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 250px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(2, 12, 61, .96);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.submenu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, .74);
  white-space: nowrap;
}

.submenu a:hover {
  color: #fff;
  background: rgba(69, 70, 255, .18);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: 18px;
  padding: 15px 26px;
  font-weight: 700;
  color: #fff;
  background: #4546FF;
  box-shadow: 0 22px 60px rgba(69, 70, 255, .32);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-2px);
  background: #3536E8;
}

.nav-cta-whatsapp {
  background: #22c55e;
  box-shadow: 0 22px 60px rgba(34, 197, 94, .30);
  white-space: nowrap;
}

.nav-cta-whatsapp:hover {
  background: #16a34a;
}

.nav-cta-whatsapp i {
  font-size: 18px;
}

.nav-cta-whatsapp .label-mobile {
  display: none;
}

.btn-outline {
  background: rgba(2, 12, 61, .38);
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, .70);
  background: rgba(2, 12, 61, .56);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(.80) saturate(1.05);
  transform: scale(1.02);
  transition: opacity 1.2s ease, transform 4s ease;
}

.hero-bg.is-active {
  opacity: .90;
  transform: scale(1);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #020C3D 0%, rgba(6, 20, 95, .9) 45%, rgba(6, 20, 95, .16) 100%);
  z-index: 1;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #020C3D 0%, rgba(2, 12, 61, 0) 45%, rgba(2, 12, 61, .35) 100%);
  z-index: 2;
}

.watermark {
  position: absolute;
  right: 48px;
  bottom: 120px;
  z-index: 3;
  font-size: 250px;
  font-weight: 900;
  color: rgba(69, 70, 255, .20);
  line-height: .8;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1500px;
  margin: 0 auto;
  padding: 110px 32px 40px;
}

.eyebrow {
  color: #fff;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 32px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, .72);
}

h1 {
  font-size: clamp(48px, 7vw, 56px);
  line-height: 1.03;
  letter-spacing: -3px;
  max-width: 780px;
  margin-bottom: 30px;
}

.blue {
  color: #4546FF;
}

.divider {
  width: 64px;
  height: 4px;
  background: #4546FF;
  border-radius: 99px;
  margin-bottom: 30px;
}

.hero p {
  color: rgba(255, 255, 255, .82);
  font-size: 21px;
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.metrics {
  margin-top: 20px;
  background: rgba(2, 12, 61, .76);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .35);
  animation: fadeUp .9s .45s both;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.metric {
  display: flex;
  gap: 20px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  transition: transform .25s ease;
}

.metric:hover {
  transform: translateY(-6px);
}

.metric:last-child {
  border-right: none;
}

.icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(69, 70, 255, .20);
  color: #4546FF;
  font-size: 28px;
  font-weight: 800;
}

.metric strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.metric span {
  color: #fff;
  line-height: 1.5;
}

section {
  position: relative;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 96px 32px;
}

.about,
.section-dark {
  background: #020C3D;
}

.section-blue {
  background: #06145F;
  border-top: 1px solid rgba(255, 255, 255, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.35fr);
  gap: clamp(42px, 5vw, 86px);
  align-items: center;
}

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

h2 {
  font-size: clamp(38px, 4.5vw, 40px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.lead {
  color: #fff;
  font-size: 18px;
  line-height: 1.72;
  margin-bottom: 30px;
}

.about .lead {
  max-width: 600px;
}


.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  border-left: none;
}

.persona {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  background: rgba(255, 255, 255, .045);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.persona:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .20);
}

.persona h3 {
  font-size: 23px;
  line-height: 1.2;
  margin: 26px 0 16px;
}

.persona p {
  color: #fff;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  gap: 20px;
}

.feature-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: transform .25s ease, background .25s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, .08);
}

.feature-item span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(69, 70, 255, .20);
  color: #4546FF;
  font-weight: 900;
}

.feature-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature-item p {
  color: #fff;
  line-height: 1.65;
}

.conduta-box {
  padding: 38px;
  border-radius: 32px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

.conduta-box ul {
  list-style: none;
  display: grid;
  gap: 18px;
}

.conduta-box li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.65;
}

.conduta-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4546FF;
  font-weight: 900;
}

.tech {
  background: #06145F;
  border-top: 1px solid rgba(255, 255, 255, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden;
}

.tech:before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 90px solid rgba(69, 70, 255, .30);
}

.center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 72px;
}

.center p {
  color: #fff;
  font-size: 20px;
  line-height: 1.65;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 30px;
  padding: 34px;
  backdrop-filter: blur(14px);
  transition: transform .25s ease, background .25s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, .08);
}

.mini-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #4546FF;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 24px;
}

.card h3 {
  font-size: 25px;
  margin-bottom: 16px;
}

.card p {
  color: #fff;
  line-height: 1.65;
}

.governance .container {
  max-width: 1280px;
}

.gov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gov-main {
  background: linear-gradient(135deg, #4546FF, #06145F);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.gov-main ul {
  list-style: none;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 2.1;
}

.stack {
  display: grid;
  gap: 28px;
}

.stack-card {
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 28px;
  padding: 32px;
  background: rgba(255, 255, 255, .05);
  transition: transform .25s ease;
}

.stack-card:hover {
  transform: translateX(8px);
}

.stack-card h3 {
  color: #4546FF;
  font-size: 34px;
  margin-bottom: 10px;
}

.stack-card p {
  color: #fff;
}

.growth {
  background: #020C3D;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.growth img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 28px;
  opacity: .9;
}

.chart {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 32px;
  padding: 44px;
}

.bars {
  height: 310px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
}

.bar {
  width: 72px;
  border-radius: 18px 18px 0 0;
  background: #4546FF;
  animation: grow 1.2s ease both;
}

.bar-30 {
  height: 30%;
  animation-delay: .1s;
}

.bar-50 {
  height: 50%;
  animation-delay: .2s;
}

.bar-70 {
  height: 70%;
  animation-delay: .3s;
}

.bar-100 {
  height: 100%;
  animation-delay: .4s;
}

.bar.final {
  background: #fff;
}

.years {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .60);
  margin-top: 22px;
}

.partners {
  background: #06145F;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

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

.partner-card {
  min-height: 220px;
  border-radius: 30px;
  padding: 32px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: transform .25s ease, background .25s ease;
}

.partner-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .08);
}

.partner-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.partner-card p {
  color: #fff;
  line-height: 1.65;
}

.cta {
  position: relative;
  background:
    linear-gradient(90deg, rgba(2, 12, 61, .92) 0%, rgba(6, 20, 95, .78) 48%, rgba(6, 20, 95, .58) 100%),
    url("../img/cta-cinga.jpg") center/cover no-repeat;
  border-top: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden;
}

.cta .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1050px;
}

.cta:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 30%, rgba(69, 70, 255, .22), transparent 42%);
  pointer-events: none;
}

.cta p {
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  line-height: 1.65;
  margin: 0 auto 40px;
  max-width: 760px;
}

.btn-white {
  background: #fff;
  color: #06145F;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
}

.btn-white:hover {
  background: rgba(255, 255, 255, .9);
  color: #06145F;
}

.btn-white i {
  font-size: 18px;
}

footer {
  background: #010826;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 76px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}

footer h3 {
  font-size: 21px;
  margin-bottom: 24px;
}

footer p,
footer li {
  color: rgba(255, 255, 255, .60);
  line-height: 1.9;
  list-style: none;
}

footer a {
  transition: color .2s ease;
}

footer a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-socials a:hover {
  color: #fff;
  background: rgba(34, 197, 94, .14);
  border-color: rgba(34, 197, 94, .38);
  transform: translateY(-2px);
}

.footer-grid-clean {
  align-items: start;
}

footer a[href^="tel:"],
footer a[href^="mailto:"],
footer a[href^="https://wa.me"] {
  color: rgba(255, 255, 255, .82);
}


.reveal {
  opacity: 0;
  transform: translateY(36px);
  animation: fadeUp .8s ease forwards;
}

.delay-1 {
  animation-delay: .1s;
}

.delay-2 {
  animation-delay: .2s;
}

.delay-3 {
  animation-delay: .3s;
}

.delay-4 {
  animation-delay: .4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes grow {
  from {
    height: 0;
  }
}

@media (max-width: 1280px) {
  .menu {
    gap: 20px;
  }

  .nav-inner {
    gap: 20px;
  }

  .nav-cta {
    padding: 14px 20px;
  }

  .nav-socials {
    gap: 6px;
  }

  .nav-socials a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

@media (max-width: 1280px) {
  .about-grid {
    grid-template-columns: minmax(330px, 1fr) minmax(0, 1.15fr);
    gap: 46px;
  }

  .persona {
    padding: 26px;
  }
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: 88px;
  }

  section,
  footer {
    scroll-margin-top: 88px;
  }

  .nav-inner {
    padding: 16px 20px;
    gap: 10px;
  }

  .logo-img {
    width: 132px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    order: 3;
  }

  .menu {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    background: rgba(2, 12, 61, .98);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .35);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    width: 100%;
    padding: 14px 12px;
    border-radius: 12px;
  }

  .menu a:hover {
    background: rgba(255, 255, 255, .06);
  }

  .nav-socials {
    display: none;
  }

  .menu-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 6px 4px;
  }

  .menu-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    padding: 0;
    color: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
  }

  .menu-socials a:hover {
    color: #fff;
    background: rgba(34, 197, 94, .14);
  }

  .menu-item,
  .has-submenu {
    display: grid;
    gap: 4px;
  }

  .has-submenu > a::after {
    content: "";
  }

  .submenu {
    position: static;
    min-width: auto;
    padding: 0 0 0 12px;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    gap: 2px;
  }

  .submenu a {
    padding: 10px 12px;
    font-size: 13px;
    color: #fff;
  }

  .logo {
    order: 1;
    margin-right: auto;
  }

  .nav-cta-whatsapp {
    order: 2;
    display: inline-flex;
    width: auto;
    height: 46px;
    min-width: 154px;
    padding: 0 16px;
    border-radius: 14px;
    gap: 8px;
    font-size: 13px;
    box-shadow: 0 14px 36px rgba(34, 197, 94, .28);
    flex-shrink: 0;
  }

  .nav-cta-whatsapp i {
    font-size: 16px;
  }

  .nav-cta-whatsapp .label-desktop {
    display: none;
  }

  .nav-cta-whatsapp .label-mobile {
    display: inline;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 92px 24px 34px;
  }

  .metric-grid,
  .about-grid,
  .split-grid,
  .growth-grid,
  .gov-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    padding: 24px 0;
  }

  .metric:last-child {
    border-bottom: none;
  }

  .persona-grid,
  .card-grid,
  .footer-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .persona {
    min-height: auto;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
  }

  h1 {
    letter-spacing: -2px;
  }

  .watermark {
    right: 10px;
    bottom: 64px;
    font-size: 150px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 72px 22px;
  }

  .hero-content {
    padding-left: 22px;
    padding-right: 22px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .hero p,
  .center p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .nav .nav-cta-whatsapp {
    width: auto;
    min-width: 146px;
    padding: 0 14px;
  }

  .nav-cta-whatsapp .label-mobile {
    display: inline;
  }

  .metrics {
    margin-top: 56px;
    padding: 24px;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }

  .chart {
    padding: 28px;
  }

  .bars {
    height: 240px;
    gap: 14px;
  }

  .bar {
    width: 100%;
  }

}

@media (max-width: 380px) {
  .nav-inner {
    gap: 8px;
  }

  .logo-img {
    width: 112px;
  }

  .nav .nav-cta-whatsapp {
    min-width: 132px;
    padding: 0 10px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}

/* ===== CINGA Institucional v2 - conteúdo da apresentação ===== */
.hero-bg {
  filter: brightness(1.02) saturate(1.08);
}

.hero-bg.is-active {
  opacity: .96;
}

.hero:before {
  background: linear-gradient(90deg, rgba(2, 12, 61, .86) 0%, rgba(6, 20, 95, .70) 46%, rgba(6, 20, 95, .16) 100%);
}

.hero:after {
  background: linear-gradient(0deg, rgba(2, 12, 61, .76) 0%, rgba(2, 12, 61, 0) 48%, rgba(2, 12, 61, .22) 100%);
}

.hero h1 {
  max-width: 920px;
}

.menu {
  text-transform: uppercase;
  letter-spacing: .02em;
}

.nav-cta-whatsapp,
.hero-whatsapp {
  background: #22c55e;
  box-shadow: 0 22px 60px rgba(34, 197, 94, .30);
}

.nav-cta-whatsapp:hover,
.hero-whatsapp:hover {
  background: #16a34a;
}

.ecosystem,
.judicial,
.systemic,
.diligence,
.origination,
.leadership,
.consulting {
  overflow: hidden;
}

.ecosystem-grid,
.consulting-grid,
.timeline-grid,
.leadership-grid {
  display: grid;
  gap: 28px;
}

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

.ecosystem-card,
.consulting-card,
.timeline-grid article,
.leadership-grid article {
  position: relative;
  min-height: 280px;
  border-radius: 32px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.ecosystem-card:hover,
.consulting-card:hover,
.timeline-grid article:hover,
.leadership-grid article:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .085);
  border-color: rgba(255, 255, 255, .22);
}

.ecosystem-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 38px;
  padding: 0 14px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ecosystem-card h3,
.consulting-card h3,
.timeline-grid h3,
.leadership-grid h3 {
  font-size: 27px;
  margin-bottom: 16px;
  line-height: 1.18;
}

.ecosystem-card p,
.consulting-card p,
.timeline-grid p,
.leadership-grid p {
  color: #fff;
  line-height: 1.7;
}

.ecosystem-card-blue {
  background: linear-gradient(150deg, rgba(69, 70, 255, .42), rgba(255, 255, 255, .055));
}

.ecosystem-card-dark {
  background: linear-gradient(150deg, rgba(1, 8, 38, .78), rgba(255, 255, 255, .055));
}

.ecosystem-card-orange {
  background: linear-gradient(150deg, rgba(255, 111, 0, .78), rgba(255, 255, 255, .065));
}

.consulting {
  background: #06145F;
  border-top: 1px solid rgba(255, 255, 255, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.consulting-grid {
  grid-template-columns: repeat(4, 1fr);
}

.consulting-card {
  min-height: 300px;
}

.consulting-card .mini-logo {
  color: #fff;
  font-size: 20px;
}

.systemic-panel {
  padding: 44px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 82% 18%, rgba(69, 70, 255, .36), transparent 34%),
    rgba(255, 255, 255, .055);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

.systemic-number {
  font-size: clamp(60px, 8vw, 112px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -5px;
  color: #fff;
  margin-bottom: 18px;
}

.systemic-panel p {
  color: rgba(255, 255, 255, .72);
  font-size: 20px;
  margin-bottom: 28px;
}

.systemic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.systemic-tags span {
  display: inline-flex;
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background: rgba(69, 70, 255, .18);
  border: 1px solid rgba(255, 255, 255, .10);
  font-size: 13px;
  font-weight: 700;
}

.gov-main p {
  color: rgba(255, 255, 255, .78);
  line-height: 1.72;
}

.timeline-grid {
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.timeline-grid article {
  min-height: 260px;
  padding: 30px;
}

.timeline-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #4546FF;
  color: #fff;
  font-weight: 900;
}

.leadership-grid {
  grid-template-columns: repeat(4, 1fr);
}

.leadership-grid article {
  min-height: 240px;
}

.footer-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1280px) {
  .ecosystem-grid,
  .consulting-grid,
  .timeline-grid,
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1280px) {
  .about-grid {
    grid-template-columns: minmax(330px, 1fr) minmax(0, 1.15fr);
    gap: 46px;
  }

  .persona {
    padding: 26px;
  }
}

@media (max-width: 1100px) {
  .menu {
    text-transform: none;
    letter-spacing: 0;
  }

  .ecosystem-grid,
  .consulting-grid,
  .timeline-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .ecosystem-card,
  .consulting-card,
  .timeline-grid article,
  .leadership-grid article,
  .systemic-panel {
    padding: 28px;
    min-height: auto;
  }

  .systemic-number {
    letter-spacing: -3px;
  }
}
