@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --font-inter: "Inter", Arial, sans-serif;
  --font-manrope: "Manrope", "Inter", Arial, sans-serif;
  --navy-950: #07111f;
  --navy-900: #0b1729;
  --slate-900: #122033;
  --slate-800: #1d2d43;
  --slate-700: #33445b;
  --slate-600: #53647a;
  --slate-500: #718096;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f7f9fc;
  --white: #fff;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --cyan-500: #06b6d4;
  --violet-500: #7c3aed;
  --green-500: #10b981;
  --line: rgba(148, 163, 184, .24);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, .06);
  --shadow-md: 0 24px 70px rgba(15, 23, 42, .11);
  --shadow-lg: 0 38px 110px rgba(15, 23, 42, .18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--slate-50);
  color: var(--navy-950);
  font-family: var(--font-inter), Arial, sans-serif;
  overflow-x: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

.shell {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: transform .35s ease;
}

.topbar {
  height: 36px;
  color: #bdc9d9;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
  letter-spacing: .02em;
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar p,
.topbar-links,
.topbar a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.topbar-links {
  gap: 24px;
}

.topbar a {
  color: #d9e3ef;
  transition: color .2s;
}

.topbar a:hover {
  color: white;
}

.status-dot,
.window-live span,
.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .12);
}

.nav-wrap {
  height: 82px;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(203, 213, 225, .62);
  backdrop-filter: blur(18px) saturate(145%);
  transition: height .3s, box-shadow .3s, background .3s;
}

.is-scrolled .nav-wrap {
  height: 72px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 35px rgba(15, 23, 42, .07);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand-link {
  display: block;
  flex: 0 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  color: white;
  background: var(--navy-950);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1), 0 8px 20px rgba(15, 23, 42, .12);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  right: -18px;
  bottom: -18px;
  border-radius: 50%;
  background: var(--blue-600);
}

.brand-mark span {
  z-index: 1;
  font-family: var(--font-manrope);
  font-size: 21px;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  color: var(--navy-950);
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
}

.desktop-nav>a,
.mega-trigger>button {
  position: relative;
  border: 0;
  background: none;
  padding: 28px 11px;
  color: var(--slate-700);
  font-size: 13px !important;
  font-weight: 650;
  cursor: pointer;
  transition: color .2s;
}

.desktop-nav>a::after,
.mega-trigger>button::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transition: transform .2s;
}

.desktop-nav>a:hover,
.mega-trigger>button:hover {
  color: var(--blue-600);
}

.desktop-nav>a:hover::after,
.mega-trigger:hover>button::after {
  transform: scaleX(1);
}

.mega-trigger {
  height: 100%;
  display: flex;
  align-items: center;
}

.mega-trigger>button {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mega-trigger>button svg {
  transform: rotate(90deg);
  transition: transform .25s;
}

.mega-trigger:hover>button svg {
  transform: rotate(-90deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: min(1060px, calc(100vw - 48px));
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  padding: 26px 28px 0;
  border: 1px solid rgba(203, 213, 225, .85);
  border-radius: 0 0 26px 26px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 35px 90px rgba(15, 23, 42, .16);
  transition: opacity .22s, transform .22s, visibility .22s;
}

.mega-trigger:hover .mega-menu,
.mega-trigger:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 0 4px 22px;
  border-bottom: 1px solid var(--slate-200);
}

.kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mega-head h2 {
  margin: 0;
  font: 750 21px/1.25 var(--font-manrope);
  letter-spacing: -.035em;
}

.mega-head>a,
.mega-foot>a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 22px 0 24px;
}

.mega-column+.mega-column {
  padding-left: 20px;
  border-left: 1px solid var(--slate-200);
}

.mega-column-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 7px 10px;
}

.mega-column-title>span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-600);
  background: var(--blue-50);
}

.mega-column-title>div {
  display: flex;
  flex-direction: column;
}

.mega-column-title small {
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.mega-column-title strong {
  margin-top: 2px;
  color: var(--slate-900);
  font-size: 11px;
}

.mega-column>a {
  display: grid;
  grid-template-columns: 34px 1fr 14px;
  align-items: center;
  gap: 10px;
  padding: 9px 7px;
  border-radius: 12px;
  transition: background .2s, transform .2s;
}

.mega-column>a:hover {
  background: var(--slate-50);
  transform: translateX(2px);
}

.menu-icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  background: white;
}

.mega-column>a:hover .menu-icon {
  color: var(--blue-600);
  border-color: var(--blue-100);
}

.mega-column>a>span:nth-child(2) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mega-column>a strong {
  color: var(--slate-800);
  font-size: 10px;
  font-weight: 750;
}

.mega-column>a small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-arrow {
  color: var(--slate-300);
  transition: color .2s, transform .2s;
}

.mega-column>a:hover .menu-arrow {
  color: var(--blue-600);
  transform: translateX(2px);
}

.mega-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 -28px;
  padding: 14px 32px;
  border-radius: 0 0 25px 25px;
  background: var(--navy-950);
  color: #becadd;
}

.mega-foot p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 12px;
}

.mega-foot p svg {
  color: #5ee5f6;
}

.mega-foot p strong {
  color: white;
}

.mega-foot>a {
  color: #7dd3fc;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  font-weight: 750;
  line-height: 1;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}

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

.button-primary {
  color: white;
  background: var(--blue-600);
  box-shadow: 0 12px 30px rgba(37, 99, 235, .22);
  font-size: 13px !important;
}

.button-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 34px rgba(37, 99, 235, .28);
}

.nav-cta {
  padding: 13px 16px;
  font-size: 10px;
  border-radius: 10px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: white;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
}

.mobile-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: 0;
  background: rgba(7, 17, 31, .55);
  backdrop-filter: blur(5px);
  transition: opacity .3s;
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(390px, 92vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: -30px 0 80px rgba(7, 17, 31, .2);
  transform: translateX(102%);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.mobile-menu.is-open {
  visibility: visible;
}

.mobile-menu.is-open .mobile-overlay {
  opacity: 1;
}

.mobile-menu.is-open .mobile-panel {
  transform: translateX(0);
}

.mobile-head {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--slate-200);
}

.mobile-head>button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: var(--slate-50);
  cursor: pointer;
}

.mobile-nav {
  padding: 18px 20px;
  overflow-y: auto;
}

.mobile-nav>a,
.mobile-nav>button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 4px;
  border: 0;
  border-bottom: 1px solid var(--slate-100);
  background: transparent;
  color: var(--slate-800);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.mobile-nav svg {
  color: var(--slate-400);
  transition: transform .2s;
}

.mobile-nav svg.rotate {
  transform: rotate(90deg);
}

.mobile-services {
  display: grid;
  gap: 7px;
  padding: 11px 0 14px;
}

.mobile-services a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--slate-700);
  background: var(--slate-50);
  font-size: 11px;
  font-weight: 700;
}

.mobile-services span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue-600);
  background: white;
}

.mobile-contact {
  margin-top: auto;
  padding: 22px;
  border-top: 1px solid var(--slate-200);
  background: var(--slate-50);
}

.mobile-contact p {
  margin: 0 0 13px;
  font: 750 16px var(--font-manrope);
}

.mobile-contact .button {
  width: 100%;
  padding: 16px;
}

.mobile-contact small {
  display: block;
  margin-top: 10px;
  color: var(--slate-500);
  font-size: 12px;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 176px 0 0;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 72%, #f1f5f9 100%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .58;
  background-image: linear-gradient(rgba(148, 163, 184, .09) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, .09) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent 2%, black 26%, black 80%, transparent 100%);
}

.hero-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-ambient-one {
  width: 620px;
  height: 620px;
  top: 20px;
  right: -160px;
  background: radial-gradient(circle, rgba(37, 99, 235, .13), transparent 68%);
}

.hero-ambient-two {
  width: 500px;
  height: 500px;
  bottom: -240px;
  left: -220px;
  background: radial-gradient(circle, rgba(6, 182, 212, .08), transparent 68%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 72px;
  min-height: 630px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 52px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px 6px 7px;
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  color: var(--blue-700);
  background: rgba(239, 246, 255, .85);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.eyebrow>span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue-600);
}

.hero h1 {
  max-width: 670px;
  margin: 26px 0 22px;
  color: var(--navy-950);
  font: 780 clamp(48px, 4.2vw, 70px)/1.02 var(--font-manrope);
  letter-spacing: -.065em;
}

.hero h1 span {
  color: var(--blue-600);
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: var(--slate-600);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.68;
  letter-spacing: -.015em;
}

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

.button-large {
  min-height: 52px;
  padding: 0 21px;
  font-size: 11px;
}

.button-secondary {
  color: var(--slate-800);
  border: 1px solid var(--slate-300);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}

.button-secondary:hover {
  border-color: var(--blue-500);
  background: white;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.proof-number {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-number strong {
  color: var(--navy-950);
  font: 780 31px var(--font-manrope);
  letter-spacing: -.06em;
}

.proof-number span {
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .045em;
}

.proof-divider {
  width: 1px;
  height: 42px;
  background: var(--slate-200);
}

.proof-list {
  display: grid;
  gap: 7px;
}

.proof-list span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--slate-600);
  font-size: 12px;
  font-weight: 650;
}

.proof-list svg {
  padding: 2px;
  border-radius: 50%;
  color: white;
  background: var(--green-500);
}

.project-stage {
  position: relative;
  height: 610px;
  isolation: isolate;
  transform: perspective(1500px) rotateY(-2deg);
  transform-origin: right center;
}

.stage-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(42px);
}

.stage-glow-one {
  width: 460px;
  height: 460px;
  right: 30px;
  top: 70px;
  background: rgba(37, 99, 235, .13);
}

.stage-glow-two {
  width: 250px;
  height: 250px;
  left: 30px;
  bottom: 10px;
  background: rgba(6, 182, 212, .11);
}

.project-window {
  position: absolute;
  inset: 44px 0 auto 24px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .38);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.window-bar {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid var(--slate-200);
  background: #fafbfd;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8dee8;
}

.window-dots i:first-child {
  background: #ff8a80;
}

.window-dots i:nth-child(2) {
  background: #ffd166
}

.window-dots i:last-child {
  background: #66d9a8
}

.window-address {
  justify-self: center;
  width: 190px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--slate-200);
  border-radius: 7px;
  color: var(--slate-500);
  background: white;
  font-size: 10px;
}

.window-live {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--slate-500);
  font-size: 10px;
}

.window-live span {
  width: 5px;
  height: 5px;
}

.dashboard {
  height: 450px;
  display: flex;
  background: #f5f7fb;
}

.dashboard-sidebar {
  width: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0 12px;
  color: #94a3b8;
  background: var(--navy-950);
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 4px;
  color: white;
}

.app-brand span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--blue-600);
  font: 800 11px var(--font-manrope);
}

.app-brand strong {
  display: none;
}

.side-nav {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.side-nav i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-style: normal;
}

.side-nav i.active {
  color: white;
  background: var(--blue-600);
  box-shadow: 0 7px 16px rgba(37, 99, 235, .35);
}

.side-avatar {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border: 2px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  color: white;
  background: #334155;
  font-size: 10px;
  font-weight: 800;
}

.dashboard-main {
  flex: 1;
  min-width: 0;
  padding: 24px 24px 20px;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-top small {
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.dashboard-top h3 {
  margin: 3px 0 0;
  color: var(--slate-900);
  font: 750 18px var(--font-manrope);
  letter-spacing: -.04em;
}

.period {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 9px;
  border: 1px solid var(--slate-200);
  border-radius: 7px;
  color: var(--slate-500);
  background: white;
  font-size: 10px;
}

.period svg {
  transform: rotate(90deg);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 18px;
}

.metrics>div {
  position: relative;
  display: grid;
  grid-template-columns: 29px 1fr auto;
  align-items: center;
  padding: 11px;
  border: 1px solid #e5eaf1;
  border-radius: 11px;
  background: white;
  box-shadow: 0 5px 12px rgba(15, 23, 42, .025);
}

.metric-icon {
  grid-row: 1/3;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--blue-600);
  background: var(--blue-50);
}

.metric-icon.cyan {
  color: var(--cyan-500);
  background: #ecfeff
}

.metric-icon.violet {
  color: var(--violet-500);
  background: #f5f3ff
}

.metrics small {
  color: var(--slate-500);
  font-size: 8px;
}

.metrics strong {
  color: var(--slate-900);
  font: 760 12px var(--font-manrope);
}

.metrics em {
  grid-column: 3;
  grid-row: 1/3;
  color: var(--green-500);
  font-size: 8px;
  font-style: normal;
  font-weight: 750;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  gap: 10px;
  margin-top: 10px;
}

.chart-card,
.activity-card {
  height: 245px;
  padding: 14px;
  border: 1px solid #e5eaf1;
  border-radius: 12px;
  background: white;
}

.card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-label>span {
  display: flex;
  flex-direction: column;
}

.card-label strong {
  font-size: 12px;
  color: var(--slate-800)
}

.card-label small {
  margin-top: 2px;
  color: var(--slate-500);
  font-size: 8px
}

.card-label i {
  padding: 4px 6px;
  border-radius: 5px;
  color: var(--slate-500);
  background: var(--slate-100);
  font-size: 8px;
  font-style: normal
}

.chart-area {
  position: relative;
  height: 142px;
  margin-top: 13px;
}

.chart-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-lines i {
  height: 1px;
  background: #edf1f6;
}

.chart-area svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-months {
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
  font-size: 8px;
}

.activity-card {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.activity-card .card-label {
  margin-bottom: 2px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.activity-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--blue-600);
  background: var(--blue-50);
}

.activity-icon.cyan {
  color: var(--cyan-500);
  background: #ecfeff
}

.activity-icon.violet {
  color: var(--violet-500);
  background: #f5f3ff
}

.activity-item>div {
  display: flex;
  flex-direction: column;
}

.activity-item strong {
  color: var(--slate-700);
  font-size: 7px
}

.activity-item small {
  margin-top: 2px;
  color: var(--slate-500);
  font-size: 8px
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(203, 213, 225, .8);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.domyna-card {
  width: 214px;
  right: -30px;
  top: 4px;
  padding: 14px;
  border-radius: 17px;
  animation: float 7s ease-in-out infinite;
}

.float-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.float-head>div {
  display: flex;
  flex-direction: column
}

.float-head strong {
  font-size: 12px;
  color: var(--slate-800)
}

.float-head small {
  margin-top: 2px;
  color: var(--slate-500);
  font-size: 8px
}

.online-dot {
  width: 5px;
  height: 5px;
  margin-left: auto
}

.float-logo {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  color: white;
  font: 800 12px var(--font-manrope);
}

.float-logo.domyna {
  background: linear-gradient(135deg, #7c3aed, #4f46e5)
}

.float-logo.acai {
  background: linear-gradient(135deg, #7c3aed, #be185d)
}

.mini-map {
  position: relative;
  height: 73px;
  overflow: hidden;
  margin-top: 10px;
  border-radius: 9px;
  background: #f1f5f9;
  background-image: linear-gradient(35deg, transparent 48%, rgba(148, 163, 184, .2) 49%, rgba(148, 163, 184, .2) 51%, transparent 52%), linear-gradient(125deg, transparent 48%, rgba(148, 163, 184, .18) 49%, rgba(148, 163, 184, .18) 51%, transparent 52%);
  background-size: 44px 34px;
}

.map-line {
  position: absolute;
  height: 2px;
  border-radius: 2px;
  background: rgba(59, 130, 246, .35);
  transform-origin: left;
}

.map-line.one {
  width: 130px;
  left: 15px;
  top: 52px;
  transform: rotate(-21deg)
}

.map-line.two {
  width: 80px;
  left: 70px;
  top: 11px;
  transform: rotate(56deg)
}

.map-line.three {
  width: 70px;
  left: 35px;
  top: 18px;
  transform: rotate(31deg)
}

.pin {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 2px 5px rgba(37, 99, 235, .4)
}

.pin.p1 {
  left: 28px;
  top: 43px
}

.pin.p2 {
  left: 90px;
  top: 27px
}

.pin.p3 {
  left: 142px;
  top: 48px
}

.pin.p4 {
  left: 112px;
  top: 58px
}

.float-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 9px;
}

.float-stats span {
  display: flex;
  flex-direction: column
}

.float-stats strong {
  font: 750 8px var(--font-manrope);
  color: var(--slate-800)
}

.float-stats small {
  color: var(--slate-500);
  font-size: 8px
}

.acai-card {
  left: -5px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border-radius: 15px;
  animation: float 8s 1s ease-in-out infinite;
}

.acai-card>div {
  display: flex;
  flex-direction: column
}

.acai-card small {
  color: var(--slate-500);
  font-size: 8px
}

.acai-card strong {
  margin-top: 2px;
  color: var(--slate-800);
  font: 750 9px var(--font-manrope)
}

.card-tag {
  margin-left: 5px;
  padding: 5px 7px;
  border-radius: 6px;
  color: #6d28d9;
  background: #f5f3ff;
  font-size: 8px;
  font-weight: 750
}

.capability-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px 7px 7px;
  border: 1px solid rgba(203, 213, 225, .8);
  border-radius: 99px;
  color: var(--slate-700);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
  font-size: 10px;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.capability-pill span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-600);
  background: var(--blue-50)
}

.capability-code {
  left: -22px;
  top: 108px
}

.capability-cloud {
  right: 26px;
  bottom: 23px
}

.capability-cloud span {
  color: var(--cyan-500);
  background: #ecfeff
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-7px)
  }
}

.hero-footer {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(203, 213, 225, .75);
}

.hero-footer p {
  margin: 0;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 650;
}

.hero-footer>div {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-footer span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.hero-footer svg {
  color: var(--blue-600);
}

@media (max-width: 1210px) {

  .desktop-nav>a:nth-last-child(2),
  .desktop-nav>a:nth-last-child(3) {
    display: none;
  }

  .hero-layout {
    gap: 34px;
    grid-template-columns: .9fr 1.1fr;
  }

  .project-stage {
    transform: perspective(1500px) scale(.92) rotateY(-2deg);
    transform-origin: right center;
  }
}

@media (max-width: 1023px) {
  .topbar {
    display: none;
  }

  .nav-wrap,
  .is-scrolled .nav-wrap {
    height: 72px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }

  .hero-copy {
    max-width: 730px;
    padding-bottom: 20px;
  }

  .project-stage {
    width: min(760px, 100%);
    height: 590px;
    margin: 0 auto;
    transform: none;
  }

  .hero-footer {
    margin-top: 12px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 32px, 1380px);
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    margin-top: 21px;
    font-size: clamp(40px, 12.5vw, 57px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-large {
    width: 100%;
    min-height: 54px;
  }

  .hero-proof {
    align-items: flex-start;
    gap: 16px;
  }

  .proof-divider {
    display: none;
  }

  .proof-number {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding-right: 16px;
    border-right: 1px solid var(--slate-200);
  }

  .proof-number span br {
    display: none;
  }

  .proof-list span {
    align-items: flex-start;
    line-height: 1.35;
  }

  .project-stage {
    height: 430px;
    margin-top: 15px;
  }

  .project-window {
    inset: 36px -100px auto 0;
    transform: scale(.72);
    transform-origin: top left;
  }

  .domyna-card {
    right: -8px;
    top: 0;
    transform: scale(.82);
    transform-origin: top right;
    animation: none;
  }

  .acai-card {
    left: -5px;
    bottom: 15px;
    transform: scale(.88);
    transform-origin: bottom left;
    animation: none;
  }

  .capability-code {
    display: none;
  }

  .capability-cloud {
    right: 4px;
    bottom: 4px;
  }

  .hero-footer {
    min-height: 96px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .hero-footer>div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .hero-footer span {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    font-size: 10px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .project-stage {
    height: 402px;
  }

  .project-window {
    transform: scale(.66);
  }

  .domyna-card {
    transform: scale(.74);
  }

  .eyebrow {
    font-size: 10.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ======================================================
   CONFIANÇA E AUTORIDADE
   ====================================================== */
.authority {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 0 0;
  color: white;
  background:
    radial-gradient(circle at 10% 15%, rgba(37, 99, 235, .16), transparent 32%),
    radial-gradient(circle at 92% 78%, rgba(6, 182, 212, .09), transparent 28%),
    var(--navy-950);
}

.authority-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .32;
  background-image:
    linear-gradient(rgba(148, 163, 184, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.authority-shell {
  position: relative;
}

.authority-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .68fr);
  align-items: end;
  gap: 90px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-kicker svg {
  width: 16px;
  height: 16px;
}

.authority-heading h2 {
  max-width: 850px;
  margin: 22px 0 0;
  color: white;
  font: 760 clamp(42px, 4.25vw, 68px)/1.04 var(--font-manrope);
  letter-spacing: -.058em;
}

.authority-heading h2 span {
  color: #7dd3fc;
}

.authority-intro {
  padding-bottom: 6px;
}

.authority-intro p {
  margin: 0;
  color: #aebdce;
  font-size: 16px;
  line-height: 1.75;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: white;
  font-size: 12px;
  font-weight: 750;
  transition: color .2s, gap .2s;
}

.text-link svg {
  width: 16px;
  height: 16px;
  color: #7dd3fc;
}

.text-link:hover {
  gap: 12px;
  color: #7dd3fc;
}

.authority-numbers {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  margin-top: 68px;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 22px;
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}

.authority-number {
  min-height: 174px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 31px 27px;
}

.authority-number+.authority-number {
  border-left: 1px solid rgba(148, 163, 184, .16);
}

.authority-number-featured {
  border-radius: 21px 0 0 21px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .3), rgba(37, 99, 235, .08));
}

.authority-number>div {
  min-width: 0;
}

.authority-number strong {
  display: block;
  color: white;
  font: 760 17px/1.3 var(--font-manrope);
  letter-spacing: -.025em;
}

.authority-number p {
  margin: 9px 0 0;
  color: #93a5ba;
  font-size: 11px;
  line-height: 1.65;
}

.number-value {
  flex: 0 0 auto;
  color: #7dd3fc;
  font: 780 35px/1 var(--font-manrope);
  letter-spacing: -.06em;
}

.number-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(147, 197, 253, .22);
  border-radius: 12px;
  color: #93c5fd;
  background: rgba(37, 99, 235, .2);
}

.number-icon svg {
  width: 20px;
  height: 20px;
}

.number-icon-cyan {
  color: #67e8f9;
  background: rgba(6, 182, 212, .14);
}

.authority-content {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 20px;
  margin-top: 20px;
}

.authority-statement,
.authority-expertise {
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 24px;
}

.authority-statement {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 43px;
  background:
    radial-gradient(circle at 95% 5%, rgba(125, 211, 252, .24), transparent 30%),
    linear-gradient(145deg, #1d4ed8 0%, #173fae 52%, #0b2a7c 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .16);
}

.authority-statement::after {
  content: "R";
  position: absolute;
  right: -28px;
  bottom: -93px;
  color: rgba(255, 255, 255, .055);
  font: 800 290px/1 var(--font-manrope);
  letter-spacing: -.12em;
  pointer-events: none;
}

.statement-index {
  position: relative;
  z-index: 1;
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.authority-statement blockquote {
  position: relative;
  z-index: 1;
  max-width: 550px;
  margin: 52px 0 45px;
  color: white;
  font: 650 clamp(24px, 2.15vw, 34px)/1.42 var(--font-manrope);
  letter-spacing: -.04em;
}

.statement-signature {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}

.signature-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, .1);
  font: 750 11px var(--font-manrope);
}

.statement-signature>div {
  display: flex;
  flex-direction: column;
}

.statement-signature strong {
  font-size: 16px;
}

.statement-signature small {
  color: #bfdbfe;
  font-size: 12px;
}

.authority-expertise {
  padding: 42px 44px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
}

.authority-expertise .statement-index {
  color: var(--blue-600);
}

.expertise-heading h3 {
  max-width: 640px;
  margin: 14px 0 10px;
  color: var(--navy-950);
  font: 750 clamp(26px, 2.35vw, 36px)/1.18 var(--font-manrope);
  letter-spacing: -.045em;
}

.expertise-heading p {
  max-width: 660px;
  margin: 0;
  color: var(--slate-600);
  font-size: 12px;
  line-height: 1.7;
}

.expertise-list {
  display: grid;
  gap: 4px;
  margin-top: 27px;
}

.expertise-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 13px 12px;
  border-radius: 14px;
  transition: background .2s, transform .2s;
}

.expertise-item:hover {
  background: var(--slate-50);
  transform: translateX(3px);
}

.expertise-item>span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue-100);
  border-radius: 12px;
  color: var(--blue-600);
  background: var(--blue-50);
}

.expertise-item svg {
  width: 23px;
  height: 23px;
}

.expertise-item>div {
  display: flex;
  flex-direction: column;
}

.expertise-item strong {
  color: var(--slate-900);
  font-size: 16px;
}

.expertise-item p {
  margin: 4px 0 0;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.45;
}

.technology-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--slate-200);
}

.technology-stack span {
  padding: 7px 10px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  color: var(--slate-600);
  background: var(--slate-50);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .03em;
}

.trusted-projects {
  min-height: 115px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  margin-top: 52px;
  border-top: 1px solid rgba(148, 163, 184, .16);
}

.trusted-projects p {
  flex: 0 0 220px;
  margin: 0;
  color: #8294aa;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.project-signatures {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.project-signatures span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a9b8c9;
  font: 720 13px var(--font-manrope);
  letter-spacing: -.025em;
  white-space: nowrap;
  transition: color .2s;
}

.project-signatures span:hover {
  color: white;
}

.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.brand-dot-blue {
  background: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, .12);
}

.brand-dot-violet {
  background: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, .12);
}

.brand-dot-acai {
  background: #c026d3;
  box-shadow: 0 0 0 4px rgba(192, 38, 211, .12);
}

.brand-dot-cyan {
  background: #06b6d4;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, .12);
}

.brand-dot-green {
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .12);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2, .75, .25, 1);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .authority-heading {
    gap: 48px;
  }

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

  .authority-number:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(148, 163, 184, .16);
  }

  .authority-number:nth-child(4) {
    border-top: 1px solid rgba(148, 163, 184, .16);
  }

  .authority-number-featured {
    border-radius: 21px 0 0 0;
  }

  .project-signatures {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .authority {
    padding-top: 92px;
  }

  .authority-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .authority-intro {
    max-width: 690px;
  }

  .authority-content {
    grid-template-columns: 1fr;
  }

  .authority-statement {
    min-height: 380px;
  }

  .trusted-projects {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    padding: 34px 0;
  }

  .trusted-projects p {
    flex-basis: auto;
  }

  .project-signatures {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .authority {
    padding-top: 78px;
  }

  .authority-heading h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .authority-intro p {
    font-size: 15px;
  }

  .authority-numbers {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .authority-number {
    min-height: 0;
    padding: 25px 23px;
  }

  .authority-number+.authority-number {
    border-top: 1px solid rgba(148, 163, 184, .16);
    border-left: 0;
  }

  .authority-number-featured {
    border-radius: 21px 21px 0 0;
  }

  .authority-statement,
  .authority-expertise {
    padding: 31px 25px;
  }

  .authority-statement {
    min-height: 400px;
  }

  .authority-statement blockquote {
    margin-top: 42px;
  }

  .expertise-item {
    grid-template-columns: 38px 1fr;
    padding-inline: 0;
  }

  .expertise-item>span {
    width: 38px;
    height: 38px;
  }

  .project-signatures {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .project-signatures span {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ======================================================
   SOLUÇÕES DIGITAIS
   ====================================================== */
.solutions {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 124px 0 112px;
  background: #f7f9fc;
}

.solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .62;
  background-image:
    linear-gradient(rgba(148, 163, 184, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 72%, transparent);
}

.solutions-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.solutions-orbit-one {
  width: 560px;
  height: 560px;
  top: 80px;
  right: -310px;
  background: rgba(37, 99, 235, .09);
}

.solutions-orbit-two {
  width: 420px;
  height: 420px;
  bottom: 90px;
  left: -270px;
  background: rgba(6, 182, 212, .07);
}

.solutions-shell {
  position: relative;
}

.solutions-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .72fr);
  align-items: end;
  gap: 90px;
}

.section-kicker-light {
  color: var(--blue-600);
}

.solutions-heading h2 {
  max-width: 850px;
  margin: 21px 0 0;
  color: var(--navy-950);
  font: 760 clamp(42px, 4.2vw, 67px)/1.04 var(--font-manrope);
  letter-spacing: -.058em;
}

.solutions-heading h2 span {
  color: var(--blue-600);
}

.solutions-intro>p {
  margin: 0;
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.75;
}

.solutions-principle {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--slate-200);
}

.solutions-principle>span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-600);
  background: var(--blue-50);
}

.solutions-principle svg {
  width: 17px;
  height: 17px;
}

.solutions-principle p {
  margin: 0;
  color: var(--slate-500);
  font-size: 10px;
  line-height: 1.55;
}

.solutions-principle strong {
  color: var(--slate-800);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 68px;
}

.solution-card {
  --solution-color: var(--blue-600);
  --solution-soft: var(--blue-50);
  --solution-border: var(--blue-100);
  position: relative;
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(203, 213, 225, .86);
  border-radius: 26px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 22px 65px rgba(15, 23, 42, .075);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--solution-color);
}

.solution-card:hover {
  transform: translateY(-7px);
  border-color: var(--solution-border);
  box-shadow: 0 32px 90px rgba(15, 23, 42, .12);
}

.solution-card-violet {
  --solution-color: #7c3aed;
  --solution-soft: #f5f3ff;
  --solution-border: #ddd6fe;
}

.solution-card-cyan {
  --solution-color: #0891b2;
  --solution-soft: #ecfeff;
  --solution-border: #a5f3fc;
}

.solution-card-top {
  padding: 32px 31px 28px;
}

.solution-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.solution-number {
  color: var(--slate-500);
  font: 750 10px var(--font-manrope);
  letter-spacing: .14em;
}

.solution-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--solution-border);
  border-radius: 15px;
  color: var(--solution-color);
  background: var(--solution-soft);
}

.solution-icon svg {
  width: 23px;
  height: 23px;
}

.solution-eyebrow {
  display: block;
  color: var(--solution-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.solution-card h3 {
  max-width: 340px;
  margin: 11px 0 13px;
  color: var(--navy-950);
  font: 750 clamp(24px, 2vw, 31px)/1.16 var(--font-manrope);
  letter-spacing: -.045em;
}

.solution-description {
  min-height: 67px;
  margin: 0;
  color: var(--slate-600);
  font-size: 11px;
  line-height: 1.7;
}

.solution-services {
  display: grid;
  gap: 2px;
  padding: 9px 22px 18px;
  border-top: 1px solid var(--slate-100);
}

.solution-service {
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 11px 9px;
  border-radius: 12px;
  transition: background .2s, transform .2s;
}

.solution-service:hover {
  background: var(--solution-soft);
  transform: translateX(2px);
}

.solution-service>span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  color: var(--solution-color);
  background: white;
}

.solution-service svg {
  width: 16px;
  height: 16px;
}

.solution-service>div {
  min-width: 0;
}

.solution-service strong {
  display: block;
  color: var(--slate-800);
  font-size: 10px;
}

.solution-service p {
  margin: 3px 0 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.45;
}

.solution-card-footer {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-top: auto;
  padding: 25px 31px 29px;
  border-top: 1px solid var(--slate-200);
  background: #fbfcfe;
}

.solution-ideal>span {
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.solution-ideal p {
  margin: 6px 0 0;
  color: var(--slate-600);
  font-size: 12px;
  line-height: 1.55;
}

.solution-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--solution-color);
  font-size: 12px;
  font-weight: 800;
  transition: gap .2s;
}

.solution-link:hover {
  gap: 11px;
}

.solution-link svg {
  width: 15px;
  height: 15px;
}

.solutions-bridge {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 27px;
  overflow: hidden;
  margin-top: 20px;
  padding: 27px 28px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  color: white;
  background:
    radial-gradient(circle at 78% 0%, rgba(37, 99, 235, .24), transparent 31%),
    var(--navy-950);
  box-shadow: 0 26px 70px rgba(15, 23, 42, .14);
}

.solutions-bridge-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .22);
  border-radius: 17px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .16);
}

.solutions-bridge-mark svg {
  width: 25px;
  height: 25px;
}

.solutions-bridge-copy>span {
  color: #7dd3fc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.solutions-bridge-copy h3 {
  margin: 5px 0 4px;
  font: 740 19px var(--font-manrope);
  letter-spacing: -.035em;
}

.solutions-bridge-copy p {
  max-width: 520px;
  margin: 0;
  color: #93a5ba;
  font-size: 12px;
  line-height: 1.55;
}

.solutions-bridge-steps {
  display: flex;
  align-items: center;
  gap: 10px;
}

.solutions-bridge-steps>span {
  color: #c5d1df;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.solutions-bridge-steps b {
  margin-right: 3px;
  color: #7dd3fc;
  font-size: 10px;
}

.solutions-bridge-steps>svg {
  width: 12px;
  height: 12px;
  color: #52667d;
}

.solutions-bridge .button {
  min-height: 48px;
  padding-inline: 18px;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .solutions-heading {
    gap: 48px;
  }

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

  .solution-card:last-child {
    grid-column: 1 / -1;
  }

  .solution-card:last-child .solution-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-description {
    min-height: 0;
  }

  .solutions-bridge {
    grid-template-columns: 58px 1fr auto;
  }

  .solutions-bridge-steps {
    display: none;
  }
}

@media (max-width: 900px) {
  .solutions {
    padding: 94px 0 90px;
  }

  .solutions-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .solutions-intro {
    max-width: 690px;
  }

  .solutions-grid {
    margin-top: 52px;
  }

  .solutions-bridge {
    grid-template-columns: 52px 1fr;
  }

  .solutions-bridge-mark {
    width: 52px;
    height: 52px;
  }

  .solutions-bridge .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .solutions {
    padding: 78px 0 76px;
  }

  .solutions-heading h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .solutions-intro>p {
    font-size: 15px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .solution-card:last-child {
    grid-column: auto;
  }

  .solution-card:last-child .solution-services {
    grid-template-columns: 1fr;
  }

  .solution-card-top {
    padding: 28px 24px 25px;
  }

  .solution-services {
    padding-inline: 16px;
  }

  .solution-card-footer {
    padding: 23px 24px 26px;
  }

  .solutions-bridge {
    grid-template-columns: 1fr;
    padding: 25px 23px;
  }

  .solutions-bridge-mark {
    width: 46px;
    height: 46px;
  }
}

/* ======================================================
   PROJETOS EM DESTAQUE
   ====================================================== */
.featured-projects {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 128px 0 112px;
  color: white;
  background: var(--navy-950);
}

.featured-projects::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .28;
  background-image:
    linear-gradient(rgba(148, 163, 184, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .08) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 88%, transparent);
}

.projects-ambient {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.projects-ambient-one {
  width: 620px;
  height: 620px;
  top: 40px;
  right: -330px;
  background: rgba(37, 99, 235, .17);
}

.projects-ambient-two {
  width: 480px;
  height: 480px;
  bottom: 210px;
  left: -290px;
  background: rgba(6, 182, 212, .09);
}

.projects-shell {
  position: relative;
}

.projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .7fr);
  align-items: end;
  gap: 88px;
}

.section-kicker-dark {
  color: #7dd3fc;
}

.projects-heading h2 {
  margin: 21px 0 0;
  color: white;
  font: 760 clamp(42px, 4.2vw, 67px)/1.04 var(--font-manrope);
  letter-spacing: -.058em;
}

.projects-heading h2 span {
  color: #60a5fa;
}

.projects-heading-copy>p {
  margin: 0;
  color: #a9b7c9;
  font-size: 15px;
  line-height: 1.75;
}

.projects-heading-copy>a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 21px;
  color: #7dd3fc;
  font-size: 16px;
  font-weight: 800;
  transition: gap .2s, color .2s;
}

.projects-heading-copy>a:hover {
  gap: 12px;
  color: white;
}

.projects-heading-copy svg {
  width: 15px;
  height: 15px;
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(350px, .77fr) minmax(0, 1.23fr);
  min-height: 690px;
  overflow: hidden;
  margin-top: 66px;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 32px;
  background: #0a1628;
  box-shadow: 0 45px 110px rgba(0, 0, 0, .28);
}

.project-feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 44px 42px 40px;
  border-right: 1px solid rgba(148, 163, 184, .16);
  background: linear-gradient(155deg, rgba(18, 32, 51, .98), rgba(7, 17, 31, .98));
}

.project-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.project-index span,
.supporting-project-meta>span {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.project-index b {
  color: rgba(255, 255, 255, .18);
  font: 760 18px var(--font-manrope);
  letter-spacing: -.04em;
}

.project-brand-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

.project-brand-mark {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: white;
  font: 800 21px var(--font-manrope);
}

.project-brand-mark-foca {
  background: var(--blue-600);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .3);
}

.project-brand-line h3 {
  margin: 0;
  font: 760 24px var(--font-manrope);
  letter-spacing: -.04em;
}

.project-brand-line p {
  margin: 3px 0 0;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 700;
}

.project-feature-copy>h4 {
  margin: 29px 0 17px;
  color: white;
  font: 750 clamp(26px, 2.25vw, 36px)/1.16 var(--font-manrope);
  letter-spacing: -.048em;
}

.project-summary {
  margin: 0;
  color: #9dacbe;
  font-size: 11px;
  line-height: 1.75;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.project-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 999px;
  color: #b9c6d5;
  background: rgba(148, 163, 184, .07);
  font-size: 10px;
  font-weight: 700;
}

.project-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 28px;
}

.project-highlight {
  display: grid;
  grid-template-columns: 33px 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, .13);
  border-radius: 13px;
  background: rgba(255, 255, 255, .025);
}

.project-highlight>span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #60a5fa;
  background: rgba(37, 99, 235, .14);
}

.project-highlight svg {
  width: 15px;
  height: 15px;
}

.project-highlight strong {
  display: block;
  color: #e6edf6;
  font-size: 12px;
}

.project-highlight p {
  margin: 4px 0 0;
  color: #8191a5;
  font-size: 10px;
  line-height: 1.45;
}

.project-external-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  transition: gap .2s, color .2s;
}

.project-external-link:hover {
  gap: 12px;
  color: white;
}

.project-external-link svg {
  width: 15px;
  height: 15px;
}

.project-feature-visual {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 72px 46px;
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, .19), transparent 32%),
    linear-gradient(145deg, #0c1a2e, #07111f);
}

.project-feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(rgba(148, 163, 184, .32) .7px, transparent .7px);
  background-size: 18px 18px;
}

.case-glow {
  position: absolute;
  width: 520px;
  height: 300px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .2);
  filter: blur(80px);
}

.case-window {
  position: relative;
  z-index: 2;
  width: min(100%, 745px);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 20px;
  background: #f5f7fb;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(255, 255, 255, .4);
  transform: perspective(1500px) rotateY(-3deg) rotateX(1deg);
}

.case-window-bar,
.supporting-window-bar {
  height: 39px;
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  align-items: center;
  padding: 0 13px;
  border-bottom: 1px solid #e2e8f0;
  color: #718096;
  background: #fff;
}

.case-window-dots,
.supporting-window-bar>div {
  display: flex;
  gap: 5px;
}

.case-window-dots i,
.supporting-window-bar>div i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
}

.case-window-dots i:first-child,
.supporting-window-bar>div i:first-child {
  background: #fb7185;
}

.case-window-dots i:nth-child(2),
.supporting-window-bar>div i:nth-child(2) {
  background: #fbbf24;
}

.case-window-dots i:last-child,
.supporting-window-bar>div i:last-child {
  background: #34d399;
}

.case-window-bar>span {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  font-size: 8px;
}

.case-window-bar>span svg {
  width: 8px;
  height: 8px;
}

.case-window-bar>small {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
}

.case-window-bar>small i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
}

.foca-interface {
  height: 415px;
  display: flex;
}

.foca-sidebar {
  width: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 0;
  background: #081426;
}

.foca-logo {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--blue-600);
  font: 800 11px var(--font-manrope);
}

.foca-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.foca-sidebar nav span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #718096;
}

.foca-sidebar nav span.active {
  color: white;
  background: var(--blue-600);
  box-shadow: 0 7px 15px rgba(37, 99, 235, .28);
}

.foca-sidebar nav svg {
  width: 13px;
  height: 13px;
}

.foca-avatar {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border: 2px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: white;
  background: #334155;
  font-size: 8px;
  font-weight: 800;
}

.foca-dashboard {
  flex: 1;
  min-width: 0;
  padding: 22px;
  color: var(--navy-950);
}

.foca-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foca-dashboard-head small {
  display: block;
  color: var(--blue-600);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.foca-dashboard-head strong {
  display: block;
  margin-top: 3px;
  font: 750 16px var(--font-manrope);
  letter-spacing: -.04em;
}

.foca-dashboard-head button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  color: #718096;
  background: white;
  font-size: 8px;
}

.foca-dashboard-head button svg {
  width: 9px;
  height: 9px;
}

.foca-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.foca-metrics>div {
  display: grid;
  grid-template-columns: 27px 1fr;
  align-items: center;
  gap: 1px 8px;
  min-width: 0;
  padding: 10px;
  border: 1px solid #e5eaf1;
  border-radius: 10px;
  background: white;
}

.foca-metrics span {
  grid-row: 1 / 3;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 7px;
}

.foca-metrics svg {
  width: 12px;
  height: 12px;
}

.metric-blue {
  color: var(--blue-600);
  background: var(--blue-50);
}

.metric-cyan {
  color: #0891b2;
  background: #ecfeff;
}

.metric-violet {
  color: var(--violet-500);
  background: #f5f3ff;
}

.foca-metrics small {
  color: #718096;
  font-size: 8px;
}

.foca-metrics strong {
  overflow: hidden;
  font: 750 10px var(--font-manrope);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.foca-metrics em {
  grid-column: 1 / -1;
  margin-top: 6px;
  color: #10b981;
  font-size: 8px;
  font-style: normal;
  font-weight: 750;
}

.foca-dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr .78fr;
  gap: 9px;
  margin-top: 9px;
}

.foca-chart-card,
.foca-activity-card {
  min-width: 0;
  padding: 13px;
  border: 1px solid #e5eaf1;
  border-radius: 11px;
  background: white;
}

.foca-card-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.foca-card-title strong {
  display: block;
  font-size: 10px;
}

.foca-card-title small {
  display: block;
  margin-top: 2px;
  color: #94a3b8;
  font-size: 8px;
}

.foca-card-title>svg {
  width: 11px;
  height: 11px;
  color: #94a3b8;
}

.foca-chart {
  position: relative;
  height: 166px;
  margin-top: 11px;
}

.chart-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-lines i {
  display: block;
  width: 100%;
  border-top: 1px dashed #e2e8f0;
}

.chart-bars {
  position: absolute;
  inset: 0 6px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 5px;
}

.chart-bars span {
  width: 7%;
  height: var(--bar);
  min-height: 8px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(to top, #2563eb, #60a5fa);
}

.foca-activity-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.foca-activity {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.foca-activity:last-child {
  border-bottom: 0;
}

.foca-activity>span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
}

.foca-activity svg {
  width: 11px;
  height: 11px;
}

.activity-green {
  color: #059669;
  background: #ecfdf5;
}

.activity-blue {
  color: #2563eb;
  background: #eff6ff;
}

.activity-violet {
  color: #7c3aed;
  background: #f5f3ff;
}

.foca-activity b {
  display: block;
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.foca-activity small {
  display: block;
  margin-top: 2px;
  color: #94a3b8;
  font-size: 8px;
}

.case-floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 165px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 13px;
  background: rgba(11, 23, 41, .88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
  backdrop-filter: blur(15px);
}

.case-floating-card>span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .19);
}

.case-floating-card svg {
  width: 16px;
  height: 16px;
}

.case-floating-card small {
  display: block;
  color: #71869e;
  font-size: 8px;
}

.case-floating-card strong {
  display: block;
  margin-top: 2px;
  color: white;
  font-size: 12px;
}

.case-floating-card-top {
  top: 45px;
  right: 25px;
}

.case-floating-card-bottom {
  bottom: 42px;
  left: 24px;
}

.supporting-projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.supporting-project {
  --case-accent: #8b5cf6;
  --case-soft: rgba(139, 92, 246, .14);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 26px;
  background: #0a1628;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .18);
  transition: transform .3s ease, border-color .3s ease;
}

.supporting-project:hover {
  transform: translateY(-5px);
  border-color: rgba(148, 163, 184, .32);
}

.supporting-project-acai {
  --case-accent: #d946ef;
  --case-soft: rgba(217, 70, 239, .13);
}

.supporting-project-visual {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 31px 31px 20px;
  background: radial-gradient(circle at 80% 0%, var(--case-soft), transparent 40%), #0c1a2e;
}

.supporting-window {
  width: min(100%, 590px);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 15px;
  background: #f6f8fb;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .28);
}

.supporting-window-bar {
  height: 32px;
  grid-template-columns: 1fr 1.4fr 1fr;
  padding-inline: 10px;
}

.supporting-window-bar>span {
  grid-column: 2;
  justify-self: center;
  font-size: 8px;
}

.supporting-project-badge {
  position: absolute;
  right: 21px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  color: white;
  background: rgba(7, 17, 31, .82);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 750;
}

.supporting-project-badge svg {
  width: 14px;
  height: 14px;
  color: var(--case-accent);
}

.domyna-interface {
  height: 235px;
  display: flex;
  color: var(--navy-950);
}

.domyna-interface>aside {
  width: 42px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 7px;
  padding-top: 13px;
  background: #101d32;
}

.domyna-interface>aside span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #64748b;
}

.domyna-interface>aside span.active {
  color: white;
  background: #7c3aed;
}

.domyna-interface>aside svg {
  width: 11px;
  height: 11px;
}

.domyna-main {
  flex: 1;
  min-width: 0;
  padding: 14px;
}

.domyna-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.domyna-top small {
  display: block;
  color: #7c3aed;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.domyna-top strong {
  display: block;
  margin-top: 2px;
  font: 750 11px var(--font-manrope);
}

.domyna-top>span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #718096;
  font-size: 8px;
}

.domyna-top>span svg {
  width: 8px;
  height: 8px;
}

.domyna-map {
  position: relative;
  height: 174px;
  overflow: hidden;
  margin-top: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  background: #edf2f5;
}

.domyna-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .6;
  background-image: linear-gradient(28deg, transparent 47%, #d3dde5 48%, #fff 50%, #d3dde5 52%, transparent 53%), linear-gradient(118deg, transparent 47%, #d3dde5 48%, #fff 50%, #d3dde5 52%, transparent 53%);
  background-size: 92px 76px, 120px 94px;
}

.map-road {
  position: absolute;
  height: 4px;
  border-radius: 9px;
  background: white;
  box-shadow: 0 0 0 1px #d7e0e7;
  transform-origin: left center;
}

.map-road-one {
  width: 220px;
  left: -20px;
  top: 84px;
  transform: rotate(-18deg);
}

.map-road-two {
  width: 190px;
  left: 90px;
  top: 35px;
  transform: rotate(52deg);
}

.map-road-three {
  width: 160px;
  right: -35px;
  bottom: 48px;
  transform: rotate(-34deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  color: white;
  background: #7c3aed;
  box-shadow: 0 5px 12px rgba(124, 58, 237, .3);
}

.map-pin svg {
  width: 10px;
  height: 10px;
}

.map-pin-one {
  left: 16%;
  top: 24%;
}

.map-pin-two {
  left: 44%;
  top: 52%;
}

.map-pin-three {
  right: 20%;
  top: 20%;
}

.map-pin-four {
  right: 11%;
  bottom: 14%;
}

.map-insight {
  position: absolute;
  z-index: 3;
  left: 12px;
  bottom: 11px;
  width: 100px;
  padding: 8px 9px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .1);
}

.map-insight small {
  display: block;
  color: #718096;
  font-size: 7px;
}

.map-insight strong {
  display: block;
  margin-top: 2px;
  font: 800 13px var(--font-manrope);
}

.map-insight em {
  display: block;
  margin-top: 2px;
  color: #10b981;
  font-size: 7px;
  font-style: normal;
  font-weight: 750;
}

.acai-interface {
  height: 235px;
  padding: 12px 15px 14px;
  color: var(--navy-950);
  background: #fcf8ff;
}

.acai-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.acai-top>strong {
  color: #86198f;
  font: 800 8px var(--font-manrope);
  letter-spacing: .08em;
}

.acai-top nav {
  display: flex;
  gap: 10px;
  color: #64748b;
  font-size: 8px;
  font-weight: 650;
}

.acai-top>svg {
  width: 10px;
  height: 10px;
  color: #86198f;
}

.acai-hero-card {
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 10px;
  padding: 17px 20px;
  border-radius: 11px;
  color: white;
  background: linear-gradient(125deg, #4a044e, #86198f 60%, #c026d3);
}

.acai-hero-card small {
  display: block;
  color: #f5d0fe;
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.acai-hero-card strong {
  display: block;
  max-width: 150px;
  margin-top: 5px;
  font: 760 16px/1.08 var(--font-manrope);
  letter-spacing: -.04em;
}

.acai-hero-card span {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 8px;
  border-radius: 5px;
  color: #86198f;
  background: white;
  font-size: 7px;
  font-weight: 800;
}

.acai-bowl {
  position: relative;
  width: 95px;
  height: 95px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}

.acai-bowl::before {
  content: "";
  position: absolute;
  width: 67px;
  height: 38px;
  bottom: 18px;
  border-radius: 6px 6px 35px 35px;
  background: linear-gradient(#e879f9, #701a75);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

.acai-bowl i {
  position: absolute;
  width: 72px;
  height: 23px;
  top: 25px;
  border-radius: 50%;
  background: #2e0233;
  box-shadow: inset 0 4px 0 #d946ef;
}

.acai-bowl b {
  z-index: 2;
  margin-top: 15px;
  color: white;
  font: 800 12px var(--font-manrope);
}

.acai-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 7px;
}

.acai-mini-grid>div {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 6px;
  border: 1px solid #f0e4f4;
  border-radius: 7px;
  background: white;
}

.acai-mini-grid svg {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  color: #a21caf;
}

.acai-mini-grid b {
  display: block;
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.acai-mini-grid small {
  display: block;
  margin-top: 1px;
  color: #94a3b8;
  font-size: 7px;
}

.supporting-project-copy {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 31px 32px 33px;
}

.supporting-project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.supporting-project-meta>span {
  color: var(--case-accent);
}

.supporting-project-meta p {
  margin: 0;
  color: #8293a8;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.supporting-project-copy h3 {
  margin: 20px 0 0;
  font: 760 27px var(--font-manrope);
  letter-spacing: -.045em;
}

.supporting-project-copy h4 {
  margin: 10px 0 0;
  color: #dfe8f2;
  font: 720 17px/1.35 var(--font-manrope);
  letter-spacing: -.03em;
}

.supporting-summary {
  margin: 15px 0 0;
  color: #8fa0b3;
  font-size: 10px;
  line-height: 1.7;
}

.supporting-project-copy ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.supporting-project-copy li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #b7c4d3;
  font-size: 10px;
  line-height: 1.35;
}

.supporting-project-copy li svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  color: var(--case-accent);
}

.supporting-project .project-tags {
  margin-top: 20px;
}

.supporting-project .project-external-link {
  color: var(--case-accent);
}

.supporting-project .project-external-link:hover {
  color: white;
}

.projects-closing {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) auto auto;
  align-items: center;
  gap: 34px;
  margin-top: 18px;
  padding: 30px 32px;
  border: 1px solid rgba(148, 163, 184, .19);
  border-radius: 22px;
  background: linear-gradient(110deg, rgba(37, 99, 235, .12), transparent 45%), #0b1729;
}

.projects-closing-copy>span {
  color: #7dd3fc;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.projects-closing-copy h3 {
  margin: 6px 0 4px;
  font: 740 24px var(--font-manrope);
  letter-spacing: -.035em;
}

.projects-closing-copy p {
  max-width: 570px;
  margin: 0;
  color: #8798ac;
  font-size: 12px;
  line-height: 1.55;
}

.projects-capabilities {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bdc9d7;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.projects-capabilities i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2563eb;
}

.projects-closing .button {
  min-height: 48px;
  padding-inline: 18px;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .projects-heading {
    gap: 48px;
  }

  .project-feature {
    grid-template-columns: .8fr 1.2fr;
  }

  .project-feature-copy {
    padding-inline: 32px;
  }

  .project-feature-visual {
    padding-inline: 28px;
  }

  .case-floating-card {
    display: none;
  }

  .supporting-project-copy ul {
    grid-template-columns: 1fr;
  }

  .projects-closing {
    grid-template-columns: 1fr auto;
  }

  .projects-capabilities {
    grid-column: 1;
    grid-row: 2;
  }

  .projects-closing .button {
    grid-column: 2;
    grid-row: 1 / 3;
  }
}

@media (max-width: 980px) {
  .featured-projects {
    padding: 96px 0 90px;
  }

  .projects-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .projects-heading-copy {
    max-width: 690px;
  }

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

  .project-feature-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, .16);
  }

  .project-feature-visual {
    min-height: 610px;
  }

  .supporting-projects {
    grid-template-columns: 1fr;
  }

  .supporting-project-copy {
    min-height: 0;
  }

  .supporting-project-copy ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .featured-projects {
    padding: 78px 0 74px;
  }

  .projects-heading h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .projects-heading-copy>p {
    font-size: 15px;
  }

  .project-feature {
    margin-top: 50px;
    border-radius: 23px;
  }

  .project-feature-copy {
    padding: 29px 23px 28px;
  }

  .project-highlights {
    grid-template-columns: 1fr;
  }

  .project-feature-visual {
    min-height: 390px;
    padding: 42px 14px;
  }

  .case-window {
    width: 660px;
    max-width: none;
    transform: scale(.54);
    transform-origin: center;
  }

  .supporting-project {
    border-radius: 22px;
  }

  .supporting-project-visual {
    min-height: 265px;
    padding: 20px 14px 14px;
  }

  .supporting-window {
    width: 500px;
    max-width: none;
    transform: scale(.68);
  }

  .supporting-project-copy {
    padding: 27px 23px 29px;
  }

  .supporting-project-copy ul {
    grid-template-columns: 1fr;
  }

  .supporting-project-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .projects-closing {
    grid-template-columns: 1fr;
    padding: 26px 23px;
  }

  .projects-capabilities {
    grid-column: auto;
    grid-row: auto;
    flex-wrap: wrap;
  }

  .projects-closing .button {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }
}

/* =========================================================
   EMPRESAS QUE ATENDEMOS / SEGMENTOS
   ========================================================= */
.segments {
  position: relative;
  overflow: hidden;
  padding: 116px 0 106px;
  color: var(--navy-950);
  background: #f7f9fc;
}

.segments::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  top: -270px;
  right: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .1), transparent 68%);
  pointer-events: none;
}

.segments-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(148, 163, 184, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .075) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 46%);
  pointer-events: none;
}

.segments-shell {
  position: relative;
}

.segments-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  align-items: end;
  gap: 96px;
}

.segments-heading h2 {
  margin: 20px 0 0;
  font: 760 clamp(44px, 5vw, 66px)/1.03 var(--font-manrope);
  letter-spacing: -.06em;
}

.segments-heading h2 span {
  color: var(--blue-600);
}

.segments-intro>p {
  margin: 0;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.75;
}

.segments-intro-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #dce3ed;
}

.segments-intro-note>span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-600);
  background: white;
  box-shadow: 0 8px 25px rgba(15, 23, 42, .07);
}

.segments-intro-note svg {
  width: 18px;
  height: 18px;
}

.segments-intro-note strong {
  display: block;
  font-size: 14px;
}

.segments-intro-note small {
  display: block;
  margin-top: 3px;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.45;
}

.segments-featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 66px;
}

.segment-feature {
  --segment-accent: #2563eb;
  --segment-soft: #eff6ff;
  --segment-glow: rgba(37, 99, 235, .16);
  position: relative;
  min-height: 465px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 31px;
  border: 1px solid #e0e6ee;
  border-radius: 25px;
  background: radial-gradient(circle at 100% 0%, var(--segment-glow), transparent 35%), rgba(255, 255, 255, .92);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .07);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.segment-feature::after {
  content: "";
  position: absolute;
  height: 3px;
  right: 31px;
  bottom: 0;
  left: 31px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(90deg, var(--segment-accent), transparent);
  opacity: .7;
}

.segment-feature:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--segment-accent) 25%, #dbe3ed);
  box-shadow: 0 28px 70px rgba(15, 23, 42, .11);
}

.segment-feature-technology {
  --segment-accent: #7c3aed;
  --segment-soft: #f5f3ff;
  --segment-glow: rgba(124, 58, 237, .14);
}

.segment-feature-industry {
  --segment-accent: #0891b2;
  --segment-soft: #ecfeff;
  --segment-glow: rgba(8, 145, 178, .14);
}

.segment-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.segment-feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--segment-accent) 13%, white);
  border-radius: 16px;
  color: var(--segment-accent);
  background: var(--segment-soft);
}

.segment-feature-icon svg {
  width: 23px;
  height: 23px;
}

.segment-feature-number {
  color: #c7d0dc;
  font: 750 13px var(--font-manrope);
  letter-spacing: .12em;
}

.segment-feature-copy {
  margin-top: 31px;
}

.segment-feature-copy>small {
  color: var(--segment-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.segment-feature-copy h3 {
  margin: 9px 0 0;
  font: 750 25px/1.18 var(--font-manrope);
  letter-spacing: -.045em;
}

.segment-feature-copy p {
  margin: 14px 0 0;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.68;
}

.segment-deliveries {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.segment-deliveries span {
  padding: 7px 9px;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  color: var(--slate-600);
  background: rgba(248, 250, 252, .88);
  font-size: 12px;
  font-weight: 600;
}

.segment-example {
  display: grid;
  grid-template-columns: 23px 1fr;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 24px;
  color: #7b8a9e;
  font-size: 12px;
  line-height: 1.45;
}

.segment-example svg {
  width: 16px;
  height: 16px;
  color: var(--segment-accent);
}

.segments-more {
  display: grid;
  grid-template-columns: minmax(240px, .56fr) minmax(0, 1.44fr);
  gap: 58px;
  margin-top: 20px;
  padding: 38px;
  border: 1px solid #e0e6ee;
  border-radius: 25px;
  background: white;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .055);
}

.segments-more-heading>span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.segments-more-heading h3 {
  max-width: 310px;
  margin: 10px 0 0;
  font: 730 25px/1.28 var(--font-manrope);
  letter-spacing: -.04em;
}

.segments-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.segment-compact {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 19px 21px;
  border-bottom: 1px solid #e7ebf1;
}

.segment-compact:nth-child(odd) {
  border-right: 1px solid #e7ebf1;
}

.segment-compact:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.segment-compact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--blue-600);
  background: var(--blue-50);
}

.segment-compact-icon svg {
  width: 18px;
  height: 18px;
}

.segment-compact h4 {
  margin: 0;
  font: 750 13px var(--font-manrope);
  letter-spacing: -.025em;
}

.segment-compact p {
  margin: 7px 0 0;
  color: var(--slate-500);
  font-size: 10px;
  line-height: 1.55;
}

.segment-compact small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 9px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 750;
}

.segment-compact small svg {
  width: 11px;
  height: 11px;
}

.segments-proof {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: 62px;
  margin-top: 20px;
  padding: 38px;
  border-radius: 25px;
  color: white;
  background: radial-gradient(circle at 10% 120%, rgba(37, 99, 235, .28), transparent 35%), #0a1729;
  box-shadow: 0 24px 65px rgba(15, 23, 42, .15);
}

.segments-proof-copy>span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.segments-proof-copy>span svg {
  width: 15px;
  height: 15px;
}

.segments-proof-copy h3 {
  margin: 11px 0 0;
  font: 730 23px/1.3 var(--font-manrope);
  letter-spacing: -.04em;
}

.segments-proof-copy p {
  margin: 13px 0 0;
  color: #8fa0b4;
  font-size: 11px;
  line-height: 1.65;
}

.segments-cta {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
  padding: 28px 31px;
  border: 1px solid #dce4ee;
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
}

.segments-cta-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--blue-600);
  background: var(--blue-50);
}

.segments-cta-icon svg {
  width: 24px;
  height: 24px;
}

.segments-cta>div:nth-child(2)>span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.segments-cta h3 {
  margin: 5px 0 3px;
  font: 740 19px var(--font-manrope);
  letter-spacing: -.035em;
}

.segments-cta p {
  margin: 0;
  color: var(--slate-500);
  font-size: 10px;
}

.segments-cta .button {
  min-height: 48px;
  padding-inline: 18px;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .segments-heading {
    gap: 52px;
  }

  .segments-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .segment-feature:last-child {
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .segments-more {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .segments-more-heading h3 {
    max-width: 600px;
  }

  .segments-proof {
    gap: 36px;
  }
}

@media (max-width: 880px) {
  .segments {
    padding: 94px 0 90px;
  }

  .segments-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .segments-intro {
    max-width: 690px;
  }

  .segments-featured {
    grid-template-columns: 1fr;
  }

  .segment-feature,
  .segment-feature:last-child {
    grid-column: auto;
    min-height: 410px;
  }

  .segments-proof {
    grid-template-columns: 1fr;
  }

  .segments-cta {
    grid-template-columns: 58px 1fr;
  }

  .segments-cta .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .segments {
    padding: 78px 0 74px;
  }

  .segments-heading h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .segments-intro>p {
    font-size: 15px;
  }

  .segments-featured {
    margin-top: 50px;
  }

  .segment-feature,
  .segment-feature:last-child {
    min-height: 0;
    padding: 26px 23px 28px;
    border-radius: 22px;
  }

  .segment-example {
    margin-top: 32px;
  }

  .segments-more {
    padding: 27px 22px;
    border-radius: 22px;
  }

  .segments-more-grid {
    grid-template-columns: 1fr;
  }

  .segment-compact {
    padding-inline: 0;
  }

  .segment-compact:nth-child(odd) {
    border-right: 0;
  }

  .segment-compact:nth-last-child(-n + 2) {
    border-bottom: 1px solid #e7ebf1;
  }

  .segment-compact:last-child {
    border-bottom: 0;
  }

  .segments-proof {
    padding: 28px 23px;
    border-radius: 22px;
  }

  .segments-cta {
    grid-template-columns: 1fr;
    padding: 25px 23px;
  }

  .segments-cta-icon {
    width: 50px;
    height: 50px;
  }

  .segments-cta .button {
    grid-column: auto;
  }
}

/* ======================================================
   PROCESSO DE TRABALHO
   ====================================================== */
.process {
  position: relative;
  overflow: hidden;
  padding: 118px 0 106px;
  color: white;
  background: #071321;
}

.process-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image:
    linear-gradient(rgba(148, 163, 184, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.process-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.process-glow-one {
  width: 620px;
  height: 620px;
  top: -310px;
  right: -190px;
  background: radial-gradient(circle, rgba(37, 99, 235, .22), transparent 68%);
}

.process-glow-two {
  width: 540px;
  height: 540px;
  bottom: -290px;
  left: -230px;
  background: radial-gradient(circle, rgba(6, 182, 212, .11), transparent 68%);
}

.process-shell {
  position: relative;
}

.section-kicker-dark {
  color: #9bdcf7;
  background: rgba(37, 99, 235, .13);
  border-color: rgba(125, 211, 252, .18);
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  align-items: end;
  gap: 96px;
}

.process-heading h2 {
  margin: 20px 0 0;
  font: 760 clamp(44px, 5vw, 66px)/1.03 var(--font-manrope);
  letter-spacing: -.06em;
}

.process-heading h2 span {
  color: #60a5fa;
}

.process-intro>p {
  margin: 0;
  color: #9aabbe;
  font-size: 16px;
  line-height: 1.75;
}

.process-intro-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, .18);
}

.process-intro-note>span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .16);
  border-radius: 12px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .12);
}

.process-intro-note svg {
  width: 18px;
  height: 18px;
}

.process-intro-note strong {
  display: block;
  font-size: 14px;
}

.process-intro-note small {
  display: block;
  margin-top: 3px;
  color: #8295aa;
  font-size: 13px;
  line-height: 1.45;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, .67fr) minmax(0, 1.33fr);
  align-items: start;
  gap: 34px;
  margin-top: 70px;
}

.process-manifesto {
  position: sticky;
  top: 104px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 36px;
  border: 1px solid rgba(148, 163, 184, .17);
  border-radius: 27px;
  background: radial-gradient(circle at 100% 0%, rgba(37, 99, 235, .2), transparent 37%), #0b1a2d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.process-manifesto::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -100px;
  bottom: -100px;
  border: 1px solid rgba(125, 211, 252, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(125, 211, 252, .025), 0 0 0 68px rgba(125, 211, 252, .018);
}

.process-manifesto-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.process-manifesto-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .16);
}

.process-manifesto-icon svg {
  width: 21px;
  height: 21px;
}

.process-manifesto-label {
  color: #9bdcf7;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.process-manifesto blockquote {
  margin: 55px 0 0;
  font: 710 clamp(27px, 2.4vw, 37px)/1.25 var(--font-manrope);
  letter-spacing: -.045em;
}

.process-manifesto>p {
  margin: 24px 0 30px 0;
  color: #8fa0b4;
  font-size: 14px;
  line-height: 1.7;
}

.process-manifesto-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 14px;
  background: rgba(148, 163, 184, .16);
}

.process-manifesto-metrics>div {
  padding: 18px;
  background: rgba(7, 19, 33, .76);
}

.process-manifesto-metrics strong {
  display: block;
  color: #7dd3fc;
  font: 780 36px var(--font-manrope);
}

.process-manifesto-metrics span {
  display: block;
  margin-top: 3px;
  color: #8496aa;
  font-size: 14px;
}

.process-manifesto-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 19px;
  color: #aab8c8;
  font-size: 14px;
  line-height: 1.5;
}

.process-manifesto-foot svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #34d399;
  margin-top: 3px;
}

.process-timeline {
  display: grid;
}

.process-step {
  --process-accent: #60a5fa;
  --process-soft: rgba(37, 99, 235, .14);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 21px;
}

.process-step-cyan {
  --process-accent: #22d3ee;
  --process-soft: rgba(6, 182, 212, .13);
}

.process-step-violet {
  --process-accent: #a78bfa;
  --process-soft: rgba(124, 58, 237, .14);
}

.process-step-green {
  --process-accent: #34d399;
  --process-soft: rgba(16, 185, 129, .13);
}

.process-step-rail {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.process-step-rail>span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--process-accent) 35%, transparent);
  border-radius: 50%;
  color: var(--process-accent);
  background: #0a182a;
  box-shadow: 0 0 0 7px rgba(7, 19, 33, .96);
  font: 760 10px var(--font-manrope);
  letter-spacing: .08em;
}

.process-step-rail>i {
  width: 1px;
  min-height: 58px;
  flex: 1;
  margin: 10px 0;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--process-accent) 40%, transparent), rgba(148, 163, 184, .13));
}

.process-step-body {
  margin-bottom: 22px;
  padding: 30px 32px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 23px;
  background: rgba(11, 26, 45, .78);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.process-step:hover .process-step-body {
  transform: translateX(5px);
  border-color: color-mix(in srgb, var(--process-accent) 30%, transparent);
  background: rgba(13, 31, 53, .9);
}

.process-step-head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.process-step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--process-accent);
  background: var(--process-soft);
}

.process-step-icon svg {
  width: 21px;
  height: 21px;
}

.process-step-head small {
  color: var(--process-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.process-step-head h3 {
  margin: 5px 0 0;
  font: 740 22px var(--font-manrope);
  letter-spacing: -.04em;
}

.process-step-body>p {
  margin: 19px 0 0;
  color: #95a6b9;
  font-size: 12px;
  line-height: 1.68;
}

.process-step-details {
  display: grid;
  grid-template-columns: minmax(190px, .82fr) minmax(220px, 1.18fr);
  gap: 25px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, .14);
}

.process-actions>span {
  color: #6f8298;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.process-actions ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.process-actions li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c1cddd;
  font-size: 12px;
  font-weight: 650;
}

.process-actions li svg {
  width: 13px;
  height: 13px;
  color: var(--process-accent);
}

.process-deliverable {
  padding: 17px 18px;
  border: 1px solid color-mix(in srgb, var(--process-accent) 15%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--process-soft) 64%, transparent);
}

.process-deliverable>span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--process-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.process-deliverable>span svg {
  width: 14px;
  height: 14px;
}

.process-deliverable p {
  margin: 10px 0 0;
  color: #b2c0cf;
  font-size: 12px;
  line-height: 1.6;
}

.process-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 23px;
  background: rgba(148, 163, 184, .16);
}

.process-principle {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 13px;
  padding: 24px 21px;
  background: #0a182a;
}

.process-principle+.process-principle {
  border-left: 1px solid rgba(148, 163, 184, .16);
}

.process-principle>span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .13);
}

.process-principle svg {
  width: 17px;
  height: 17px;
}

.process-principle strong {
  display: block;
  font: 730 13px var(--font-manrope);
}

.process-principle p {
  margin: 6px 0 0;
  color: #7f91a6;
  font-size: 12px;
  line-height: 1.55;
}

.process-cta {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
  padding: 29px 31px;
  border: 1px solid rgba(125, 211, 252, .16);
  border-radius: 23px;
  background: radial-gradient(circle at 100% 0%, rgba(37, 99, 235, .18), transparent 35%), #0c1c30;
}

.process-cta-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .15);
}

.process-cta-mark svg {
  width: 24px;
  height: 24px;
}

.process-cta>div:nth-child(2)>span {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.process-cta h3 {
  margin: 5px 0 3px;
  font: 740 19px var(--font-manrope);
  letter-spacing: -.035em;
}

.process-cta p {
  margin: 0;
  color: #8496aa;
  font-size: 10px;
}

.process-cta .button {
  min-height: 48px;
  padding-inline: 18px;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .process-heading {
    gap: 52px;
  }

  .process-layout {
    grid-template-columns: minmax(260px, .58fr) minmax(0, 1.42fr);
  }

  .process-manifesto {
    padding: 30px;
  }

  .process-step-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-principle:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(148, 163, 184, .16);
  }

  .process-principle:nth-child(4) {
    border-top: 1px solid rgba(148, 163, 184, .16);
  }
}

@media (max-width: 880px) {
  .process {
    padding: 94px 0 90px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-intro {
    max-width: 690px;
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-manifesto {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .process-manifesto blockquote {
    max-width: 620px;
    margin-top: 40px;
  }

  .process-manifesto-metrics {
    margin-top: 42px;
  }

  .process-cta {
    grid-template-columns: 58px 1fr;
  }

  .process-cta .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .process {
    padding: 78px 0 74px;
  }

  .process-heading h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .process-intro>p {
    font-size: 15px;
  }

  .process-layout {
    margin-top: 50px;
  }

  .process-manifesto {
    padding: 27px 23px;
    border-radius: 22px;
  }

  .process-manifesto blockquote {
    font-size: 27px;
  }

  .process-step {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 13px;
  }

  .process-step-rail>span {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .process-step-body {
    margin-bottom: 17px;
    padding: 25px 21px;
    border-radius: 20px;
  }

  .process-step:hover .process-step-body {
    transform: none;
  }

  .process-step-head {
    align-items: flex-start;
  }

  .process-step-icon {
    width: 42px;
    height: 42px;
  }

  .process-step-head h3 {
    font-size: 19px;
  }

  .process-principles {
    grid-template-columns: 1fr;
  }

  .process-principle+.process-principle {
    border-top: 1px solid rgba(148, 163, 184, .16);
    border-left: 0;
  }

  .process-cta {
    grid-template-columns: 1fr;
    padding: 25px 23px;
  }

  .process-cta-mark {
    width: 50px;
    height: 50px;
  }

  .process-cta .button {
    grid-column: auto;
  }
}

/* Way Cloud --------------------------------------------------------------- */
.hosting {
  position: relative;
  overflow: hidden;
  padding: 116px 0 106px;
  color: var(--navy-950);
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 52%, #f5f8fc 100%);
}

.hosting-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .46;
  background-image:
    linear-gradient(rgba(148, 163, 184, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .075) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 48%);
  pointer-events: none;
}

.hosting-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hosting-orbit-one {
  width: 640px;
  height: 640px;
  top: -330px;
  right: -210px;
  background: radial-gradient(circle, rgba(37, 99, 235, .12), transparent 68%);
}

.hosting-orbit-two {
  width: 500px;
  height: 500px;
  bottom: -270px;
  left: -210px;
  background: radial-gradient(circle, rgba(6, 182, 212, .09), transparent 68%);
}

.hosting-shell {
  position: relative;
}

.hosting-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  align-items: end;
  gap: 96px;
}

.hosting-heading h2 {
  margin: 20px 0 0;
  font: 760 clamp(44px, 5vw, 66px)/1.03 var(--font-manrope);
  letter-spacing: -.06em;
}

.hosting-heading h2 span {
  color: var(--blue-600);
}

.hosting-intro>p {
  margin: 0;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.75;
}

.hosting-intro-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #dce3ed;
}

.hosting-intro-note>span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-600);
  background: white;
  box-shadow: 0 8px 25px rgba(15, 23, 42, .07);
}

.hosting-intro-note svg {
  width: 18px;
  height: 18px;
}

.hosting-intro-note strong {
  display: block;
  font-size: 13px;
}

.hosting-intro-note small {
  display: block;
  margin-top: 3px;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.45;
}

.hosting-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(520px, 1.22fr);
  gap: 66px;
  overflow: hidden;
  margin-top: 66px;
  padding: 64px;
  border: 1px solid rgba(125, 211, 252, .15);
  border-radius: 32px;
  color: white;
  background:
    radial-gradient(circle at 0% 100%, rgba(6, 182, 212, .18), transparent 31%),
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, .24), transparent 34%),
    #071321;
  box-shadow: 0 35px 90px rgba(15, 23, 42, .18);
}

.hosting-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image: radial-gradient(rgba(148, 163, 184, .6) .7px, transparent .7px);
  background-size: 19px 19px;
  mask-image: linear-gradient(90deg, black, transparent 55%);
  pointer-events: none;
}

.hosting-copy,
.hosting-console {
  position: relative;
  z-index: 1;
}

.hosting-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.hosting-brand-mark {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .2);
  border-radius: 15px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .14);
}

.hosting-brand-mark svg {
  width: 23px;
  height: 23px;
}

.hosting-brand>div {
  display: flex;
  flex-direction: column;
}

.hosting-brand small {
  color: #71859c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hosting-brand strong {
  margin-top: 3px;
  font: 780 20px var(--font-manrope);
  letter-spacing: -.04em;
}

.hosting-overline {
  margin: 52px 0 0;
  color: #7dd3fc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hosting-copy h3 {
  max-width: 440px;
  margin: 9px 0 0;
  font: 735 clamp(32px, 3.1vw, 46px)/1.08 var(--font-manrope);
  letter-spacing: -.055em;
}

.hosting-description {
  max-width: 490px;
  margin: 22px 0 0;
  color: #93a6ba;
  font-size: 15px !important;
  line-height: 1.72;
}

.hosting-checks {
  display: grid;
  gap: 11px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.hosting-checks li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #c2cedb;
  font-size: 12px;
  line-height: 1.5;
}

.hosting-checks svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #34d399;
}

.button-light {
  min-height: 49px;
  margin-top: 31px;
  padding: 0 18px;
  color: var(--navy-950);
  background: white;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
  font-size: 10px;
}

.button-light:hover {
  color: var(--blue-700);
  background: #eff6ff;
}

.hosting-console {
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 23px;
  background: rgba(10, 25, 43, .92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .04);
}

.hosting-console-bar {
  height: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid rgba(148, 163, 184, .14);
  background: rgba(7, 18, 31, .94);
}

.hosting-console-bar>div {
  display: flex;
  gap: 5px;
}

.hosting-console-bar>div span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #31445a;
}

.hosting-console-bar>div span:first-child {
  background: #fb7185;
}

.hosting-console-bar>div span:nth-child(2) {
  background: #fbbf24;
}

.hosting-console-bar>div span:last-child {
  background: #34d399;
}

.hosting-console-bar p {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 6px;
  margin: 0;
  color: #8396aa;
  font-size: 10px;
}

.hosting-console-bar p svg {
  width: 12px;
  height: 12px;
  color: #7dd3fc;
}

.hosting-console-bar>small {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  color: #8093a7;
  font-size: 8px;
}

.hosting-console-bar>small i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .1);
}

.hosting-console-body {
  padding: 25px;
}

.hosting-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hosting-console-head>div {
  display: flex;
  flex-direction: column;
}

.hosting-console-head small {
  color: #687c92;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hosting-console-head strong {
  margin-top: 4px;
  font: 740 16px var(--font-manrope);
  letter-spacing: -.035em;
}

.hosting-console-head>span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(125, 211, 252, .14);
  border-radius: 8px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .09);
  font-size: 8px;
  font-weight: 750;
}

.hosting-console-head>span svg {
  width: 11px;
  height: 11px;
}

.hosting-layer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
}

.hosting-layer {
  position: relative;
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) 8px;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  padding: 13px;
  border: 1px solid rgba(148, 163, 184, .13);
  border-radius: 12px;
  background: rgba(16, 35, 58, .7);
}

.hosting-layer>span {
  grid-row: 1 / 3;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .12);
}

.hosting-layer>span svg {
  width: 15px;
  height: 15px;
}

.hosting-layer>small {
  color: #657990;
  font-size: 8px;
  font-weight: 700;
}

.hosting-layer>strong {
  margin-top: 2px;
  color: #d6e0eb;
  font-size: 10px;
}

.hosting-layer-status {
  grid-column: 3;
  grid-row: 1 / 3;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .08);
}

.hosting-flow {
  margin-top: 10px;
  padding: 17px 18px 14px;
  border: 1px solid rgba(148, 163, 184, .13);
  border-radius: 13px;
  background: rgba(8, 22, 38, .72);
}

.hosting-flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hosting-flow-head span {
  color: #c7d3df;
  font-size: 12px;
  font-weight: 750;
}

.hosting-flow-head small {
  color: #60758c;
  font-size: 8px;
}

.hosting-flow-line {
  position: relative;
  height: 54px;
  margin: 12px 15px 0;
}

.hosting-flow-line::before {
  content: "";
  position: absolute;
  top: 19px;
  right: 18px;
  left: 18px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #06b6d4, #34d399);
  opacity: .65;
}

.hosting-flow-node {
  position: absolute;
  top: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .18);
  border-radius: 11px;
  color: #7dd3fc;
  background: #0f2742;
  box-shadow: 0 7px 18px rgba(0, 0, 0, .2);
}

.hosting-flow-node svg {
  width: 15px;
  height: 15px;
}

.hosting-flow-node-one {
  left: 0;
}

.hosting-flow-node-two {
  left: 33.333%;
  transform: translateX(-33.333%);
}

.hosting-flow-node-three {
  left: 66.666%;
  transform: translateX(-66.666%);
}

.hosting-flow-node-four {
  right: 0;
  color: #6ee7b7;
}

.hosting-flow-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -2px 0 0;
  color: #6f8499;
  font-size: 5.5px;
  text-align: center;
}

.hosting-flow-labels span:first-child {
  text-align: left;
}

.hosting-flow-labels span:last-child {
  text-align: right;
}

.hosting-console-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 11px;
}

.hosting-console-foot span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 7px;
  color: #75899e;
  background: rgba(148, 163, 184, .07);
  font-size: 5.5px;
}

.hosting-console-foot svg {
  width: 10px;
  height: 10px;
  color: #60a5fa;
}

.hosting-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.hosting-feature {
  --hosting-accent: #2563eb;
  --hosting-soft: #eff6ff;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  min-height: 162px;
  padding: 25px;
  border: 1px solid #e0e6ee;
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 13px 40px rgba(15, 23, 42, .05);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.hosting-feature:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--hosting-accent) 24%, #dce4ed);
  box-shadow: 0 23px 55px rgba(15, 23, 42, .09);
}

.hosting-feature-cyan {
  --hosting-accent: #0891b2;
  --hosting-soft: #ecfeff;
}

.hosting-feature-violet {
  --hosting-accent: #7c3aed;
  --hosting-soft: #f5f3ff;
}

.hosting-feature-green {
  --hosting-accent: #059669;
  --hosting-soft: #ecfdf5;
}

.hosting-feature-amber {
  --hosting-accent: #d97706;
  --hosting-soft: #fffbeb;
}

.hosting-feature-rose {
  --hosting-accent: #e11d48;
  --hosting-soft: #fff1f2;
}

.hosting-feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--hosting-accent);
  background: var(--hosting-soft);
}

.hosting-feature-icon svg {
  width: 21px;
  height: 21px;
}

.hosting-feature h3 {
  margin: 2px 0 0;
  font: 740 14px var(--font-manrope);
  letter-spacing: -.03em;
}

.hosting-feature p {
  margin: 9px 0 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.6;
}

.hosting-continuity {
  display: grid;
  grid-template-columns: minmax(270px, .78fr) minmax(0, 1.22fr);
  gap: 58px;
  margin-top: 20px;
  padding: 39px;
  border: 1px solid #dfe6ef;
  border-radius: 24px;
  background: white;
  box-shadow: 0 17px 52px rgba(15, 23, 42, .06);
}

.hosting-continuity-heading>span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hosting-continuity-heading>span svg {
  width: 14px;
  height: 14px;
}

.hosting-continuity-heading h3 {
  margin: 11px 0 0;
  font: 740 25px/1.25 var(--font-manrope);
  letter-spacing: -.045em;
}

.hosting-continuity-heading p {
  margin: 14px 0 0;
  color: var(--slate-500);
  font-size: 10px;
  line-height: 1.65;
}

.hosting-continuity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #e3e8ef;
  border-radius: 16px;
}

.hosting-continuity-grid article {
  padding: 23px 20px;
  background: #f8fafc;
}

.hosting-continuity-grid article+article {
  border-left: 1px solid #e3e8ef;
}

.hosting-continuity-grid article>span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--blue-600);
  background: white;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .06);
}

.hosting-continuity-grid article>span svg {
  width: 17px;
  height: 17px;
}

.hosting-continuity-grid strong {
  display: block;
  margin-top: 17px;
  font: 730 11px var(--font-manrope);
}

.hosting-continuity-grid p {
  margin: 7px 0 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.55;
}

.hosting-cta {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
  padding: 29px 31px;
  border: 1px solid #dce4ee;
  border-radius: 23px;
  background: rgba(255, 255, 255, .88);
}

.hosting-cta-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--blue-600);
  background: var(--blue-50);
}

.hosting-cta-icon svg {
  width: 24px;
  height: 24px;
}

.hosting-cta>div:nth-child(2)>span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hosting-cta h3 {
  margin: 5px 0 3px;
  font: 740 19px var(--font-manrope);
  letter-spacing: -.035em;
}

.hosting-cta p {
  margin: 0;
  color: var(--slate-500);
  font-size: 10px;
}

.hosting-cta .button {
  min-height: 48px;
  padding-inline: 18px;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .hosting-heading {
    gap: 52px;
  }

  .hosting-showcase {
    grid-template-columns: minmax(290px, .72fr) minmax(450px, 1.28fr);
    gap: 38px;
    padding: 49px;
  }

  .hosting-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hosting-continuity {
    grid-template-columns: 1fr;
    gap: 27px;
  }
}

@media (max-width: 880px) {
  .hosting {
    padding: 94px 0 90px;
  }

  .hosting-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hosting-intro {
    max-width: 690px;
  }

  .hosting-showcase {
    grid-template-columns: 1fr;
  }

  .hosting-copy {
    max-width: 650px;
  }

  .hosting-console {
    width: 100%;
  }

  .hosting-continuity-grid {
    grid-template-columns: 1fr;
  }

  .hosting-continuity-grid article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 13px;
  }

  .hosting-continuity-grid article+article {
    border-top: 1px solid #e3e8ef;
    border-left: 0;
  }

  .hosting-continuity-grid strong {
    margin-top: 1px;
  }

  .hosting-cta {
    grid-template-columns: 58px 1fr;
  }

  .hosting-cta .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hosting {
    padding: 78px 0 74px;
  }

  .hosting-heading h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .hosting-intro>p {
    font-size: 15px;
  }

  .hosting-showcase {
    margin-top: 50px;
    padding: 30px 22px 24px;
    border-radius: 24px;
  }

  .hosting-overline {
    margin-top: 40px;
  }

  .hosting-copy h3 {
    font-size: 33px;
  }

  .hosting-console-bar {
    grid-template-columns: 1fr auto;
  }

  .hosting-console-bar p {
    display: none;
  }

  .hosting-console-body {
    padding: 19px 16px;
  }

  .hosting-console-head>span {
    display: none;
  }

  .hosting-layer-grid {
    grid-template-columns: 1fr;
  }

  .hosting-flow {
    padding-inline: 12px;
  }

  .hosting-flow-labels {
    font-size: 8px;
  }

  .hosting-features {
    grid-template-columns: 1fr;
  }

  .hosting-feature {
    min-height: 0;
    padding: 23px 21px;
  }

  .hosting-continuity {
    padding: 27px 22px;
    border-radius: 21px;
  }

  .hosting-cta {
    grid-template-columns: 1fr;
    padding: 25px 23px;
  }

  .hosting-cta-icon {
    width: 50px;
    height: 50px;
  }

  .hosting-cta .button {
    grid-column: auto;
  }
}

/* Sobre a Ruivo Office ---------------------------------------------------- */
.about {
  position: relative;
  overflow: hidden;
  padding: 116px 0 108px;
  color: var(--navy-950);
  background: #fff;
}

.about-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(148, 163, 184, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 46%);
  pointer-events: none;
}

.about-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-glow-one {
  width: 620px;
  height: 620px;
  top: -370px;
  left: -230px;
  background: radial-gradient(circle, rgba(37, 99, 235, .11), transparent 68%);
}

.about-glow-two {
  width: 510px;
  height: 510px;
  right: -230px;
  bottom: -280px;
  background: radial-gradient(circle, rgba(6, 182, 212, .08), transparent 68%);
}

.about-shell {
  position: relative;
}

.about-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .68fr);
  align-items: end;
  gap: 96px;
}

.about-heading h2 {
  margin: 20px 0 0;
  font: 760 clamp(44px, 5vw, 66px)/1.03 var(--font-manrope);
  letter-spacing: -.06em;
}

.about-heading h2 span {
  color: var(--blue-600);
}

.about-intro>p {
  margin: 0;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.75;
}

.about-intro-seal {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #dce3ed;
}

.about-intro-seal>span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-600);
  background: var(--blue-50);
}

.about-intro-seal svg {
  width: 18px;
  height: 18px;
}

.about-intro-seal strong {
  display: block;
  font-size: 13px;
}

.about-intro-seal small {
  display: block;
  margin-top: 3px;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.45;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
  gap: 70px;
  margin-top: 68px;
}

.about-founder-card {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 31px;
  border: 1px solid rgba(125, 211, 252, .15);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 13%, rgba(37, 99, 235, .24), transparent 28%),
    radial-gradient(circle at 100% 90%, rgba(6, 182, 212, .14), transparent 34%),
    #071321;
  box-shadow: 0 32px 80px rgba(15, 23, 42, .17);
}

.about-founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(rgba(148, 163, 184, .68) .7px, transparent .7px);
  background-size: 20px 20px;
  mask-image: linear-gradient(135deg, black, transparent 62%);
  pointer-events: none;
}

.about-founder-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.about-founder-label {
  color: #8093a8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-founder-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9eb0c3;
  font-size: 10px;
}

.about-founder-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .1);
}

.about-founder-portrait {
  position: relative;
  width: min(310px, 82%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 27px auto 12px;
  isolation: isolate;
}

.about-founder-portrait::before {
  content: "";
  position: absolute;
  inset: 13%;
  z-index: -1;
  border: 1px solid rgba(125, 211, 252, .17);
  border-radius: 34% 66% 59% 41% / 45% 38% 62% 55%;
  background: linear-gradient(145deg, rgba(37, 99, 235, .32), rgba(6, 182, 212, .08));
  box-shadow: inset 0 0 70px rgba(96, 165, 250, .08), 0 20px 55px rgba(0, 0, 0, .22);
  transform: rotate(-7deg);
}

.about-founder-portrait::after {
  content: "";
  position: absolute;
  inset: 23%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(7, 19, 33, .76);
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, .12);
}

.about-founder-initials {
  font: 780 clamp(46px, 5vw, 69px) var(--font-manrope);
  letter-spacing: -.09em;
  color: #fff;
  text-shadow: 0 10px 34px rgba(0, 0, 0, .28);
}

.about-founder-orbit {
  position: absolute;
  border: 1px solid rgba(125, 211, 252, .17);
  border-radius: 50%;
}

.about-founder-orbit-one {
  inset: 4%;
  transform: rotate(18deg);
}

.about-founder-orbit-two {
  inset: 17% 6%;
  transform: rotate(-38deg);
}

.about-founder-code {
  position: absolute;
  top: 17%;
  right: 3%;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .17);
  border-radius: 13px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .14);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 13px 32px rgba(0, 0, 0, .2);
}

.about-founder-pixel {
  position: absolute;
  bottom: 15%;
  left: 4%;
  width: 12px;
  height: 12px;
  border: 2px solid #071321;
  border-radius: 3px;
  background: #34d399;
  box-shadow: 18px -9px 0 -2px #60a5fa, 31px 8px 0 -3px #22d3ee;
  transform: rotate(10deg);
}

.about-founder-copy {
  position: relative;
  z-index: 2;
}

.about-founder-copy>small {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-founder-copy h3 {
  margin: 10px 0 0;
  font: 740 clamp(24px, 2.3vw, 33px)/1.18 var(--font-manrope);
  letter-spacing: -.05em;
}

.about-founder-copy p {
  margin: 15px 0 0;
  color: #93a6ba;
  font-size: 15px !important;
  line-height: 1.7;
}

.about-founder-skills {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.about-founder-skills span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(148, 163, 184, .13);
  border-radius: 9px;
  color: #9eb0c3;
  background: rgba(148, 163, 184, .06);
  font-size: 10px;
  font-weight: 700;
}

.about-founder-skills svg {
  width: 12px;
  height: 12px;
  color: #7dd3fc;
}

.about-story {
  align-self: center;
  padding: 16px 0;
}

.about-story-index {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-story>h3 {
  max-width: 720px;
  margin: 18px 0 0;
  font: 750 clamp(33px, 3.4vw, 50px)/1.11 var(--font-manrope);
  letter-spacing: -.055em;
}

.about-story-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 29px;
  padding-top: 26px;
  border-top: 1px solid #dde4ed;
}

.about-story-copy p {
  margin: 0;
  color: var(--slate-500);
  font-size: 11px;
  line-height: 1.72;
}

.about-credentials {
  display: grid;
  gap: 9px;
  margin-top: 29px;
}

.about-credentials>div {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border: 1px solid #e1e7ef;
  border-radius: 13px;
  background: #f8fafc;
}

.about-credentials>div>span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--blue-600);
  background: #fff;
  box-shadow: 0 6px 17px rgba(15, 23, 42, .05);
}

.about-credentials svg {
  width: 17px;
  height: 17px;
}

.about-credentials p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
}

.about-credentials small {
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-credentials strong {
  color: var(--slate-800);
  font-size: 10px;
}

.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 29px;
}

.about-actions .button {
  min-height: 49px;
  padding: 0 19px;
  font-size: 10px;
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 750;
}

.about-text-link svg {
  width: 15px;
  height: 15px;
  transition: transform .2s;
}

.about-text-link:hover svg {
  transform: translate(2px, -2px);
}

.about-timeline {
  display: grid;
  grid-template-columns: minmax(250px, .63fr) minmax(0, 1.37fr);
  gap: 58px;
  margin-top: 20px;
  padding: 40px;
  border: 1px solid #dfe6ef;
  border-radius: 25px;
  background: #f8fafc;
}

.about-timeline-heading>span,
.about-principles-heading>span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-timeline-heading h3,
.about-principles-heading h3 {
  margin: 11px 0 0;
  font: 740 25px/1.24 var(--font-manrope);
  letter-spacing: -.045em;
}

.about-timeline-heading p {
  margin: 15px 0 0;
  color: var(--slate-500);
  font-size: 10px;
  line-height: 1.65;
}

.about-timeline-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #e1e7ef;
  border-radius: 17px;
  background: #fff;
}

.about-milestone {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 13px;
  min-height: 145px;
  padding: 22px;
}

.about-milestone:nth-child(2n) {
  border-left: 1px solid #e5eaf1;
}

.about-milestone:nth-child(n+3) {
  border-top: 1px solid #e5eaf1;
}

.about-milestone-year {
  position: relative;
}

.about-milestone-year span {
  color: var(--blue-600);
  font: 780 15px var(--font-manrope);
  letter-spacing: -.03em;
}

.about-milestone-year i {
  position: absolute;
  top: 28px;
  left: 3px;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 4px var(--blue-50);
}

.about-milestone strong {
  color: var(--slate-800);
  font: 730 11px/1.35 var(--font-manrope);
}

.about-milestone p {
  margin: 8px 0 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.58;
}

.about-milestone-current {
  background: linear-gradient(135deg, #eff6ff, #f7fbff);
}

.about-milestone-current .about-milestone-year span {
  color: #0891b2;
}

.about-milestone-current .about-milestone-year i {
  background: #06b6d4;
  box-shadow: 0 0 0 4px #ecfeff;
}

.about-principles {
  display: grid;
  grid-template-columns: minmax(250px, .63fr) minmax(0, 1.37fr);
  gap: 58px;
  margin-top: 20px;
  padding: 40px;
  border: 1px solid rgba(125, 211, 252, .14);
  border-radius: 25px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, .19), transparent 28%),
    #081728;
}

.about-principles-heading>span {
  color: #7dd3fc;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .13);
  border-radius: 16px;
  background: rgba(148, 163, 184, .13);
}

.about-principles-grid article {
  display: grid;
  grid-template-columns: 41px 1fr;
  gap: 13px;
  padding: 22px;
  background: #0b1b2e;
}

.about-principles-grid article>span {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .13);
}

.about-principles-grid svg {
  width: 17px;
  height: 17px;
}

.about-principles-grid strong {
  display: block;
  font: 730 11px var(--font-manrope);
}

.about-principles-grid p {
  margin: 7px 0 0;
  color: #8093a8;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .about-heading {
    gap: 52px;
  }

  .about-story-grid {
    grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
    gap: 45px;
  }

  .about-timeline,
  .about-principles {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 880px) {
  .about {
    padding: 94px 0 90px;
  }

  .about-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-intro {
    max-width: 690px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-founder-card {
    min-height: 0;
  }

  .about-founder-portrait {
    width: min(300px, 65%);
  }

  .about-story {
    padding-top: 8px;
  }
}

@media (max-width: 640px) {
  .about {
    padding: 78px 0 74px;
  }

  .about-heading h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .about-intro>p {
    font-size: 15px;
  }

  .about-story-grid {
    margin-top: 50px;
    gap: 34px;
  }

  .about-founder-card {
    padding: 25px 22px;
    border-radius: 23px;
  }

  .about-founder-portrait {
    width: min(280px, 88%);
  }

  .about-founder-copy h3 {
    font-size: 27px;
  }

  .about-story>h3 {
    font-size: 34px;
  }

  .about-story-copy {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .about-actions .button {
    width: 100%;
  }

  .about-text-link {
    justify-content: center;
  }

  .about-timeline,
  .about-principles {
    padding: 27px 22px;
    border-radius: 21px;
  }

  .about-timeline-list,
  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .about-milestone {
    grid-template-columns: 62px 1fr;
    min-height: 0;
    padding: 21px 18px;
  }

  .about-milestone:nth-child(2n) {
    border-left: 0;
  }

  .about-milestone+.about-milestone {
    border-top: 1px solid #e5eaf1;
  }
}

/* Blog e Conteúdo -------------------------------------------------------- */
.blog-section {
  position: relative;
  overflow: hidden;
  padding: 116px 0 108px;
  color: var(--navy-950);
  background: #f5f7fa;
}

.blog-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image: linear-gradient(rgba(148, 163, 184, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 46%);
  pointer-events: none;
}

.blog-shell {
  position: relative;
}

.blog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .68fr);
  align-items: end;
  gap: 96px;
}

.blog-heading h2 {
  margin: 20px 0 0;
  font: 760 clamp(44px, 5vw, 66px)/1.03 var(--font-manrope);
  letter-spacing: -.06em;
}

.blog-heading h2 span {
  color: var(--blue-600);
}

.blog-intro>p {
  margin: 0;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.75;
}

.blog-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 23px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 780;
}

.blog-all-link svg {
  width: 15px;
  height: 15px;
  transition: transform .2s ease;
}

.blog-all-link:hover svg {
  transform: translate(2px, -2px);
}

.blog-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 20px;
  margin-top: 66px;
}

.blog-featured,
.blog-secondary {
  overflow: hidden;
  border: 1px solid #dce4ed;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(15, 23, 42, .06);
}

.blog-featured {
  display: grid;
  grid-template-rows: minmax(330px, 1.08fr) auto;
}

.blog-featured-visual {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 330px;
  color: #fff;
  background: radial-gradient(circle at 20% 15%, rgba(37, 99, 235, .34), transparent 30%), radial-gradient(circle at 90% 88%, rgba(6, 182, 212, .16), transparent 31%), #071321;
}

.blog-featured-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: radial-gradient(rgba(148, 163, 184, .7) .7px, transparent .7px);
  background-size: 21px 21px;
  mask-image: linear-gradient(135deg, black, transparent 70%);
}

.blog-visual-label {
  position: absolute;
  top: 29px;
  left: 31px;
  z-index: 2;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.blog-visual-number {
  position: absolute;
  top: 22px;
  right: 29px;
  color: rgba(255, 255, 255, .09);
  font: 780 54px var(--font-manrope);
  letter-spacing: -.08em;
}

.blog-visual-caption {
  position: absolute;
  right: 31px;
  bottom: 27px;
  z-index: 2;
  color: #7f93a8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.blog-visual-system {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 210px;
  transform: translate(-50%, -48%);
}

.blog-system-core,
.blog-system-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .17);
  color: #7dd3fc;
  background: rgba(15, 38, 62, .92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
}

.blog-system-core {
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  border-radius: 26px;
  transform: translate(-50%, -50%) rotate(6deg);
  background: linear-gradient(145deg, rgba(37, 99, 235, .38), rgba(8, 24, 42, .96));
}

.blog-system-core svg {
  width: 32px;
  height: 32px;
  transform: rotate(-6deg);
}

.blog-system-node {
  width: 49px;
  height: 49px;
  border-radius: 15px;
}

.blog-system-node svg {
  width: 19px;
  height: 19px;
}

.blog-system-node-one {
  top: 8px;
  left: 16px;
}

.blog-system-node-two {
  top: 16px;
  right: 12px;
  color: #a78bfa;
}

.blog-system-node-three {
  right: 31px;
  bottom: 2px;
  color: #34d399;
}

.blog-system-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(125, 211, 252, .1), rgba(125, 211, 252, .55), rgba(125, 211, 252, .08));
}

.blog-system-line-one {
  top: 57px;
  left: 59px;
  width: 102px;
  transform: rotate(28deg);
}

.blog-system-line-two {
  top: 65px;
  left: 164px;
  width: 96px;
  transform: rotate(-23deg);
}

.blog-system-line-three {
  top: 128px;
  left: 172px;
  width: 89px;
  transform: rotate(31deg);
}

.blog-featured-copy {
  padding: 31px 34px 34px;
}

.blog-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-article-meta span {
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.blog-article-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c5ced9;
}

.blog-article-meta small {
  color: var(--slate-500);
  font-size: 10px;
}

.blog-featured-copy h3 {
  max-width: 650px;
  margin: 15px 0 0;
  font: 750 clamp(24px, 2.5vw, 35px)/1.19 var(--font-manrope);
  letter-spacing: -.047em;
}

.blog-featured-copy h3 a,
.blog-secondary-copy h3 a {
  color: inherit;
  transition: color .2s ease;
}

.blog-featured-copy h3 a:hover,
.blog-secondary-copy h3 a:hover {
  color: var(--blue-600);
}

.blog-featured-copy>p {
  margin: 16px 0 0;
  color: var(--slate-500);
  font-size: 10px;
  line-height: 1.7;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 780;
}

.blog-read-link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}

.blog-read-link:hover svg {
  transform: translateX(3px);
}

.blog-secondary-list {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.blog-secondary {
  display: grid;
  grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr);
  min-height: 0;
}

.blog-secondary-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  min-height: 260px;
  color: #fff;
  background: linear-gradient(145deg, #063b4a, #081b2b);
}

.blog-secondary-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(rgba(165, 243, 252, .75) .7px, transparent .7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom right, black, transparent 78%);
}

.blog-secondary-visual>span {
  position: absolute;
  top: 20px;
  left: 21px;
  color: rgba(255, 255, 255, .12);
  font: 780 32px var(--font-manrope);
}

.blog-secondary-visual>svg {
  position: relative;
  z-index: 2;
  width: 43px;
  height: 43px;
  color: #67e8f9;
}

.blog-secondary-visual>small {
  position: relative;
  z-index: 2;
  color: #91cbd4;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .11em;
  text-align: center;
  text-transform: uppercase;
}

.blog-secondary-violet .blog-secondary-visual {
  background: linear-gradient(145deg, #24164a, #0d1728);
}

.blog-secondary-violet .blog-secondary-visual>svg {
  color: #c4b5fd;
}

.blog-secondary-violet .blog-secondary-visual>small {
  color: #ada2d5;
}

.blog-secondary-copy {
  align-self: center;
  padding: 27px 25px;
}

.blog-secondary-copy h3 {
  margin: 13px 0 0;
  font: 740 19px/1.27 var(--font-manrope);
  letter-spacing: -.04em;
}

.blog-secondary-copy>p {
  margin: 12px 0 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.62;
}

.blog-secondary-copy .blog-read-link {
  margin-top: 17px;
}

.blog-strategy {
  display: grid;
  grid-template-columns: minmax(260px, .64fr) minmax(0, 1.36fr);
  gap: 56px;
  margin-top: 20px;
  padding: 39px 40px;
  border: 1px solid #dce4ed;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(15, 23, 42, .05);
}

.blog-strategy-heading>span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.blog-strategy-heading h3 {
  margin: 10px 0 0;
  font: 740 28px/1.24 var(--font-manrope);
  letter-spacing: -.045em;
}

.blog-strategy-heading p {
  margin: 14px 0 0;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.65;
}

.blog-strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 17px;
  background: #e2e8f0;
  gap: 1px;
}

.blog-strategy-grid article {
  padding: 23px 20px;
  background: #f8fafc;
}

.blog-strategy-grid article>span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--blue-600);
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .06);
}

.blog-strategy-grid svg {
  width: 17px;
  height: 17px;
}

.blog-strategy-grid strong {
  display: block;
  margin-top: 16px;
  font: 730 15px var(--font-manrope);
}

.blog-strategy-grid p {
  margin: 7px 0 0;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.57;
}

.blog-cta {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
  padding: 29px 31px;
  border: 1px solid rgba(125, 211, 252, .14);
  border-radius: 23px;
  color: #fff;
  background: radial-gradient(circle at 100% 0%, rgba(37, 99, 235, .21), transparent 31%), #081728;
}

.blog-cta-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .15);
}

.blog-cta-icon svg {
  width: 24px;
  height: 24px;
}

.blog-cta>div:nth-child(2)>span {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.blog-cta h3 {
  margin: 5px 0 3px;
  font: 740 18px/1.28 var(--font-manrope);
  letter-spacing: -.035em;
}

.blog-cta p {
  margin: 0;
  color: #8194a9;
  font-size: 12px;
}

.blog-cta .button {
  min-height: 48px;
  padding-inline: 18px;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .blog-heading {
    gap: 52px;
  }

  .blog-editorial-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .88fr);
  }

  .blog-secondary {
    grid-template-columns: 135px 1fr;
  }

  .blog-strategy {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 880px) {
  .blog-section {
    padding: 94px 0 90px;
  }

  .blog-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blog-intro {
    max-width: 690px;
  }

  .blog-editorial-grid {
    grid-template-columns: 1fr;
  }

  .blog-secondary-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .blog-secondary {
    grid-template-columns: 1fr;
  }

  .blog-secondary-visual {
    min-height: 190px;
  }

  .blog-cta {
    grid-template-columns: 58px 1fr;
  }

  .blog-cta .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .blog-section {
    padding: 78px 0 74px;
  }

  .blog-heading h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .blog-intro>p {
    font-size: 15px;
  }

  .blog-editorial-grid {
    margin-top: 50px;
  }

  .blog-featured,
  .blog-secondary {
    border-radius: 22px;
  }

  .blog-featured {
    grid-template-rows: 270px auto;
  }

  .blog-featured-visual {
    min-height: 270px;
  }

  .blog-visual-system {
    width: 260px;
    transform: translate(-50%, -46%) scale(.88);
  }

  .blog-featured-copy {
    padding: 27px 23px 29px;
  }

  .blog-featured-copy h3 {
    font-size: 27px;
  }

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

  .blog-secondary {
    grid-template-columns: 118px 1fr;
  }

  .blog-secondary-visual {
    min-height: 250px;
  }

  .blog-secondary-copy {
    padding: 23px 19px;
  }

  .blog-secondary-copy h3 {
    font-size: 17px;
  }

  .blog-strategy {
    padding: 27px 22px;
    border-radius: 21px;
  }

  .blog-strategy-grid {
    grid-template-columns: 1fr;
  }

  .blog-strategy-grid article {
    display: grid;
    grid-template-columns: 39px 1fr;
    gap: 13px;
  }

  .blog-strategy-grid strong {
    margin-top: 1px;
  }

  .blog-cta {
    grid-template-columns: 1fr;
    padding: 25px 23px;
  }

  .blog-cta-icon {
    width: 50px;
    height: 50px;
  }

  .blog-cta .button {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .blog-secondary {
    grid-template-columns: 1fr;
  }

  .blog-secondary-visual {
    min-height: 165px;
  }
}

/* Perguntas Frequentes -------------------------------------------------- */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 116px 0 108px;
  color: var(--navy-950);
  background: #fff;
}

.faq-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(15px);
  pointer-events: none;
}

.faq-ambient-one {
  top: -260px;
  right: -210px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(37, 99, 235, .08), transparent 69%);
}

.faq-ambient-two {
  bottom: -280px;
  left: -240px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(6, 182, 212, .055), transparent 69%);
}

.faq-shell {
  position: relative;
}

.faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .68fr);
  align-items: end;
  gap: 96px;
}

.faq-kicker {
  color: var(--blue-600);
}

.faq-heading h2 {
  margin: 20px 0 0;
  font: 760 clamp(44px, 5vw, 66px)/1.03 var(--font-manrope);
  letter-spacing: -.06em;
}

.faq-heading h2 span {
  color: var(--blue-600);
}

.faq-intro>p {
  margin: 0;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.75;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: 54px;
  margin-top: 66px;
}

.faq-contact-card {
  position: sticky;
  top: 108px;
  overflow: hidden;
  padding: 31px;
  border: 1px solid rgba(125, 211, 252, .15);
  border-radius: 26px;
  color: #fff;
  background: radial-gradient(circle at 100% 0%, rgba(37, 99, 235, .27), transparent 36%), radial-gradient(circle at 0% 100%, rgba(6, 182, 212, .09), transparent 32%), #071321;
  box-shadow: 0 28px 75px rgba(7, 17, 31, .18);
}

.faq-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: radial-gradient(rgba(148, 163, 184, .7) .7px, transparent .7px);
  background-size: 21px 21px;
  mask-image: linear-gradient(135deg, black, transparent 70%);
  pointer-events: none;
}

.faq-contact-card>* {
  position: relative;
  z-index: 1;
}

.faq-contact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-contact-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .16);
  border-radius: 16px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .16);
}

.faq-contact-icon svg {
  width: 22px;
  height: 22px;
}

.faq-contact-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #9eb0c3;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-contact-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .1);
}

.faq-contact-copy {
  margin-top: 49px;
}

.faq-contact-copy>small {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.faq-contact-copy h3 {
  margin: 11px 0 0;
  font: 750 clamp(25px, 2.2vw, 33px)/1.2 var(--font-manrope);
  letter-spacing: -.05em;
}

.faq-contact-copy p {
  margin: 16px 0 0;
  color: #91a4b8;
  font-size: 15px !important;
  line-height: 1.72;
}

.faq-contact-points {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(148, 163, 184, .14);
  list-style: none;
}

.faq-contact-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b5c3d2;
  font-size: 12px;
  font-weight: 650;
}

.faq-contact-points svg {
  width: 16px;
  height: 16px;
  padding: 3px;
  border-radius: 50%;
  color: #fff;
  background: rgba(16, 185, 129, .78);
}

.faq-contact-card .button {
  width: 100%;
  min-height: 51px;
  margin-top: 29px;
  font-size: 10px;
}

.faq-contact-note {
  display: block;
  margin-top: 11px;
  color: #70859b;
  font-size: 10px;
  text-align: center;
}

.faq-groups {
  display: grid;
  gap: 25px;
}

.faq-group {
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 45px rgba(15, 23, 42, .045);
}

.faq-group-heading {
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 21px 23px;
  border-bottom: 1px solid #e6ebf2;
  background: #f8fafc;
}

.faq-group-heading>span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid #e1e8f0;
  border-radius: 12px;
  color: var(--blue-600);
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .04);
}

.faq-group-heading svg {
  width: 18px;
  height: 18px;
}

.faq-group-heading h3 {
  margin: 0;
  color: var(--slate-800);
  font: 740 15px var(--font-manrope);
  letter-spacing: -.025em;
}

.faq-group-heading small {
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-list {
  padding: 0 23px;
}

.faq-item {
  border-bottom: 1px solid #e6ebf2;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 37px;
  align-items: center;
  gap: 15px;
  min-height: 82px;
  padding: 17px 0;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-number {
  color: #a1afbf;
  font: 760 9px var(--font-manrope);
  letter-spacing: .05em;
}

.faq-item summary strong {
  color: var(--slate-800);
  font: 720 14px/1.4 var(--font-manrope);
  letter-spacing: -.02em;
  transition: color .2s ease;
}

.faq-toggle {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid #dde5ee;
  border-radius: 11px;
  color: var(--slate-500);
  background: #f8fafc;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .25s ease;
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
}

.faq-item summary:hover strong,
.faq-item[open] summary strong {
  color: var(--blue-600);
}

.faq-item summary:hover .faq-toggle {
  color: var(--blue-600);
  border-color: var(--blue-100);
  background: var(--blue-50);
}

.faq-item[open] .faq-toggle {
  color: #fff;
  border-color: var(--blue-600);
  background: var(--blue-600);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 52px 25px 49px;
}

.faq-answer p {
  max-width: 780px;
  margin: -2px 0 0;
  color: var(--slate-500);
  font-size: 10px;
  line-height: 1.75;
}

.faq-footer-note {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
  padding: 24px 27px;
  border: 1px solid #dce4ed;
  border-radius: 20px;
  background: #f8fafc;
}

.faq-footer-note>span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-600);
  background: #fff;
  box-shadow: 0 7px 20px rgba(15, 23, 42, .06);
}

.faq-footer-note>span svg {
  width: 20px;
  height: 20px;
}

.faq-footer-note strong {
  display: block;
  color: var(--slate-800);
  font: 730 14px var(--font-manrope);
}

.faq-footer-note p {
  margin: 5px 0 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.55;
}

.faq-footer-note>a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 780;
  white-space: nowrap;
}

.faq-footer-note>a svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}

.faq-footer-note>a:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1120px) {
  .faq-heading {
    gap: 52px;
  }

  .faq-layout {
    grid-template-columns: minmax(270px, .55fr) minmax(0, 1.45fr);
    gap: 35px;
  }
}

@media (max-width: 880px) {
  .faq-section {
    padding: 94px 0 90px;
  }

  .faq-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-intro {
    max-width: 690px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-contact-card {
    position: relative;
    top: auto;
  }

  .faq-contact-copy {
    max-width: 620px;
    margin-top: 32px;
  }

  .faq-contact-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-contact-card .button {
    width: auto;
    padding-inline: 22px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 78px 0 74px;
  }

  .faq-heading h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .faq-intro>p {
    font-size: 15px;
  }

  .faq-layout {
    margin-top: 50px;
  }

  .faq-contact-card {
    padding: 25px 22px;
    border-radius: 22px;
  }

  .faq-contact-points {
    grid-template-columns: 1fr;
  }

  .faq-contact-card .button {
    width: 100%;
  }

  .faq-group {
    border-radius: 19px;
  }

  .faq-group-heading {
    grid-template-columns: 40px 1fr;
    padding: 18px;
  }

  .faq-group-heading>span {
    width: 40px;
    height: 40px;
  }

  .faq-group-heading small {
    display: none;
  }

  .faq-list {
    padding: 0 18px;
  }

  .faq-item summary {
    grid-template-columns: 25px minmax(0, 1fr) 35px;
    gap: 10px;
    min-height: 78px;
  }

  .faq-item summary strong {
    font-size: 12px;
  }

  .faq-toggle {
    width: 35px;
    height: 35px;
  }

  .faq-answer {
    padding: 0 45px 23px 35px;
  }

  .faq-footer-note {
    grid-template-columns: 45px 1fr;
    padding: 22px;
  }

  .faq-footer-note>span {
    width: 45px;
    height: 45px;
  }

  .faq-footer-note>a {
    grid-column: 1 / -1;
  }
}

/* CTA Final ------------------------------------------------------------ */
.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 68px;
  color: #fff;
  background: #06111f;
}

.final-cta-grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(148, 163, 184, .11) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, .11) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.final-cta-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

.final-cta-ambient-one {
  top: -290px;
  right: -170px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(37, 99, 235, .28), transparent 68%);
}

.final-cta-ambient-two {
  bottom: -350px;
  left: -230px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 182, 212, .12), transparent 68%);
}

.final-cta-shell {
  position: relative;
}

.final-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(370px, .8fr);
  align-items: center;
  gap: 88px;
  padding: 76px 74px 68px;
  border: 1px solid rgba(125, 211, 252, .13);
  border-radius: 32px 32px 0 0;
  background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, .16), transparent 34%), rgba(10, 28, 47, .78);
  box-shadow: 0 36px 100px rgba(0, 0, 0, .2);
  backdrop-filter: blur(16px);
}

.final-cta-kicker {
  color: #7dd3fc;
  border-color: rgba(125, 211, 252, .15);
  background: rgba(37, 99, 235, .13);
}

.final-cta-copy h2 {
  max-width: 770px;
  margin: 24px 0 0;
  font: 760 clamp(42px, 4.8vw, 65px)/1.04 var(--font-manrope);
  letter-spacing: -.06em;
}

.final-cta-copy h2 span {
  color: #7dd3fc;
}

.final-cta-copy>p {
  max-width: 660px;
  margin: 25px 0 0;
  color: #9db0c4;
  font-size: 15px;
  line-height: 1.76;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 33px;
}

.final-cta-actions .button {
  min-height: 53px;
  padding: 0 21px;
  font-size: 10px;
}

.final-cta-primary {
  color: #071321;
  background: #fff;
  box-shadow: 0 15px 38px rgba(0, 0, 0, .2);
}

.final-cta-primary:hover {
  background: #eef7ff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .27);
}

.final-cta-secondary {
  color: #d9e7f5;
  border: 1px solid rgba(148, 163, 184, .28);
  background: rgba(255, 255, 255, .045);
}

.final-cta-secondary:hover {
  border-color: rgba(125, 211, 252, .5);
  background: rgba(125, 211, 252, .08);
}

.final-cta-actions svg {
  width: 16px;
  height: 16px;
}

.final-cta-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 27px;
}

.final-cta-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8196ab;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.final-cta-contact svg {
  width: 14px;
  height: 14px;
  color: #7dd3fc;
}

.final-cta-route {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 24px;
  background: rgba(5, 16, 29, .7);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

.final-cta-route::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .19), transparent 70%);
  pointer-events: none;
}

.final-cta-route>* {
  position: relative;
  z-index: 1;
}

.final-cta-route-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(148, 163, 184, .14);
}

.final-cta-route-head>div {
  display: flex;
  flex-direction: column;
}

.final-cta-route-head small {
  color: #6f869e;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.final-cta-route-head strong {
  margin-top: 5px;
  color: #f8fbff;
  font: 730 14px var(--font-manrope);
}

.final-cta-route-head>span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7f95aa;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.final-cta-route-head>span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .1);
}

.final-cta-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 9px 0 0;
  list-style: none;
  counter-reset: none;
}

.final-cta-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) 37px;
  align-items: center;
  gap: 13px;
  min-height: 100px;
  border-bottom: 1px solid rgba(148, 163, 184, .12);
}

.final-cta-steps li:last-child {
  border-bottom: 0;
}

.final-cta-steps li>span {
  color: #64809a;
  font: 760 8px var(--font-manrope);
  letter-spacing: .05em;
}

.final-cta-steps li>div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.final-cta-steps strong {
  color: #e6eef7;
  font: 700 10px var(--font-manrope);
}

.final-cta-steps small {
  margin-top: 5px;
  color: #7890a7;
  font-size: 10px;
  line-height: 1.45;
}

.final-cta-steps li>svg {
  width: 37px;
  height: 37px;
  padding: 10px;
  border: 1px solid rgba(125, 211, 252, .12);
  border-radius: 11px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .11);
}

.final-cta-route-note {
  display: grid;
  grid-template-columns: 37px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 15px;
  border-radius: 14px;
  background: rgba(125, 211, 252, .055);
}

.final-cta-route-note>svg {
  width: 37px;
  height: 37px;
  padding: 9px;
  border-radius: 11px;
  color: #7dd3fc;
  background: rgba(125, 211, 252, .09);
}

.final-cta-route-note p {
  margin: 0;
  color: #8096ac;
  font-size: 10px;
  line-height: 1.55;
}

.final-cta-route-note strong {
  color: #b8c8d8;
}

.final-cta-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .14);
  border-top: 0;
  border-radius: 0 0 25px 25px;
  background: rgba(4, 14, 25, .84);
}

.final-cta-trust article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 97px;
  padding: 22px 28px;
}

.final-cta-trust article+article {
  border-left: 1px solid rgba(148, 163, 184, .13);
}

.final-cta-trust article>span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .12);
}

.final-cta-trust svg {
  width: 18px;
  height: 18px;
}

.final-cta-trust article>div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.final-cta-trust strong {
  color: #dce7f2;
  font: 700 9px var(--font-manrope);
}

.final-cta-trust small {
  margin-top: 5px;
  color: #6f869d;
  font-size: 10px;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .final-cta-panel {
    gap: 52px;
    padding: 64px 55px 59px;
  }
}

@media (max-width: 880px) {
  .final-cta-section {
    padding: 58px 0 54px;
  }

  .final-cta-panel {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 58px 45px 49px;
  }

  .final-cta-copy>p {
    max-width: 720px;
  }

  .final-cta-route {
    max-width: 670px;
  }

  .final-cta-trust {
    grid-template-columns: 1fr;
  }

  .final-cta-trust article+article {
    border-top: 1px solid rgba(148, 163, 184, .13);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .final-cta-section {
    padding: 36px 0;
  }

  .final-cta-panel {
    gap: 38px;
    padding: 42px 24px 35px;
    border-radius: 24px 24px 0 0;
  }

  .final-cta-copy h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .final-cta-copy>p {
    font-size: 14px;
  }

  .final-cta-actions {
    display: grid;
  }

  .final-cta-actions .button {
    width: 100%;
  }

  .final-cta-contact {
    display: grid;
    gap: 12px;
  }

  .final-cta-route {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .final-cta-route-head {
    align-items: flex-start;
  }

  .final-cta-route-head>span {
    margin-top: 2px;
  }

  .final-cta-steps li {
    grid-template-columns: 26px minmax(0, 1fr) 35px;
    gap: 9px;
  }

  .final-cta-steps li>svg {
    width: 35px;
    height: 35px;
  }

  .final-cta-trust {
    border-radius: 0 0 22px 22px;
  }

  .final-cta-trust article {
    padding: 20px 23px;
  }
}

/* Footer ---------------------------------------------------------------- */
.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #030b14;
  border-top: 1px solid rgba(148, 163, 184, .12);
}

.footer-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(148, 163, 184, .11) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, .11) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 58%);
  pointer-events: none;
}

.footer-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  pointer-events: none;
}

.footer-ambient-one {
  top: -330px;
  right: -210px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(37, 99, 235, .19), transparent 69%);
}

.footer-ambient-two {
  bottom: -390px;
  left: -270px;
  width: 740px;
  height: 740px;
  background: radial-gradient(circle, rgba(6, 182, 212, .08), transparent 69%);
}

.footer-shell {
  position: relative;
}

.footer-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  padding: 74px 0 57px;
  border-bottom: 1px solid rgba(148, 163, 184, .14);
}

.footer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #7f95aa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 5px rgba(52, 211, 153, .08);
}

.footer-intro h2 {
  margin: 18px 0 0;
  color: #f8fbff;
  font: 750 clamp(35px, 4vw, 54px)/1.08 var(--font-manrope);
  letter-spacing: -.055em;
}

.footer-intro h2 span {
  color: #7dd3fc;
}

.footer-contact-shortcut {
  min-width: 310px;
  display: grid;
  grid-template-columns: 48px 1fr 18px;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid rgba(125, 211, 252, .15);
  border-radius: 17px;
  color: #fff;
  background: rgba(37, 99, 235, .1);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.footer-contact-shortcut:hover {
  border-color: rgba(125, 211, 252, .32);
  background: rgba(37, 99, 235, .16);
  transform: translateY(-2px);
}

.footer-contact-shortcut>span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #7dd3fc;
  background: rgba(125, 211, 252, .09);
}

.footer-contact-shortcut svg {
  width: 19px;
  height: 19px;
}

.footer-contact-shortcut>div {
  display: flex;
  flex-direction: column;
}

.footer-contact-shortcut small {
  color: #7890a7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-contact-shortcut strong {
  color: #edf6ff;
  font: 720 13px var(--font-manrope);
}

.footer-contact-shortcut>svg {
  color: #7dd3fc;
  transition: transform .2s ease;
}

.footer-contact-shortcut:hover>svg {
  transform: translate(2px, -2px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 1.3fr) repeat(3, minmax(120px, .67fr)) minmax(250px, 1.05fr);
  gap: 46px;
  padding: 59px 0 54px;
}

.footer-brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.footer-brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .18);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #2563eb, #075985);
  box-shadow: 0 12px 30px rgba(37, 99, 235, .24);
  font: 800 18px var(--font-manrope);
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
}

.footer-brand-copy strong {
  font: 760 16px var(--font-manrope);
  letter-spacing: -.035em;
}

.footer-brand-copy small {
  margin-top: 3px;
  color: #71879d;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-brand-column>p {
  max-width: 310px;
  margin: 25px 0 0;
  color: #71869b;
  font-size: 12px;
  line-height: 1.75;
}

.footer-channel-links {
  display: flex;
  gap: 9px;
  margin-top: 25px;
}

.footer-channel-links a {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, .14);
  border-radius: 11px;
  color: #8da2b7;
  background: rgba(255, 255, 255, .025);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.footer-channel-links a:hover {
  color: #7dd3fc;
  border-color: rgba(125, 211, 252, .27);
  background: rgba(37, 99, 235, .1);
  transform: translateY(-2px);
}

.footer-channel-links svg {
  width: 16px;
  height: 16px;
}

.footer-nav-column h3,
.footer-contact-column>h3 {
  margin: 4px 0 22px;
  color: #f5f9fd;
  font: 720 11px var(--font-manrope);
  letter-spacing: -.015em;
}

.footer-nav-column ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav-column a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #74899d;
  font-size: 12px;
  line-height: 1.45;
  transition: color .2s ease;
}

.footer-nav-column a svg {
  width: 11px;
  height: 11px;
  opacity: 0;
  color: #7dd3fc;
  transform: translate(-3px, 3px);
  transition: opacity .2s ease, transform .2s ease;
}

.footer-nav-column a:hover {
  color: #dce8f3;
}

.footer-nav-column a:hover svg {
  opacity: 1;
  transform: translate(0);
}

.footer-contact-column address {
  display: grid;
  gap: 11px;
  font-style: normal;
}

.footer-contact-column address>a,
.footer-address-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  color: inherit;
}

.footer-contact-column address>a>span,
.footer-address-item>span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, .13);
  border-radius: 10px;
  color: #7dd3fc;
  background: rgba(125, 211, 252, .05);
  transition: border-color .2s ease, background .2s ease;
}

.footer-contact-column address>a:hover>span {
  border-color: rgba(125, 211, 252, .28);
  background: rgba(37, 99, 235, .11);
}

.footer-contact-column address svg {
  width: 15px;
  height: 15px;
}

.footer-contact-column address div div,
.footer-contact-column address>a>div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-contact-column address small {
  color: #60778e;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-contact-column address strong {
  overflow-wrap: anywhere;
  margin-top: 4px;
  color: #b8c7d6;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.footer-contact-column address>a:hover strong {
  color: #eff7ff;
}

.footer-availability {
  display: grid;
  grid-template-columns: 8px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 19px;
  padding: 15px;
  border: 1px solid rgba(52, 211, 153, .11);
  border-radius: 13px;
  background: rgba(52, 211, 153, .04);
}

.footer-availability>i {
  width: 7px;
  height: 7px;
  margin-top: 3px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .08);
}

.footer-availability>span {
  display: flex;
  flex-direction: column;
}

.footer-availability strong {
  color: #adc9be;
  font-size: 10px;
}

.footer-availability small {
  margin-top: 4px;
  color: #657e75;
  font-size: 8px;
  line-height: 1.45;
}

.footer-company-bar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(148, 163, 184, .12);
  border-bottom: 1px solid rgba(148, 163, 184, .12);
}

.footer-company-bar>div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 23px;
}

.footer-company-bar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #61778c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .035em;
}

.footer-company-bar span:first-child {
  color: #91a5b9;
}

.footer-company-bar span+span {
  position: relative;
}

.footer-company-bar span+span::before {
  content: "";
  position: absolute;
  left: -12px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #34495e;
}

.footer-company-bar svg {
  width: 14px;
  height: 14px;
  color: #7dd3fc;
}

.footer-company-bar>a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8ba1b6;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  transition: color .2s ease;
}

.footer-company-bar>a:hover {
  color: #fff;
}

.footer-company-bar>a svg {
  transition: transform .2s ease;
}

.footer-company-bar>a:hover svg {
  transform: translateY(-3px);
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-bottom p {
  margin: 0;
  color: #52687d;
  font-size: 10px;
}

.footer-bottom>div {
  display: flex;
  align-items: center;
  gap: 23px;
}

.footer-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #52687d;
  font-size: 10px;
}

.footer-bottom svg {
  width: 13px;
  height: 13px;
  color: #708ba4;
}

@media (max-width: 1180px) {
  .footer-main {
    grid-template-columns: minmax(250px, 1.3fr) repeat(3, minmax(130px, .72fr));
    gap: 40px;
  }

  .footer-contact-column {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 260px;
    align-items: start;
    gap: 28px;
    padding-top: 34px;
    border-top: 1px solid rgba(148, 163, 184, .11);
  }

  .footer-contact-column address {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-availability {
    margin-top: 0;
  }
}

@media (max-width: 880px) {
  .footer-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact-shortcut {
    width: min(100%, 390px);
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 34px;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }

  .footer-brand-column>p {
    max-width: 520px;
  }

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

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

  .footer-availability {
    max-width: 370px;
  }

  .footer-company-bar {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 23px 0;
  }
}

@media (max-width: 600px) {
  .footer-intro {
    gap: 34px;
    padding: 61px 0 47px;
  }

  .footer-intro h2 {
    font-size: clamp(32px, 10vw, 43px);
  }

  .footer-contact-shortcut {
    min-width: 0;
    width: 100%;
    grid-template-columns: 43px 1fr 17px;
    padding: 15px;
  }

  .footer-contact-shortcut>span {
    width: 43px;
    height: 43px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 39px;
    padding: 49px 0 43px;
  }

  .footer-brand-column,
  .footer-contact-column {
    grid-column: auto;
  }

  .footer-nav-column {
    padding-top: 3px;
  }

  .footer-nav-column+.footer-nav-column {
    padding-top: 32px;
    border-top: 1px solid rgba(148, 163, 184, .1);
  }

  .footer-nav-column h3,
  .footer-contact-column>h3 {
    margin-bottom: 19px;
  }

  .footer-nav-column ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 17px;
  }

  .footer-nav-column a {
    font-size: 10.5px;
  }

  .footer-contact-column {
    padding-top: 32px;
  }

  .footer-company-bar>div {
    display: grid;
    gap: 10px;
  }

  .footer-company-bar span+span::before {
    display: none;
  }

  .footer-bottom>div {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .footer-nav-column ul {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ETAPA 13 — REFINAMENTO DE LEGIBILIDADE E RESPONSIVIDADE
   ========================================================= */
:root {
  --copy-lg: clamp(16px, .32vw + 14.8px, 18px);
  --copy-md: clamp(15px, .22vw + 14.2px, 17px);
  --copy-sm: clamp(14px, .14vw + 13.5px, 15px);
}

body {
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

:where(a, button, summary):focus-visible {
  outline: 3px solid rgba(37, 99, 235, .35);
  outline-offset: 4px;
}

/* Textos introdutórios e explicativos principais */
.hero-lead,
.authority-intro p,
.solutions-intro>p,
.projects-heading-copy>p,
.segments-intro>p,
.process-intro>p,
.hosting-intro>p,
.about-intro>p,
.blog-intro>p,
.faq-intro>p,
.final-cta-copy>p {
  font-size: var(--copy-lg);
  line-height: 1.72;
}

/* Textos descritivos de cards e blocos editoriais */
.authority-number p,
.expertise-heading p,
.solution-description,
.project-summary,
.supporting-summary,
.segment-feature-copy p,
.process-manifesto>p,
.process-step-body>p,
.hosting-description,
.about-founder-copy p,
.about-story-copy p,
.blog-featured-copy>p,
.blog-secondary-copy>p,
.faq-contact-copy p,
.faq-answer p {
  font-size: var(--copy-md);
  line-height: 1.7;
}

/* Textos auxiliares que ainda precisam ser lidos com conforto */
.solutions-principle p,
.solution-service p,
.solution-ideal p,
.solutions-bridge-copy p,
.project-highlight p,
.supporting-project-copy li,
.projects-closing-copy p,
.segment-compact p,
.segment-example,
.segments-proof-copy p,
.segments-cta p,
.process-actions li,
.process-deliverable p,
.process-principle p,
.process-cta p,
.hosting-intro-note small,
.hosting-checks li,
.hosting-feature p,
.hosting-continuity-heading p,
.hosting-continuity-grid p,
.hosting-cta p,
.about-intro-seal small,
.about-credentials strong,
.about-timeline-heading p,
.about-milestone p,
.about-principles-grid p,
.blog-pillar p,
.blog-cta p,
.faq-contact-points li,
.faq-footer-note p,
.final-cta-steps small,
.final-cta-route-note p,
.final-cta-trust small,
.footer-brand-column>p,
.footer-nav-column a,
.footer-contact-column address strong,
.footer-availability small {
  font-size: var(--copy-sm);
  line-height: 1.6;
}

/* Hierarquia dos títulos internos e links de ação */
.expertise-item strong,
.solution-service strong,
.project-highlight strong,
.hosting-feature h3,
.hosting-continuity-grid strong,
.about-credentials strong,
.about-milestone strong,
.about-principles-grid strong,
.final-cta-steps strong,
.final-cta-trust strong {
  font-size: 15px;
  line-height: 1.4;
}

.text-link,
.solution-link,
.project-external-link,
.about-text-link,
.blog-all-link,
.faq-footer-note>a,
.button,
.nav-cta {
  font-size: 14px;
}

.button-large,
.button-light,
.final-cta-actions .button,
.faq-contact-card .button,
.about-actions .button {
  font-size: 14px;
}

.project-tags span,
.technology-stack span,
.segment-deliveries span,
.about-founder-skills span {
  font-size: 12px;
  line-height: 1.35;
}

.faq-item summary strong {
  font-size: 15px;
}

/* O aumento de texto não deve ficar preso a alturas rígidas. */
.solution-description,
.supporting-project-copy,
.about-milestone {
  min-height: 0;
}

/* Ajustes de contraste nos textos secundários escuros. */
.project-summary,
.supporting-summary,
.projects-closing-copy p,
.process-step-body>p,
.process-manifesto>p,
.hosting-description,
.about-founder-copy p,
.faq-contact-copy p,
.final-cta-copy>p {
  color: #aebdce;
}

@media (min-width: 981px) {

  .desktop-nav>a,
  .mega-trigger>button {
    font-size: 14px;
  }

  .mega-column>a strong {
    font-size: 13px;
  }

  .mega-column>a small {
    font-size: 12px;
  }

  .mega-column-title strong {
    font-size: 13px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 32px, 1380px);
  }

  .hero-lead,
  .authority-intro p,
  .solutions-intro>p,
  .projects-heading-copy>p,
  .segments-intro>p,
  .process-intro>p,
  .hosting-intro>p,
  .about-intro>p,
  .blog-intro>p,
  .faq-intro>p,
  .final-cta-copy>p {
    font-size: 17px;
    line-height: 1.68;
  }

  .solution-card-top,
  .solution-card-footer,
  .supporting-project-copy {
    padding-inline: 23px;
  }

  /* Cases ocupam a largura útil do celular e ficam geometricamente centrados. */
  .project-feature-visual {
    min-height: 470px;
    padding: 28px 12px;
  }

  .case-window {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
    transform: none;
    transform-origin: center;
  }

  .foca-interface {
    height: 390px;
  }

  .foca-dashboard {
    padding: 17px 13px 14px;
  }

  .foca-metrics>div {
    padding: 8px 6px;
  }

  .foca-dashboard-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(92px, .75fr);
  }

  .foca-chart-card,
  .foca-activity-card {
    padding: 10px;
  }

  .foca-chart {
    height: 150px;
  }

  .supporting-project-visual {
    min-height: 310px;
    padding: 20px 12px 16px;
  }

  .supporting-window {
    width: 100%;
    max-width: 590px;
    margin-inline: auto;
    transform: none;
    transform-origin: center;
  }

  .supporting-project-badge {
    right: 20px;
    bottom: 12px;
    font-size: 11px;
  }

  .project-summary,
  .supporting-summary,
  .solution-description,
  .segment-feature-copy p,
  .process-step-body>p,
  .hosting-description,
  .about-founder-copy p,
  .about-story-copy p,
  .faq-answer p {
    font-size: 16px;
  }

  .solution-service p,
  .project-highlight p,
  .supporting-project-copy li,
  .process-actions li,
  .process-deliverable p,
  .hosting-feature p,
  .hosting-continuity-grid p,
  .about-milestone p,
  .about-principles-grid p,
  .final-cta-steps small,
  .final-cta-trust small,
  .footer-nav-column a {
    font-size: 14px;
  }

  .footer-nav-column ul {
    gap: 15px 20px;
  }
}

@media (max-width: 460px) {
  .project-feature-visual {
    min-height: 440px;
  }

  .foca-sidebar {
    width: 44px;
  }

  .foca-dashboard {
    padding-inline: 10px;
  }

  .foca-metrics {
    gap: 5px;
  }

  .foca-metrics>div {
    grid-template-columns: 1fr;
    padding: 7px;
  }

  .foca-metrics span {
    display: none;
  }

  .foca-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .foca-activity-card {
    display: none;
  }

  .foca-chart {
    height: 158px;
  }

  .supporting-project-visual {
    min-height: 292px;
  }

  .acai-hero-card {
    padding-inline: 14px;
  }

  .acai-bowl {
    width: 82px;
    height: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   ETAPA 14.1 — REDES, CONTATO, PRIVACIDADE E VOLTAR AO TOPO
   ========================================================= */
.topbar-links {
  align-items: center;
  gap: 16px;
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.topbar-socials a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #aebed0;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.topbar-socials a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .09);
  transform: translateY(-1px);
}

.topbar-socials svg {
  width: 14px;
  height: 14px;
}

.mobile-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
}

.mobile-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--slate-200);
  border-radius: 11px;
  color: var(--slate-600);
  background: #fff;
}

.mobile-socials svg {
  width: 17px;
  height: 17px;
}

.footer-channel-links a {
  width: 42px;
  height: 42px;
}

.footer-company-bar span,
.footer-company-bar>a,
.footer-bottom p,
.footer-bottom span,
.footer-privacy-trigger {
  font-size: 14px;
  line-height: 1.5;
}

.footer-company-bar span {
  color: #8ca0b4;
}

.footer-company-bar span:first-child,
.footer-company-bar>a {
  color: #bdcbd9;
}

.footer-bottom p,
.footer-bottom span,
.footer-privacy-trigger {
  color: #879bae;
}

.footer-privacy-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease;
}

.footer-privacy-trigger:hover {
  color: #e7f0f8;
}

.footer-privacy-trigger svg {
  width: 15px;
  height: 15px;
  color: #7dd3fc;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #2563eb, #1647b8);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .24), 0 7px 18px rgba(37, 99, 235, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  cursor: pointer;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, .3), 0 9px 22px rgba(37, 99, 235, .28);
}

.back-to-top svg {
  width: 21px;
  height: 21px;
}

body.modal-open {
  overflow: hidden;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.privacy-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(3, 11, 20, .8);
  backdrop-filter: blur(8px);
  cursor: default;
}

.privacy-modal-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(860px, calc(100vh - 56px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, .9);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 42px 130px rgba(0, 0, 0, .38);
  transform: translateY(18px) scale(.985);
  transition: transform .3s cubic-bezier(.2, .75, .25, 1);
}

.privacy-modal.is-open .privacy-modal-dialog {
  transform: translateY(0) scale(1);
}

.privacy-modal-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: start;
  gap: 25px;
  padding: 28px 31px 25px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 8%, rgba(125, 211, 252, .18), transparent 31%),
    linear-gradient(145deg, #07152b, #0a2348);
}

.privacy-modal-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #93c5fd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.privacy-modal-header span svg {
  width: 16px;
  height: 16px;
}

.privacy-modal-header h2 {
  margin: 10px 0 0;
  color: #fff;
  font: 750 clamp(25px, 3vw, 36px)/1.15 var(--font-manrope);
  letter-spacing: -.04em;
}

.privacy-modal-header p {
  margin: 8px 0 0;
  color: #9fb1c5;
  font-size: 13px;
}

.privacy-modal-header>button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  color: #dce8f3;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.privacy-modal-header>button:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.privacy-modal-header>button svg {
  width: 20px;
  height: 20px;
}

.privacy-modal-content {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 29px 32px 36px;
  color: var(--slate-600);
  scrollbar-width: thin;
  scrollbar-color: #a9b7c7 #eef2f7;
}

.privacy-modal-content .privacy-intro {
  margin: 0 0 28px;
  padding: 19px 21px;
  border: 1px solid #dbeafe;
  border-radius: 15px;
  color: var(--slate-700);
  background: #eff6ff;
  font-size: 15px;
  line-height: 1.7;
}

.privacy-modal-content section+section {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--slate-200);
}

.privacy-modal-content h3 {
  margin: 0;
  color: var(--slate-900);
  font: 750 17px/1.35 var(--font-manrope);
  letter-spacing: -.02em;
}

.privacy-modal-content p,
.privacy-modal-content li {
  font-size: 15px;
  line-height: 1.72;
}

.privacy-modal-content p {
  margin: 10px 0 0;
}

.privacy-modal-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 21px;
}

.privacy-modal-content strong {
  color: var(--slate-800);
}

.privacy-modal-content a {
  color: var(--blue-600);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 31px;
  border-top: 1px solid var(--slate-200);
  background: #f8fafc;
}

.privacy-modal-footer p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
}

.privacy-modal-footer p svg {
  width: 16px;
  height: 16px;
  color: var(--blue-600);
}

.privacy-modal-footer a {
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 750;
}

@media (max-width: 720px) {

  .footer-company-bar span,
  .footer-company-bar>a,
  .footer-bottom p,
  .footer-bottom span,
  .footer-privacy-trigger {
    font-size: 15px;
  }

  .footer-company-bar {
    gap: 16px;
  }

  .footer-bottom {
    gap: 17px;
  }

  .footer-bottom>div {
    gap: 13px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .privacy-modal {
    align-items: end;
    padding: 0;
  }

  .privacy-modal-dialog {
    width: 100%;
    max-height: 92dvh;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 22px 22px 0 0;
    transform: translateY(28px);
  }

  .privacy-modal-header {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 16px;
    padding: 24px 20px 21px;
  }

  .privacy-modal-header>button {
    width: 42px;
    height: 42px;
  }

  .privacy-modal-content {
    padding: 23px 20px 29px;
  }

  .privacy-modal-content .privacy-intro,
  .privacy-modal-content p,
  .privacy-modal-content li {
    font-size: 16px;
  }

  .privacy-modal-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .footer-channel-links {
    flex-wrap: wrap;
  }

  .privacy-modal-header h2 {
    font-size: 24px;
  }
}

/* =========================================================
   ETAPA 14.2 — HEADER DINÂMICO, MOVIMENTO, CONTATO E COOKIES
   ========================================================= */
body.menu-open {
  overflow: hidden;
}

/* Header maior no topo e compacto em azul-marinho ao rolar */
.site-header,
.topbar,
.brand,
.brand-mark,
.brand-copy strong,
.brand-copy small,
.desktop-nav>a,
.mega-trigger>button,
.mobile-toggle {
  transition-duration: .32s;
  transition-timing-function: cubic-bezier(.2, .75, .25, 1);
}

.topbar {
  overflow: hidden;
  transition-property: height, opacity, border-color;
}

.nav-wrap {
  height: 102px;
  transition: height .34s cubic-bezier(.2, .75, .25, 1), background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.brand {
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  transition-property: width, height, border-radius, background, box-shadow;
}

.brand-mark::after {
  width: 45px;
  height: 45px;
  right: -23px;
  bottom: -23px;
  transition: background .3s ease;
}

.brand-mark span {
  font-size: 27px;
  transition: font-size .3s ease;
}

.brand-copy strong {
  font-size: 20px;
  transition-property: color, font-size;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 12px;
  transition-property: color, font-size, margin;
}

.desktop-nav>a,
.mega-trigger>button {
  padding-block: 38px;
  font-size: 12.5px;
}

.nav-cta {
  padding: 15px 18px;
  font-size: 11px;
}

.hero {
  padding-top: 194px;
}

.site-header.is-scrolled .topbar {
  height: 0;
  opacity: 0;
  border-color: transparent;
}

.site-header.is-scrolled .nav-wrap {
  height: 70px;
  border-color: rgba(148, 163, 184, .13);
  background:
    radial-gradient(circle at 86% 0, rgba(37, 99, 235, .18), transparent 29%),
    rgba(3, 11, 20, .96);
  box-shadow: 0 16px 42px rgba(3, 11, 20, .24);
  backdrop-filter: blur(20px) saturate(130%);
}

.site-header.is-scrolled .brand {
  gap: 10px;
}

.site-header.is-scrolled .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(145deg, #2563eb, #075985);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1), 0 9px 24px rgba(37, 99, 235, .24);
}

.site-header.is-scrolled .brand-mark::after {
  background: #06b6d4;
}

.site-header.is-scrolled .brand-mark span {
  font-size: 21px;
}

.site-header.is-scrolled .brand-copy strong {
  color: #f7fbff;
  font-size: 16px;
}

.site-header.is-scrolled .brand-copy small {
  margin-top: 3px;
  color: #7890a7;
  font-size: 10px;
}

.site-header.is-scrolled .desktop-nav>a,
.site-header.is-scrolled .mega-trigger>button {
  padding-block: 24px;
  color: #aebed0;
}

.site-header.is-scrolled .desktop-nav>a:hover,
.site-header.is-scrolled .mega-trigger>button:hover {
  color: #fff;
}

.site-header.is-scrolled .desktop-nav>a::after,
.site-header.is-scrolled .mega-trigger>button::after {
  bottom: 15px;
  background: #38bdf8;
}

.site-header.is-scrolled .nav-cta {
  background: #2563eb;
  box-shadow: 0 12px 28px rgba(37, 99, 235, .28);
}

.site-header.is-scrolled .mobile-toggle {
  color: #e8f2fb;
  border-color: rgba(148, 163, 184, .18);
  background: rgba(255, 255, 255, .055);
}

/* Animações de entrada e microinterações */
.js-ready .reveal {
  transform: translate3d(0, 26px, 0) scale(.988);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-ready .reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

[data-counter] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

@media (hover: hover) and (pointer: fine) {

  .authority-number,
  .project-feature,
  .supporting-project,
  .segment-feature,
  .segment-compact,
  .hosting-showcase,
  .hosting-continuity-grid>article,
  .about-founder-card,
  .about-milestone,
  .about-principles-grid>article,
  .blog-featured,
  .blog-secondary,
  .faq-item,
  .final-cta-trust>article {
    transition: transform .3s cubic-bezier(.2, .75, .25, 1), box-shadow .3s ease, border-color .3s ease, background .3s ease;
  }

  .authority-number:hover,
  .segment-compact:hover,
  .hosting-continuity-grid>article:hover,
  .about-milestone:hover,
  .about-principles-grid>article:hover,
  .final-cta-trust>article:hover {
    z-index: 2;
    transform: translateY(-5px);
  }

  .project-feature:hover,
  .supporting-project:hover,
  .segment-feature:hover,
  .hosting-showcase:hover,
  .about-founder-card:hover,
  .blog-featured:hover,
  .blog-secondary:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 85px rgba(15, 23, 42, .14);
  }

  .authority-number:hover,
  .segment-compact:hover,
  .about-milestone:hover,
  .about-principles-grid>article:hover {
    box-shadow: 0 20px 50px rgba(15, 23, 42, .09);
  }

  .project-stage:hover .project-window {
    transform: translateY(-5px);
    box-shadow: 0 45px 120px rgba(15, 23, 42, .22);
  }

  .project-stage:hover .domyna-card {
    transform: translate3d(4px, -7px, 0);
  }

  .project-stage:hover .acai-card {
    transform: translate3d(-3px, 6px, 0);
  }

  .technology-stack span:hover,
  .segment-deliveries span:hover,
  .project-tags span:hover,
  .supporting-tags span:hover {
    color: var(--blue-700);
    border-color: var(--blue-100);
    background: var(--blue-50);
    transform: translateY(-2px);
  }
}

.project-window,
.domyna-card,
.acai-card,
.technology-stack span,
.segment-deliveries span,
.project-tags span,
.supporting-tags span {
  transition: transform .3s ease, box-shadow .3s ease, color .2s ease, border-color .2s ease, background .2s ease;
}

/* Botão de e-mail no Footer */
.footer-contact-action {
  width: 100%;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.footer-contact-action>span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, .13);
  border-radius: 10px;
  color: #7dd3fc;
  background: rgba(125, 211, 252, .05);
  transition: border-color .2s ease, background .2s ease;
}

.footer-contact-action>div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-contact-action:hover>span {
  border-color: rgba(125, 211, 252, .28);
  background: rgba(37, 99, 235, .11);
}

.footer-contact-action:hover strong {
  color: #eff7ff;
}

.footer-contact-action svg {
  width: 15px;
  height: 15px;
}

.final-cta-secondary {
  cursor: pointer;
}

/* Formulário modal */
#privacyModal {
  z-index: 540;
}

.contact-modal {
  z-index: 510;
}

.cookie-settings-modal {
  z-index: 520;
}

.contact-modal-dialog {
  width: min(800px, 100%);
}

.contact-modal-header {
  padding-bottom: 23px;
}

.contact-form {
  position: relative;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 28px 31px 25px;
  background: #fff;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label>span {
  color: var(--slate-800);
  font-size: 13px;
  font-weight: 750;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d7e0ea;
  border-radius: 12px;
  outline: 0;
  color: var(--slate-900);
  background: #fbfcfe;
  font: 500 15px/1.45 var(--font-inter);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  min-height: 125px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #93a2b4;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .1);
}

.contact-consent {
  grid-template-columns: 19px minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  margin-top: 18px;
  padding: 15px 16px;
  border: 1px solid #dbe6f0;
  border-radius: 13px;
  background: #f8fafc;
}

.contact-consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue-600);
}

.contact-consent>span {
  color: var(--slate-600) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.55;
}

.contact-consent button {
  padding: 0;
  border: 0;
  color: var(--blue-600);
  background: transparent;
  font-weight: 750;
  text-decoration: underline;
  cursor: pointer;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.contact-form-footer p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--slate-500);
  font-size: 12px;
}

.contact-form-footer p svg {
  width: 15px;
  height: 15px;
  color: var(--green-500);
}

.contact-submit {
  min-width: 174px;
  min-height: 49px;
  border: 0;
  cursor: pointer;
}

.contact-submit:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}

.contact-submit.is-loading svg {
  animation: contactPulse .8s ease-in-out infinite alternate;
}

.contact-form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 650;
  text-align: right;
}

.contact-form-status.is-success {
  color: #047857;
}

.contact-form-status.is-error {
  color: #b42318;
}

.contact-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@keyframes contactPulse {
  to {
    transform: translateX(3px);
  }
}

/* Consentimento e preferências de cookies */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 450;
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 19px 20px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 20px;
  color: #dce8f3;
  background:
    radial-gradient(circle at 6% 0, rgba(37, 99, 235, .2), transparent 28%),
    rgba(3, 11, 20, .97);
  box-shadow: 0 28px 90px rgba(3, 11, 20, .34);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: opacity .28s ease, transform .28s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cookie-banner-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .15);
}

.cookie-banner-icon svg {
  width: 23px;
  height: 23px;
}

.cookie-banner-copy strong {
  color: #fff;
  font: 750 16px var(--font-manrope);
}

.cookie-banner-copy p {
  max-width: 700px;
  margin: 5px 0 0;
  color: #95a8bb;
  font-size: 13px;
  line-height: 1.55;
}

.cookie-banner-copy button {
  margin-top: 5px;
  padding: 0;
  border: 0;
  color: #7dd3fc;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-button {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.cookie-button-primary {
  border: 1px solid var(--blue-600);
  color: #fff;
  background: var(--blue-600);
}

.cookie-button-primary:hover {
  background: var(--blue-700);
}

.cookie-button-secondary {
  border: 1px solid rgba(148, 163, 184, .27);
  color: #c2cfdb;
  background: rgba(255, 255, 255, .04);
}

.cookie-button-secondary:hover {
  border-color: rgba(125, 211, 252, .35);
  background: rgba(37, 99, 235, .1);
}

.cookie-settings-dialog {
  width: min(700px, 100%);
}

.cookie-settings-content {
  display: grid;
  gap: 12px;
  overflow-y: auto;
  padding: 25px 30px 27px;
}

.cookie-preference-row {
  grid-template-columns: minmax(0, 1fr) 46px;
  align-items: center;
  gap: 18px;
  padding: 17px 18px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: #fff;
}

.cookie-preference-row>span {
  display: grid;
  gap: 4px;
}

.cookie-preference-row strong {
  color: var(--slate-900);
  font: 750 15px var(--font-manrope);
}

.cookie-preference-row small {
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-preference-row input {
  width: 22px;
  height: 22px;
  justify-self: end;
  accent-color: var(--blue-600);
  cursor: pointer;
}

.cookie-preference-required {
  border-color: #dbeafe;
  background: #f5f9ff;
}

.cookie-preference-required input {
  cursor: not-allowed;
}

.cookie-settings-note {
  margin: 5px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--slate-600);
  background: var(--slate-100);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-settings-footer {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  padding: 17px 30px;
  border-top: 1px solid var(--slate-200);
  background: #f8fafc;
}

.cookie-settings-footer .cookie-button-secondary {
  color: var(--slate-700);
  border-color: var(--slate-300);
  background: #fff;
}

@media (max-width: 1180px) {
  .nav-wrap {
    height: 94px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .desktop-nav>a,
  .mega-trigger>button {
    padding-inline: 9px;
  }
}

@media (max-width: 1023px) {
  .nav-wrap {
    height: 86px;
  }

  .site-header.is-scrolled .nav-wrap {
    height: 66px;
  }

  .hero {
    padding-top: 136px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .brand-mark span {
    font-size: 24px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .site-header.is-scrolled .brand-mark {
    width: 38px;
    height: 38px;
  }

  .site-header.is-scrolled .brand-copy strong {
    font-size: 15px;
  }

  .cookie-banner {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .cookie-banner-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    height: 82px;
  }

  .site-header.is-scrolled .nav-wrap {
    height: 64px;
  }

  .hero {
    padding-top: 124px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark span {
    font-size: 22px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .site-header.is-scrolled .brand-copy small {
    display: none;
  }

  .site-header.is-scrolled .brand-mark {
    width: 37px;
    height: 37px;
  }

  .js-ready .reveal {
    transform: translate3d(0, 20px, 0);
  }

  .js-ready .reveal.is-visible {
    transform: translate3d(0, 0, 0);
  }

  .contact-modal-dialog {
    max-height: 94dvh;
  }

  .contact-form {
    padding: 23px 20px 22px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-field-wide {
    grid-column: auto;
  }

  .contact-form label>span {
    font-size: 14px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-consent>span {
    font-size: 14px !important;
  }

  .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-form-status {
    text-align: left;
  }

  .cookie-banner {
    left: 0;
    bottom: 0;
    width: 100%;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 17px calc(18px + env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }

  .cookie-banner.is-visible {
    transform: translateY(0);
  }

  .cookie-banner-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .cookie-banner-copy p {
    font-size: 14px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner-actions .cookie-button-primary {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .cookie-button {
    min-height: 45px;
  }

  .cookie-settings-content {
    padding: 20px;
  }

  .cookie-preference-row {
    grid-template-columns: minmax(0, 1fr) 34px;
    padding: 15px;
  }

  .cookie-preference-row small,
  .cookie-settings-note {
    font-size: 14px;
  }

  .cookie-settings-footer {
    display: grid;
    padding: 15px 20px calc(15px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .site-header.is-scrolled .brand-mark {
    width: 36px;
    height: 36px;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions .cookie-button-primary {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {

  .js-ready .reveal,
  .js-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }

  .cookie-banner {
    transition: none;
  }
}

/* =========================================================
   ETAPA 14.3 — NOVA IDENTIDADE VISUAL
   ========================================================= */
.brand-symbol {
  width: 62px;
  height: 62px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 17px rgba(37, 99, 235, .15));
  transition: width .32s cubic-bezier(.2, .75, .25, 1), height .32s cubic-bezier(.2, .75, .25, 1), filter .3s ease;
}

.brand-copy strong {
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -.045em;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 12.5px;
  letter-spacing: .23em;
}

.brand-link:hover .brand-symbol {
  filter: drop-shadow(0 12px 20px rgba(37, 99, 235, .24));
}

.site-header.is-scrolled .brand-symbol {
  width: 43px;
  height: 43px;
  filter: drop-shadow(0 8px 15px rgba(6, 182, 212, .2));
}

.site-header.is-scrolled .brand-copy strong {
  font-size: 17px;
}

.site-header.is-scrolled .brand-copy small {
  margin-top: 3px;
  color: #91a4b8;
  font-size: 10px;
  letter-spacing: .19em;
}

.site-header.is-scrolled .mobile-head .brand-symbol,
.mobile-head .brand-symbol {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 8px 14px rgba(37, 99, 235, .15));
}

.site-header.is-scrolled .mobile-head .brand-copy strong {
  color: var(--navy-950);
  font-size: 17px;
}

.site-header.is-scrolled .mobile-head .brand-copy small {
  display: block;
  margin-top: 4px;
  color: var(--slate-500);
  font-size: 10px;
}

.footer-brand {
  gap: 16px;
}

.footer-brand-symbol {
  width: 66px;
  height: 66px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(6, 182, 212, .16));
  transition: transform .28s cubic-bezier(.2, .75, .25, 1), filter .28s ease;
}

.footer-brand:hover .footer-brand-symbol {
  transform: translateY(-2px) scale(1.025);
  filter: drop-shadow(0 17px 30px rgba(6, 182, 212, .24));
}

.footer-brand-copy strong {
  color: #f7fbff;
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -.045em;
}

.footer-brand-copy small {
  margin-top: 5px;
  color: #92a7bb;
  font-size: 12px;
  letter-spacing: .2em;
}

.footer-brand-column>p {
  margin-top: 21px;
}

@media (max-width: 1180px) {
  .brand-symbol {
    width: 53px;
    height: 53px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy small {
    font-size: 12px;
  }
}

@media (max-width: 1023px) {
  .brand-symbol {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .site-header.is-scrolled .brand-symbol {
    width: 40px;
    height: 40px;
  }

  .site-header.is-scrolled .brand-copy strong {
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .brand {
    gap: 10px;
  }

  .brand-symbol {
    width: 47px;
    height: 47px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: .18em;
  }

  .site-header.is-scrolled .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .site-header.is-scrolled .brand-copy strong {
    font-size: 15px;
  }

  .footer-brand-symbol {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 420px) {
  .brand-symbol {
    width: 44px;
    height: 44px;
  }

  .site-header.is-scrolled .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .footer-brand-symbol {
    width: 56px;
    height: 56px;
  }
}

/* =========================================================
   ETAPA 14.4 — LOGOTIPO RASTER EM ALTA RESOLUCAO
   ========================================================= */
.brand {
  position: relative;
  width: 290px;
  aspect-ratio: 600 / 172;
  display: block;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 9px 16px rgba(37, 99, 235, .12));
  transition: opacity .25s ease, transform .32s cubic-bezier(.2, .75, .25, 1), filter .25s ease;
}

.brand-logo-light {
  opacity: 0;
}

.brand-link:hover .brand-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 12px 20px rgba(37, 99, 235, .2));
}

.site-header.is-scrolled .brand {
  width: 218px;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 1;
}

.mobile-head .brand {
  width: 224px;
}

.mobile-head .brand-logo-dark,
.site-header.is-scrolled .mobile-head .brand-logo-dark {
  opacity: 1;
}

.mobile-head .brand-logo-light,
.site-header.is-scrolled .mobile-head .brand-logo-light {
  opacity: 0;
}

.footer-brand {
  display: inline-block;
}

.footer-brand-logo {
  width: 292px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(6, 182, 212, .15));
  transition: transform .28s cubic-bezier(.2, .75, .25, 1), filter .28s ease;
}

.footer-brand:hover .footer-brand-logo {
  transform: translateY(-2px);
  filter: drop-shadow(0 16px 28px rgba(6, 182, 212, .23));
}

@media (max-width: 1180px) {
  .brand {
    width: 255px;
  }

  .site-header.is-scrolled .brand {
    width: 205px;
  }
}

@media (max-width: 1023px) {
  .brand {
    width: 238px;
  }

  .site-header.is-scrolled .brand {
    width: 194px;
  }
}

@media (max-width: 720px) {
  .brand {
    width: 210px;
  }

  .site-header.is-scrolled .brand {
    width: 176px;
  }

  .mobile-head .brand {
    width: 205px;
  }

  .footer-brand-logo {
    width: 260px;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 188px;
  }

  .site-header.is-scrolled .brand {
    width: 160px;
  }

  .mobile-head .brand {
    width: 185px;
  }

  .footer-brand-logo {
    width: min(244px, 76vw);
  }
}

/* =========================================================
   ETAPA 14.5 — PORTFOLIO VISUAL E AJUSTE DO HEADER
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Mantém a cor do Header além do limite superior da viewport e elimina
   qualquer fresta causada pela transição da barra institucional. */
.site-header.is-scrolled {
  background: #030b14;
}

.site-header.is-scrolled::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -3px 0 auto;
  height: 4px;
  background: #030b14;
  pointer-events: none;
}

.site-header.is-scrolled .topbar {
  min-height: 0;
  border: 0;
}

.site-header.is-scrolled .nav-wrap {
  border-top: 0;
}

.portfolio-showcase {
  margin-top: 54px;
  padding-top: 48px;
  border-top: 1px solid rgba(148, 163, 184, .16);
}

.portfolio-showcase-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.portfolio-showcase-head>div:first-child {
  max-width: 760px;
}

.portfolio-showcase .statement-index {
  color: #7dd3fc;
}

.portfolio-showcase-head h3 {
  margin: 12px 0 0;
  color: #fff;
  font: 750 clamp(29px, 2.5vw, 40px)/1.12 var(--font-manrope);
  letter-spacing: -.045em;
}

.portfolio-showcase-head p {
  max-width: 690px;
  margin: 12px 0 0;
  color: #93a5ba;
  font-size: 16px;
  line-height: 1.7;
}

.portfolio-carousel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.portfolio-carousel-controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 14px;
  color: #dce8f5;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
  cursor: pointer;
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
}

.portfolio-carousel-controls button:hover:not(:disabled) {
  color: #fff;
  border-color: rgba(125, 211, 252, .5);
  background: rgba(37, 99, 235, .3);
  transform: translateY(-2px);
}

.portfolio-carousel-controls button:focus-visible,
.portfolio-carousel-pagination button:focus-visible,
.portfolio-carousel-viewport:focus-visible {
  outline: 3px solid rgba(125, 211, 252, .72);
  outline-offset: 3px;
}

.portfolio-carousel-controls button:disabled {
  opacity: .34;
  cursor: default;
}

.portfolio-carousel-controls svg {
  width: 19px;
  height: 19px;
}

.portfolio-carousel-viewport {
  overflow-x: auto;
  margin-top: 30px;
  padding: 6px 3px 20px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.portfolio-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.portfolio-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 5);
  gap: 18px;
}

.portfolio-cover {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .17);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .16);
  scroll-snap-align: start;
  transition: border-color .28s ease, background .28s ease, box-shadow .28s ease, transform .28s cubic-bezier(.2, .75, .25, 1);
}

.portfolio-cover:hover {
  border-color: rgba(125, 211, 252, .36);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 25px 58px rgba(0, 0, 0, .24);
  transform: translateY(-5px);
}

.portfolio-cover figure {
  position: relative;
  aspect-ratio: 600 / 341;
  overflow: hidden;
  margin: 0;
  background: #0b1729;
}

.portfolio-cover figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(148, 163, 184, .14);
  background: linear-gradient(180deg, transparent 55%, rgba(3, 11, 20, .16));
  pointer-events: none;
}

.portfolio-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .75, .25, 1), filter .4s ease;
}

.portfolio-cover:hover img {
  filter: saturate(1.07) contrast(1.02);
  transform: scale(1.035);
}

.portfolio-cover-number {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  min-width: 31px;
  height: 25px;
  display: grid;
  place-items: center;
  padding-inline: 7px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: #fff;
  background: rgba(3, 11, 20, .7);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.portfolio-cover-copy {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 17px 17px;
}

.portfolio-cover-copy strong {
  overflow: hidden;
  color: #edf5fc;
  font: 730 15px/1.3 var(--font-manrope);
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}

.portfolio-cover-copy span {
  overflow: hidden;
  margin-top: 5px;
  color: #8296ab;
  font-size: 14px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-carousel-footer {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 60px;
}

.portfolio-carousel-pagination {
  display: flex;
  align-items: center;
  gap: 7px;
}

.portfolio-carousel-pagination button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #40536a;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.portfolio-carousel-pagination button.is-active {
  width: 28px;
  background: linear-gradient(90deg, #2563eb, #22d3ee);
}

.portfolio-carousel-footer>p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #61778e;
  font-size: 11px;
  font-weight: 700;
}

.portfolio-carousel-footer>p strong {
  color: #dbeafe;
  font-size: 13px;
}

@media (max-width: 1399px) {
  .portfolio-carousel-track {
    grid-auto-columns: calc((100% - 48px) / 4);
    gap: 16px;
  }
}

@media (max-width: 1040px) {
  .portfolio-carousel-track {
    grid-auto-columns: calc((100% - 32px) / 3);
  }
}

@media (max-width: 760px) {
  .portfolio-showcase {
    margin-top: 38px;
    padding-top: 37px;
  }

  .portfolio-showcase-head {
    align-items: flex-start;
  }

  .portfolio-showcase-head p {
    font-size: 14px;
  }

  .portfolio-carousel-controls button {
    width: 44px;
    height: 44px;
  }

  .portfolio-carousel-track {
    grid-auto-columns: calc((100% - 14px) / 2);
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .portfolio-showcase-head {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .portfolio-carousel-controls {
    align-self: flex-end;
  }

  .portfolio-carousel-viewport {
    width: calc(100% + 16px);
    margin-top: 22px;
    margin-right: -16px;
    padding-right: 16px;
  }

  .portfolio-carousel-track {
    grid-auto-columns: minmax(270px, 86%);
  }

  .portfolio-cover-copy {
    min-height: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-carousel-viewport {
    scroll-behavior: auto;
  }

  .portfolio-cover,
  .portfolio-cover img {
    transition: none;
  }

  .portfolio-cover:hover {
    transform: none;
  }

  .portfolio-cover:hover img {
    transform: none;
  }
}

/* =========================================================
   ETAPA 15 — PERFORMANCE, CORE WEB VITALS E NOVOS ATIVOS
   ========================================================= */
.brand-logo {
  position: static;
  opacity: 1;
}

.portfolio-cover-link {
  display: block;
  color: inherit;
}

.portfolio-cover-link:focus-visible {
  outline: 3px solid rgba(125, 211, 252, .78);
  outline-offset: 4px;
  border-radius: 16px;
}

.portfolio-cover picture {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-cover-visit {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  color: #fff;
  background: rgba(3, 11, 20, .76);
  box-shadow: 0 9px 24px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
  opacity: .86;
  transition: opacity .24s ease, transform .24s ease, background .24s ease;
}

.portfolio-cover-visit svg {
  width: 15px;
  height: 15px;
}

.portfolio-cover:hover .portfolio-cover-visit,
.portfolio-cover-link:focus-visible .portfolio-cover-visit {
  opacity: 1;
  background: rgba(37, 99, 235, .92);
  transform: translate(2px, -2px);
}

.segments-case-links {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}

.segments-case-links>a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid rgba(125, 211, 252, .16);
  border-radius: 15px;
  color: #e8f3fd;
  background: rgba(37, 99, 235, .08);
  transition: border-color .24s ease, background .24s ease, transform .24s ease;
}

.segments-case-links>a:hover,
.segments-case-links>a:focus-visible {
  border-color: rgba(125, 211, 252, .38);
  background: rgba(37, 99, 235, .17);
  transform: translateY(-3px);
}

.segments-case-links>a:focus-visible {
  outline: 3px solid rgba(125, 211, 252, .65);
  outline-offset: 3px;
}

.segments-case-links>a>span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #7dd3fc;
  background: rgba(125, 211, 252, .09);
}

.segments-case-links>a>span svg,
.segments-case-links>a>svg {
  width: 17px;
  height: 17px;
}

.segments-case-links>a>div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.segments-case-links small {
  color: #71879d;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.segments-case-links strong {
  margin-top: 5px;
  color: #edf7ff;
  font: 720 14px/1.35 var(--font-manrope);
}

.segments-case-links>a>svg {
  color: #7dd3fc;
  transition: transform .24s ease;
}

.segments-case-links>a:hover>svg,
.segments-case-links>a:focus-visible>svg {
  transform: translate(2px, -2px);
}

.about-founder-portrait {
  width: min(100%, 380px);
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, .18);
  border-radius: 24px;
  background: #0b1729;
  box-shadow: 0 24px 58px rgba(0, 0, 0, .3);
}

.about-founder-portrait picture,
.about-founder-portrait img {
  width: 100%;
  height: 100%;
  display: block;
}

.about-founder-portrait img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: center 43%;
}

.about-founder-portrait::before {
  inset: 0;
  z-index: 2;
  border: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 54%, rgba(3, 11, 20, .44));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
  transform: none;
  pointer-events: none;
}

.about-founder-portrait::after {
  display: none;
}

.about-founder-code,
.about-founder-pixel {
  z-index: 3;
}

.footer-company-bar span,
.footer-company-bar>a,
.footer-bottom p,
.footer-bottom span {
  font-size: 13px;
}

.footer-copyright {
  cursor: default;
  user-select: text;
}

@media (max-width: 720px) {

  .footer-company-bar span,
  .footer-company-bar>a,
  .footer-bottom p,
  .footer-bottom span {
    font-size: 14px;
  }

  .segments-case-links {
    grid-template-columns: 1fr;
  }

  .segments-case-links>a {
    min-height: 74px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .portfolio-cover-visit,
  .segments-case-links>a,
  .segments-case-links>a>svg {
    transition: none;
  }

  .segments-case-links>a:hover,
  .segments-case-links>a:focus-visible,
  .portfolio-cover:hover .portfolio-cover-visit,
  .portfolio-cover-link:focus-visible .portfolio-cover-visit {
    transform: none;
  }
}

/* =========================================================
   ETAPA 15.1 — CASES ESPECIAIS E ACABAMENTO DO FOOTER
   ========================================================= */

/* Os cases substituem a antiga tabela de clientes no segundo eixo do bloco. */
.segments-case-links {
  grid-column: auto;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 14px;
  margin-top: 0;
}

.segments-case-links>.segments-case-card {
  --case-accent: #7dd3fc;
  --case-surface: rgba(37, 99, 235, .1);
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 0;
  padding: 19px 20px;
  border-color: rgba(125, 211, 252, .18);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--case-surface), rgba(255, 255, 255, .025));
}

.segments-case-links>.segments-case-card-health {
  --case-accent: #67e8f9;
  --case-surface: rgba(8, 145, 178, .11);
}

.segments-case-links>.segments-case-card:hover,
.segments-case-links>.segments-case-card:focus-visible {
  border-color: rgba(125, 211, 252, .46);
  background: linear-gradient(135deg, rgba(37, 99, 235, .18), rgba(255, 255, 255, .04));
}

.segments-case-links>.segments-case-card-health:hover,
.segments-case-links>.segments-case-card-health:focus-visible {
  border-color: rgba(103, 232, 249, .46);
  background: linear-gradient(135deg, rgba(8, 145, 178, .2), rgba(255, 255, 255, .04));
}

.segments-case-card .segments-case-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(125, 211, 252, .2);
  border-radius: 15px;
  color: var(--case-accent);
  background: rgba(125, 211, 252, .1);
}

.segments-case-card-health .segments-case-icon {
  border-color: rgba(103, 232, 249, .2);
  background: rgba(103, 232, 249, .1);
}

.segments-case-card .segments-case-icon svg {
  width: 21px;
  height: 21px;
}

.segments-case-card .segments-case-copy {
  display: block;
}

.segments-case-card .segments-case-copy small {
  color: #8298ae;
}

.segments-case-card .segments-case-copy strong {
  display: block;
  margin-top: 7px;
  color: #f3f8fd;
  font-size: 20px;
}

.segments-case-card .segments-case-copy p {
  margin: 9px 0 0;
  color: #91a4b8;
  font-size: 14px;
  line-height: 1.6;
}

.segments-case-card .segments-case-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: var(--case-accent);
  font-size: 14px;
  font-weight: 760;
}

.segments-case-card .segments-case-cta svg {
  width: 14px;
  height: 14px;
  transition: transform .24s ease;
}

.segments-case-card:hover .segments-case-cta svg,
.segments-case-card:focus-visible .segments-case-cta svg {
  transform: translate(2px, -2px);
}

@media (max-width: 640px) {
  .segments-case-links>.segments-case-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
    padding: 17px;
  }

  .segments-case-card .segments-case-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .segments-case-card .segments-case-cta svg {
    transition: none;
  }

  .segments-case-card:hover .segments-case-cta svg,
  .segments-case-card:focus-visible .segments-case-cta svg {
    transform: none;
  }
}

/* =========================================================
   ETAPA 16.1 — NAVEGAÇÃO ESTÁVEL E RODAPÉ LEGAL
   ========================================================= */

html {
  background: #030b14;
}

/*
 * O bloco legal usa classes exclusivas e fluxo normal. Nenhuma regra de grid,
 * posicionamento ou transformação das versões anteriores participa da área
 * clicável dos links.
 */
.legal-footer-bar {
  display: block;
  gap: 9px;
  padding: 20px 0 24px;
  border: 0;
}

.legal-footer-bar>p {
  margin: 0;
  color: #70869b;
  font-size: 13px;
  line-height: 1.5;
  user-select: text;
  float: right;
  margin-top: 10px;
  margin-bottom: 40px;
}

.legal-footer-bar nav,
.legal-footer-list,
.legal-footer-list li {
  margin: 0;
  padding: 0;
  float: inline-start;
}

.legal-footer-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px 22px;
  list-style: none;
}

.legal-footer-list a,
.legal-footer-list span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.legal-footer-list a {
  color: #879bae;
  font-weight: 650;
  cursor: pointer;
  touch-action: manipulation;
  transition: color .2s ease;
}

.legal-footer-list a:hover,
.legal-footer-list a:focus-visible {
  color: #e7f0f8;
}

.legal-footer-list a:focus-visible {
  outline: 2px solid #7dd3fc;
  outline-offset: 3px;
}

.legal-footer-list a svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: #7dd3fc;
  pointer-events: none;
}

.legal-footer-list span {
  color: #61778c;
}

@media (max-width: 640px) {
  .legal-footer-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .legal-footer-list a,
  .legal-footer-list span {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ================================================================
   ETAPA 17 — CONTEÚDOS E ARTIGOS
   ================================================================ */

.internal-page {
  background: #fff;
}

.internal-page .site-header {
  inset: 0 0 auto;
}

.contents-main,
.article-main {
  overflow: clip;
}

.internal-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #91a2b8;
  font-size: 10px;
  font-weight: 650;
}

.internal-breadcrumb a {
  transition: color .2s ease;
}

.internal-breadcrumb a:hover {
  color: #fff;
}

.internal-breadcrumb svg {
  width: 13px;
  height: 13px;
  color: #536a82;
}

.internal-breadcrumb span {
  color: #d7e2ee;
}

/* Listagem -------------------------------------------------------- */
.contents-hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 84px;
  color: #fff;
  background: radial-gradient(circle at 78% 28%, rgba(37, 99, 235, .23), transparent 28%), radial-gradient(circle at 18% 92%, rgba(6, 182, 212, .09), transparent 27%), #071321;
}

.contents-hero-grid,
.article-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(148, 163, 184, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, .14) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 70%, transparent);
  pointer-events: none;
}

.contents-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.contents-hero-orb-one {
  width: 440px;
  height: 440px;
  top: -210px;
  right: -120px;
  border: 1px solid rgba(125, 211, 252, .08);
  box-shadow: inset 0 0 90px rgba(37, 99, 235, .08);
}

.contents-hero-orb-two {
  width: 260px;
  height: 260px;
  bottom: -170px;
  left: 11%;
  border: 1px solid rgba(167, 139, 250, .09);
}

.contents-hero-shell {
  position: relative;
}

.contents-hero-copy {
  max-width: 890px;
  margin-top: 48px;
}

.section-kicker-light {
  color: #7dd3fc;
  border-color: rgba(125, 211, 252, .18);
  background: rgba(37, 99, 235, .11);
}

.contents-hero h1 {
  margin: 24px 0 0;
  font: 770 clamp(45px, 5.25vw, 72px)/1.03 var(--font-manrope);
  letter-spacing: -.065em;
}

.contents-hero h1 span {
  color: #60a5fa;
}

.contents-hero-copy>p {
  max-width: 690px;
  margin: 25px 0 0;
  color: #a9b8c9;
  font-size: 17px;
  line-height: 1.72;
}

.contents-search {
  max-width: 900px;
  margin-top: 42px;
}

.contents-search>label {
  display: block;
  margin: 0 0 10px 3px;
  color: #8fa3b9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contents-search>div {
  min-height: 64px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 17px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .19);
  backdrop-filter: blur(16px);
}

.contents-search>div>span {
  display: grid;
  place-items: center;
  color: #7dd3fc;
}

.contents-search>div>span svg {
  width: 19px;
  height: 19px;
}

.contents-search input {
  min-width: 0;
  height: 46px;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font: 500 13px var(--font-inter);
}

.contents-search input::placeholder {
  color: #7890a7;
}

.contents-search button {
  height: 49px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 21px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--blue-600);
  font-size: 10px;
  font-weight: 780;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.contents-search button:hover {
  background: var(--blue-500);
  transform: translateY(-1px);
}

.contents-search button svg {
  width: 15px;
  height: 15px;
}

.contents-library {
  padding: 92px 0 108px;
  background: #f6f8fb;
}

.contents-library-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.contents-library-head>div>span,
.article-related header span,
.contents-newsletter-card>div>span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contents-library-head h2,
.article-related header h2 {
  margin: 10px 0 0;
  font: 750 clamp(30px, 3.5vw, 46px)/1.1 var(--font-manrope);
  letter-spacing: -.052em;
}

.contents-library-head>p {
  margin: 0 0 4px;
  color: var(--slate-500);
  font-size: 11px;
}

.contents-categories {
  display: flex;
  gap: 8px;
  margin-top: 30px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.contents-categories a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid #dbe3ec;
  border-radius: 999px;
  color: var(--slate-600);
  background: #fff;
  font-size: 12px;
  font-weight: 720;
  transition: color .2s, border-color .2s, background .2s;
}

.contents-categories a:hover {
  color: var(--blue-600);
  border-color: var(--blue-100);
}

.contents-categories a.is-active {
  color: #fff;
  border-color: var(--blue-600);
  background: var(--blue-600);
}

.contents-featured-card {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  overflow: hidden;
  margin-top: 35px;
  border: 1px solid #dbe3ec;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.contents-card-visual {
  position: relative;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background: #0a1a2d;
}

.contents-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .3;
  background-image: radial-gradient(rgba(255, 255, 255, .58) .7px, transparent .7px);
  background-size: 21px 21px;
  mask-image: linear-gradient(145deg, #000, transparent 72%);
}

.contents-card-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 48px;
  transform: rotate(25deg);
  box-shadow: inset 0 0 55px rgba(255, 255, 255, .03);
  transition: transform .45s ease;
}

.contents-card-visual:hover::after {
  transform: rotate(35deg) scale(1.06);
}

.contents-card-visual-blue {
  background: radial-gradient(circle at 25% 18%, rgba(59, 130, 246, .42), transparent 35%), #071728;
}

.contents-card-visual-cyan {
  background: radial-gradient(circle at 22% 20%, rgba(6, 182, 212, .36), transparent 38%), #06232c;
}

.contents-card-visual-violet {
  background: radial-gradient(circle at 22% 20%, rgba(124, 58, 237, .4), transparent 39%), #17102c;
}

.contents-card-visual-green {
  background: radial-gradient(circle at 22% 20%, rgba(16, 185, 129, .34), transparent 38%), #07241f;
}

.contents-card-visual-orange {
  background: radial-gradient(circle at 22% 20%, rgba(249, 115, 22, .36), transparent 38%), #2c1609;
}

.contents-card-visual-indigo {
  background: radial-gradient(circle at 22% 20%, rgba(99, 102, 241, .4), transparent 38%), #12152f;
}

.contents-card-visual-rose {
  background: radial-gradient(circle at 22% 20%, rgba(244, 63, 94, .34), transparent 38%), #2b0d17;
}

.contents-card-visual-teal {
  background: radial-gradient(circle at 22% 20%, rgba(20, 184, 166, .36), transparent 38%), #082823;
}

.contents-card-number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(255, 255, 255, .12);
  font: 780 39px var(--font-manrope);
  letter-spacing: -.08em;
}

.contents-card-icon {
  position: relative;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .18);
  border-radius: 25px;
  color: #a5e8ff;
  background: rgba(15, 35, 57, .8);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .27);
}

.contents-card-icon svg {
  width: 34px;
  height: 34px;
}

.contents-card-visual>small {
  position: absolute;
  left: 24px;
  bottom: 21px;
  color: rgba(220, 234, 248, .64);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contents-featured-copy {
  align-self: center;
  padding: 43px 48px;
}

.contents-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contents-featured-label svg {
  width: 14px;
  height: 14px;
}

.content-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.content-card-meta span {
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.content-card-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c5ced9;
}

.content-card-meta small {
  color: var(--slate-500);
  font-size: 10px;
}

.contents-featured-copy h2 {
  max-width: 720px;
  margin: 15px 0 0;
  font: 750 clamp(28px, 3vw, 42px)/1.15 var(--font-manrope);
  letter-spacing: -.052em;
}

.contents-featured-copy h2 a,
.content-library-card h3 a,
.article-related-card h3 a {
  transition: color .2s;
}

.contents-featured-copy h2 a:hover,
.content-library-card h3 a:hover,
.article-related-card h3 a:hover {
  color: var(--blue-600);
}

.contents-featured-copy>p {
  max-width: 730px;
  margin: 17px 0 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.75;
}

.content-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 780;
}

.content-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}

.content-card-link:hover svg {
  transform: translateX(3px);
}

.contents-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.content-library-card {
  overflow: hidden;
  border: 1px solid #dbe3ec;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(15, 23, 42, .045);
  transition: transform .25s, box-shadow .25s;
}

.content-library-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, .09);
}

.content-library-card .contents-card-visual {
  min-height: 220px;
}

.content-library-card .contents-card-icon {
  width: 67px;
  height: 67px;
  border-radius: 20px;
}

.content-library-card .contents-card-icon svg {
  width: 27px;
  height: 27px;
}

.content-library-card-copy {
  padding: 26px 27px 28px;
}

.content-library-card h3 {
  margin: 14px 0 0;
  font: 740 20px/1.28 var(--font-manrope);
  letter-spacing: -.04em;
}

.content-library-card-copy>p {
  margin: 13px 0 0;
  color: var(--slate-500);
  font-size: 10px;
  line-height: 1.68;
}

.content-library-card-copy .content-card-link {
  margin-top: 18px;
}

.contents-empty {
  max-width: 660px;
  margin: 48px auto 0;
  padding: 54px;
  border: 1px solid #dbe3ec;
  border-radius: 27px;
  background: #fff;
  text-align: center;
}

.contents-empty>span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 20px;
  color: var(--blue-600);
  background: var(--blue-50);
}

.contents-empty h2 {
  margin: 20px 0 0;
  font: 750 29px var(--font-manrope);
  letter-spacing: -.045em;
}

.contents-empty p {
  margin: 10px 0 0;
  color: var(--slate-500);
  font-size: 12px;
}

.contents-empty .button {
  margin-top: 24px;
}

.contents-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 42px;
}

.contents-pagination a,
.contents-pagination>span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe3ec;
  border-radius: 11px;
  color: var(--slate-600);
  background: #fff;
  font-size: 10px;
  font-weight: 750;
  transition: color .2s, border-color .2s, background .2s;
}

.contents-pagination a:hover {
  color: var(--blue-600);
  border-color: var(--blue-100);
}

.contents-pagination a.is-active {
  color: #fff;
  border-color: var(--blue-600);
  background: var(--blue-600);
}

.contents-pagination .pagination-arrow svg {
  width: 15px;
  height: 15px;
}

.contents-pagination .is-disabled {
  opacity: .38;
}

.contents-newsletter {
  padding: 0 0 94px;
  background: #f6f8fb;
}

.contents-newsletter-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 25px;
  padding: 35px 38px;
  border: 1px solid rgba(125, 211, 252, .14);
  border-radius: 26px;
  color: #fff;
  background: radial-gradient(circle at 90% 0%, rgba(37, 99, 235, .23), transparent 32%), #081728;
}

.contents-newsletter-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .15);
}

.contents-newsletter-icon svg {
  width: 26px;
  height: 26px;
}

.contents-newsletter-card h2 {
  max-width: 790px;
  margin: 8px 0 0;
  font: 740 25px/1.25 var(--font-manrope);
  letter-spacing: -.04em;
}

.contents-newsletter-card p {
  margin: 8px 0 0;
  color: #96a8ba;
  font-size: 10px;
  line-height: 1.6;
}

.contents-newsletter-card .button {
  min-height: 48px;
  margin-top: 0;
  padding-inline: 19px;
  font-size: 12px;
  white-space: nowrap;
}

/* Artigo ---------------------------------------------------------- */
.article-reading-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.article-reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-500));
  box-shadow: 0 0 14px rgba(59, 130, 246, .5);
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 76px;
  color: #fff;
  background: radial-gradient(circle at 82% 28%, rgba(37, 99, 235, .2), transparent 30%), #071321;
}

.article-hero-shell {
  position: relative;
}

.article-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(310px, .72fr);
  align-items: center;
  gap: 80px;
  margin-top: 45px;
}

.article-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(125, 211, 252, .18);
  border-radius: 999px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.article-category svg {
  width: 14px;
  height: 14px;
}

.article-hero h1 {
  max-width: 930px;
  margin: 24px 0 0;
  font: 770 clamp(40px, 4.7vw, 66px)/1.06 var(--font-manrope);
  letter-spacing: -.062em;
}

.article-hero-copy>p {
  max-width: 820px;
  margin: 23px 0 0;
  color: #acbac9;
  font-size: 16px;
  line-height: 1.72;
}

.article-meta-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px 24px;
  margin-top: 29px;
}

.article-meta-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8fa2b6;
  font-size: 12px;
  font-weight: 650;
}

.article-meta-line svg {
  width: 14px;
  height: 14px;
  color: #7dd3fc;
}

.article-hero-visual {
  position: relative;
  min-height: 355px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 31px;
  background: radial-gradient(circle at 22% 18%, rgba(59, 130, 246, .34), transparent 37%), rgba(10, 28, 47, .84);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .22);
}

.article-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(rgba(255, 255, 255, .7) .7px, transparent .7px);
  background-size: 20px 20px;
  mask-image: linear-gradient(145deg, #000, transparent 72%);
}

.article-hero-visual>span {
  position: absolute;
  top: 25px;
  left: 26px;
  color: #7dd3fc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.article-hero-visual>strong {
  position: absolute;
  top: 15px;
  right: 24px;
  color: rgba(255, 255, 255, .1);
  font: 780 48px var(--font-manrope);
  letter-spacing: -.08em;
}

.article-hero-visual>div {
  position: relative;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .17);
  border-radius: 33px;
  color: #a5e8ff;
  background: rgba(37, 99, 235, .14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  transform: rotate(5deg);
}

.article-hero-visual>div svg {
  width: 44px;
  height: 44px;
  transform: rotate(-5deg);
}

.article-hero-visual>small {
  position: absolute;
  right: 25px;
  bottom: 24px;
  color: #6f859b;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-hero-visual-cyan {
  background: radial-gradient(circle at 22% 18%, rgba(6, 182, 212, .33), transparent 38%), rgba(7, 34, 43, .88);
}

.article-hero-visual-violet {
  background: radial-gradient(circle at 22% 18%, rgba(124, 58, 237, .38), transparent 38%), rgba(25, 15, 48, .88);
}

.article-hero-visual-green {
  background: radial-gradient(circle at 22% 18%, rgba(16, 185, 129, .32), transparent 38%), rgba(7, 35, 30, .88);
}

.article-hero-visual-orange {
  background: radial-gradient(circle at 22% 18%, rgba(249, 115, 22, .34), transparent 38%), rgba(42, 22, 10, .88);
}

.article-hero-visual-indigo {
  background: radial-gradient(circle at 22% 18%, rgba(99, 102, 241, .38), transparent 38%), rgba(18, 21, 48, .88);
}

.article-hero-visual-rose {
  background: radial-gradient(circle at 22% 18%, rgba(244, 63, 94, .34), transparent 38%), rgba(43, 13, 23, .88);
}

.article-hero-visual-teal {
  background: radial-gradient(circle at 22% 18%, rgba(20, 184, 166, .34), transparent 38%), rgba(8, 40, 35, .88);
}

.article-layout {
  display: grid;
  grid-template-columns: 72px minmax(0, 760px) minmax(210px, 270px);
  justify-content: center;
  align-items: start;
  gap: 54px;
  padding-top: 78px;
  padding-bottom: 94px;
}

.article-share {
  position: sticky;
  top: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.article-share>span {
  margin-bottom: 5px;
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.article-share a,
.article-share button {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #dbe3ec;
  border-radius: 11px;
  color: var(--slate-600);
  background: #fff;
  cursor: pointer;
  transition: color .2s, border-color .2s, transform .2s;
}

.article-share a:hover,
.article-share button:hover,
.article-share button.is-copied {
  color: var(--blue-600);
  border-color: var(--blue-100);
  transform: translateY(-2px);
}

.article-share svg {
  width: 16px;
  height: 16px;
}

.article-content {
  min-width: 0;
}

.article-lead {
  margin: 0 0 47px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--slate-200);
  color: var(--slate-800);
  font: 570 20px/1.72 var(--font-manrope);
  letter-spacing: -.022em;
}

.article-content>section {
  scroll-margin-top: 115px;
}

.article-content>section+section {
  margin-top: 48px;
}

.article-content h2 {
  margin: 0 0 20px;
  color: var(--navy-950);
  font: 750 31px/1.22 var(--font-manrope);
  letter-spacing: -.045em;
}

.article-content section>p {
  margin: 0;
  color: #485c72;
  font-size: 15px;
  line-height: 1.85;
}

.article-content section>p+p {
  margin-top: 18px;
}

.article-content ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.article-content li {
  position: relative;
  padding-left: 31px;
  color: #485c72;
  font-size: 14px;
  line-height: 1.68;
}

.article-content li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 2px;
  width: 9px;
  height: 9px;
  border: 3px solid #bfdbfe;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 4px var(--blue-50);
}

.article-content blockquote {
  position: relative;
  margin: 34px 0 0;
  padding: 30px 33px 30px 84px;
  overflow: hidden;
  border: 1px solid #d9e6f6;
  border-radius: 21px;
  background: linear-gradient(135deg, #eff6ff, #f8fbff);
}

.article-content blockquote::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -75px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .06);
}

.article-content blockquote>svg {
  position: absolute;
  top: 31px;
  left: 31px;
  width: 28px;
  height: 28px;
  color: var(--blue-600);
}

.article-content blockquote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #1e3a5f;
  font: 670 17px/1.55 var(--font-manrope);
  letter-spacing: -.025em;
}

.article-conclusion {
  padding: 34px;
  border: 1px solid #dbe3ec;
  border-radius: 23px;
  background: #f7f9fc;
}

.article-conclusion>span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-conclusion>span svg {
  width: 15px;
  height: 15px;
}

.article-conclusion h2 {
  margin-top: 16px;
  font-size: 25px;
}

.article-author {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 25px;
  margin-top: 52px;
  padding-top: 38px;
  border-top: 1px solid var(--slate-200);
}

.article-author picture,
.article-author img {
  width: 112px;
  height: 112px;
  display: block;
  border-radius: 24px;
}

.article-author img {
  object-fit: cover;
  object-position: center 24%;
}

.article-author span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-author h2 {
  margin: 7px 0 0;
  font-size: 24px;
}

.article-author p {
  margin: 9px 0 0;
  color: var(--slate-500);
  font-size: 10px;
  line-height: 1.65;
}

.article-author a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 750;
}

.article-author a svg {
  width: 14px;
  height: 14px;
}

.article-toc {
  position: sticky;
  top: 118px;
}

.article-toc>div {
  padding: 25px 24px;
  border: 1px solid #dbe3ec;
  border-radius: 20px;
  background: #f8fafc;
}

.article-toc>div>span {
  color: var(--slate-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 0;
  margin: 17px 0 0;
  padding: 0;
  counter-reset: toc;
  list-style: none;
}

.article-toc li {
  counter-increment: toc;
  border-top: 1px solid #e5ebf2;
}

.article-toc li:first-child {
  border-top: 0;
}

.article-toc a {
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 7px;
  padding: 12px 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.48;
  transition: color .2s;
}

.article-toc a::before {
  content: "0" counter(toc);
  color: #9ab0c5;
  font-size: 10px;
  font-weight: 800;
}

.article-toc a:hover {
  color: var(--blue-600);
}

.article-toc button {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 17px;
  border: 1px solid #dbe3ec;
  border-radius: 11px;
  color: var(--slate-600);
  background: #fff;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.article-toc button svg {
  width: 14px;
  height: 14px;
}

.article-related {
  padding: 88px 0 96px;
  background: #f5f7fa;
}

.article-related header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.article-related header>a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 780;
}

.article-related header>a svg {
  width: 14px;
  height: 14px;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 35px;
}

.article-related-card {
  overflow: hidden;
  border: 1px solid #dbe3ec;
  border-radius: 22px;
  background: #fff;
}

.article-related-card .contents-card-visual {
  min-height: 195px;
}

.article-related-card .contents-card-icon {
  width: 61px;
  height: 61px;
  border-radius: 18px;
}

.article-related-card .contents-card-icon svg {
  width: 25px;
  height: 25px;
}

.article-related-card>div {
  padding: 23px 24px 25px;
}

.article-related-card h3 {
  margin: 13px 0 0;
  font: 740 18px/1.3 var(--font-manrope);
  letter-spacing: -.038em;
}

.article-related-card .content-card-link {
  margin-top: 17px;
}

.article-final-cta {
  padding: 82px 0;
  color: #fff;
  background: radial-gradient(circle at 85% 10%, rgba(37, 99, 235, .28), transparent 32%), #071321;
}

.article-final-cta .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 55px;
}

.article-final-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.article-final-cta span svg {
  width: 15px;
  height: 15px;
}

.article-final-cta h2 {
  max-width: 940px;
  margin: 16px 0 0;
  font: 750 clamp(29px, 3.5vw, 46px)/1.14 var(--font-manrope);
  letter-spacing: -.052em;
}

.article-final-cta p {
  margin: 15px 0 0;
  color: #91a3b6;
  font-size: 12px;
}

.article-final-cta .button {
  min-width: 230px;
  margin-top: 0;
  white-space: nowrap;
}

.article-not-found {
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 170px 0 90px;
  text-align: center;
  background: #f6f8fb;
}

.article-not-found .shell>span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 24px;
  color: var(--blue-600);
  background: var(--blue-50);
}

.article-not-found small {
  display: block;
  margin-top: 20px;
  color: var(--blue-600);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-not-found h1 {
  margin: 13px 0 0;
  font: 760 clamp(34px, 5vw, 58px) var(--font-manrope);
  letter-spacing: -.06em;
}

.article-not-found p {
  margin: 12px 0 0;
  color: var(--slate-500);
}

.article-not-found .button {
  margin-top: 26px;
}

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

  .article-hero-content {
    gap: 45px;
  }

  .article-layout {
    grid-template-columns: 55px minmax(0, 720px);
    gap: 35px;
  }

  .article-toc {
    display: none;
  }

  .article-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {

  .contents-hero,
  .article-hero {
    padding-top: 148px;
  }

  .contents-featured-card {
    grid-template-columns: 1fr;
  }

  .contents-featured-card .contents-card-visual {
    min-height: 320px;
  }

  .contents-newsletter-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .contents-newsletter-card .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .article-hero-content {
    grid-template-columns: 1fr;
  }

  .article-hero-visual {
    min-height: 300px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-share {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
  }

  .article-share>span {
    margin: 0 7px 0 0;
    writing-mode: initial;
    transform: none;
  }

  .article-related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-related-card:last-child {
    display: none;
  }

  .article-final-cta .shell {
    grid-template-columns: 1fr;
  }

  .article-final-cta .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .contents-hero {
    padding: 132px 0 64px;
  }

  .contents-hero-copy {
    margin-top: 34px;
  }

  .contents-hero h1 {
    font-size: 40px;
  }

  .contents-hero-copy>p {
    font-size: 14px;
  }

  .contents-search>div {
    grid-template-columns: 42px 1fr;
    padding: 6px;
  }

  .contents-search button {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .contents-library {
    padding: 68px 0 80px;
  }

  .contents-library-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .contents-featured-card .contents-card-visual {
    min-height: 250px;
  }

  .contents-featured-copy {
    padding: 29px 25px 32px;
  }

  .contents-featured-copy h2 {
    font-size: 28px;
  }

  .contents-card-grid {
    grid-template-columns: 1fr;
  }

  .content-library-card .contents-card-visual {
    min-height: 235px;
  }

  .contents-newsletter {
    padding-bottom: 70px;
  }

  .contents-newsletter-card {
    grid-template-columns: 1fr;
    padding: 29px 25px;
  }

  .contents-newsletter-icon {
    width: 55px;
    height: 55px;
  }

  .article-hero {
    padding: 132px 0 58px;
  }

  .article-hero-content {
    margin-top: 34px;
  }

  .article-hero h1 {
    font-size: 38px;
  }

  .article-hero-copy>p {
    font-size: 14px;
  }

  .article-meta-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .article-hero-visual {
    min-height: 255px;
  }

  .article-layout {
    padding-top: 54px;
    padding-bottom: 69px;
  }

  .article-lead {
    font-size: 18px;
  }

  .article-content h2 {
    font-size: 27px;
  }

  .article-content section>p {
    font-size: 14px;
  }

  .article-content blockquote {
    padding: 72px 25px 27px;
  }

  .article-content blockquote>svg {
    top: 26px;
    left: 25px;
  }

  .article-content blockquote p {
    font-size: 16px;
  }

  .article-conclusion {
    padding: 27px 24px;
  }

  .article-author {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
    gap: 17px;
  }

  .article-author picture,
  .article-author img {
    width: 82px;
    height: 82px;
    border-radius: 19px;
  }

  .article-author p,
  .article-author a {
    grid-column: 1 / -1;
  }

  .article-related {
    padding: 68px 0 75px;
  }

  .article-related header {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .article-related-card:last-child {
    display: block;
  }

  .article-final-cta {
    padding: 66px 0;
  }
}

@media print {

  .site-header,
  .site-footer,
  .article-reading-progress,
  .article-share,
  .article-toc,
  .article-related,
  .article-final-cta,
  .cookie-banner,
  .privacy-modal,
  .contact-modal,
  .cookie-settings-modal {
    display: none !important;
  }

  .article-hero {
    padding: 30px 0;
    color: #000;
    background: #fff;
  }

  .article-hero-grid,
  .article-hero-visual {
    display: none;
  }

  .article-hero-content,
  .article-layout {
    display: block;
  }

  .article-hero h1 {
    max-width: none;
    color: #000;
    font-size: 38px;
  }

  .article-hero-copy>p,
  .article-meta-line span {
    color: #444;
  }

  .article-layout {
    width: 100%;
    padding: 30px 0;
  }

  .article-content {
    max-width: none;
  }

  .article-content>section {
    break-inside: avoid;
  }
}