:root {
  --navy-950: #081526;
  --navy-900: #0d1e34;
  --navy-800: #163151;
  --orange-500: #ff6a00;
  --orange-400: #ff8a32;
  --ice-50: #f5f8fc;
  --white: #fff;
  --ink-700: #334155;
  --ink-500: #64748b;
  --line-dark: rgb(255 255 255 / 14%);
  --line-light: rgb(8 21 38 / 13%);
  --focus: #ffb273;
  --font: "Cairo", sans-serif;
  --content-max: 76rem;
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --shadow-1: 0 1rem 3rem rgb(1 10 23 / 18%);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 20rem;
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--font);
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.profile-menu {
  position: fixed;
  z-index: 22;
  top: 0.35rem;
  right: max(11.5rem, calc((100vw - 84rem) / 2 + 11.5rem));
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--white);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}
.profile-menu--hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-0.75rem);
}

/* No Blog, o acesso institucional fica em uma faixa utilitária para não cobrir a navegação principal. */
.has-utility-header .profile-menu {
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 2.35rem;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  padding-inline: max(1.25rem, calc((100vw - var(--content-max)) / 2));
  background: #f4f6f8;
  color: var(--navy-900);
}

.has-utility-header .profile-menu__trigger {
  min-height: 2.35rem;
  color: inherit;
}

.has-utility-header .profile-menu__options {
  top: calc(100% - 0.15rem);
  left: auto;
  right: max(1.25rem, calc((100vw - var(--content-max)) / 2));
}

.site-header--utility.site-header--scrolled.site-header--with-utility {
  top: 2.35rem;
}

@media (max-width: 50rem) {
  .has-utility-header .profile-menu {
    display: none;
  }

  /* O menu institucional permanece ancorado na borda direita, sem ampliar a página fora da viewport. */
  .profile-menu .profile-menu__options {
    right: 0;
    left: auto;
  }

  .site-header--utility.site-header--scrolled.site-header--with-utility {
    top: 0;
  }
}
.profile-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  min-height: 1.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
}

.profile-menu__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  min-height: 1.8rem;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.profile-menu__reforma {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  min-height: 2.25rem;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.profile-menu__reforma svg {
  width: 1.1rem;
  fill: none;
  stroke: var(--orange-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.profile-menu__contact svg {
  width: 1.15rem;
  fill: none;
  stroke: var(--orange-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.profile-menu__contact:hover,
.profile-menu__contact:focus-visible,
.profile-menu__reforma:hover,
.profile-menu__reforma:focus-visible {
  color: var(--orange-500);
}
.profile-menu__trigger svg {
  width: 1.15rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.profile-menu__trigger svg:first-child {
  color: var(--orange-400);
}
.profile-menu__trigger .profile-menu__chevron {
  width: 0.78rem;
  transition: transform 180ms ease;
}
.profile-menu.is-open .profile-menu__chevron {
  transform: rotate(180deg);
}
.profile-menu__options {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: calc(100% - 5.8rem);
  display: grid;
  width: 12.5rem;
  padding: 0.5rem;
  border-radius: 0.85rem;
  background: var(--white);
  box-shadow: 0 1.15rem 2.4rem rgb(1 10 23 / 24%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}
.profile-menu__options::before {
  position: absolute;
  top: -0.55rem;
  left: 0;
  width: 5.8rem;
  height: 0.6rem;
  content: "";
}
.profile-menu.is-open .profile-menu__options,
.profile-menu:focus-within .profile-menu__options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.profile-menu__options a {
  padding: 0.72rem 0.82rem;
  border-radius: 0.5rem;
  color: var(--navy-950);
  font-size: 0.82rem;
  font-weight: 800;
}
.profile-menu__options a:hover {
  background: var(--ice-50);
  color: var(--orange-500);
}
.site-header {
  position: fixed;
  z-index: 20;
  top: 2.75rem;
  left: 50%;
  width: min(calc(100% - 2.5rem), 84rem);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  min-height: 5.25rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgb(255 255 255 / 17%);
  border-radius: 0.7rem;
  background: linear-gradient(105deg, rgb(7 18 32 / 66%), rgb(16 36 58 / 38%));
  backdrop-filter: blur(1.35rem) saturate(145%);
  -webkit-backdrop-filter: blur(1.35rem) saturate(145%);
  box-shadow: 0 1.25rem 3.5rem rgb(0 0 0 / 16%);
  transform: translateX(-50%);
  transition:
    top 220ms ease,
    width 220ms ease,
    padding 220ms ease,
    background 180ms ease,
    border-color 180ms ease,
    border-radius 220ms ease,
    box-shadow 180ms ease;
}
.site-header--scrolled {
  top: 0;
  width: 100%;
  padding-inline: max(2.75rem, calc((100vw - 84rem) / 2 + 1.5rem));
  border: 0;
  border-bottom: 1px solid rgb(8 21 38 / 9%);
  border-radius: 0;
  background: rgb(255 255 255 / 97%);
  box-shadow: 0 0.4rem 1.8rem rgb(8 21 38 / 12%);
}

.has-prospect-modal {
  overflow: hidden;
}

.prospect-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.prospect-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.prospect-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(2 11 22 / 74%);
  backdrop-filter: blur(0.55rem);
  -webkit-backdrop-filter: blur(0.55rem);
}

.prospect-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 35rem);
  max-height: calc(100vh - 2.5rem);
  overflow: hidden;
  padding: 1.55rem 2rem 1.35rem;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1.8rem 4.5rem rgb(0 0 0 / 34%);
  color: var(--navy-950);
  transform: translateY(1rem) scale(0.985);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.prospect-modal.is-open .prospect-modal__dialog {
  transform: translateY(0) scale(1);
}

.prospect-modal__close {
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: var(--ice-50);
  color: var(--navy-950);
  cursor: pointer;
}

.prospect-modal__close svg,
.site-toast svg {
  width: 1.2rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.prospect-modal__heading {
  padding-right: 2.5rem;
}

.prospect-modal__heading h2 {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.prospect-modal__heading p {
  margin: 0.3rem 0 0;
  color: var(--ink-500);
  font-size: 0.86rem;
}

.prospect-modal__form label {
  display: block;
  margin-top: 0.65rem;
  color: var(--ink-700);
  font-size: 0.8rem;
  font-weight: 800;
}

.prospect-modal__form input:not([type="checkbox"]) {
  display: block;
  width: 100%;
  min-height: 2.65rem;
  margin-top: 0.28rem;
  border: 1px solid #d7e0ea;
  border-radius: 0.58rem;
  padding: 0.45rem 0.7rem;
  color: var(--navy-950);
}

.prospect-modal__field-label {
  display: block;
}

.prospect-modal__field-label b {
  color: var(--orange-500);
}

.prospect-modal__field-label span {
  color: var(--ink-500);
  font-weight: 600;
}

.prospect-modal__form textarea {
  display: block;
  width: 100%;
  min-height: 6.5rem;
  margin-top: 0.28rem;
  border: 1px solid #d7e0ea;
  border-radius: 0.58rem;
  padding: 0.65rem 0.7rem;
  color: var(--navy-950);
  font: inherit;
  line-height: 1.45;
  resize: vertical;
}

.prospect-modal__form input:focus,
.prospect-modal__form textarea:focus {
  border-color: var(--orange-500);
  outline: 3px solid rgb(255 106 0 / 15%);
}

.prospect-modal__field-help {
  margin: 0.3rem 0 0;
  color: var(--ink-500);
  font-size: 0.72rem;
  line-height: 1.35;
}

.prospect-modal__consent {
  display: flex !important;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--ink-500) !important;
  font-size: 0.7rem !important;
  line-height: 1.35;
}

.prospect-modal__consent input {
  width: 1rem;
  min-height: 1rem;
  margin: 0.1rem 0 0;
  accent-color: var(--orange-500);
}

.prospect-modal__form button[type="submit"] {
  width: 100%;
  min-height: 2.75rem;
  margin-top: 0.8rem;
  border: 0;
  border-radius: 0.58rem;
  background: var(--orange-500);
  color: var(--navy-950);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}

.prospect-modal__form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
}

.prospect-modal__message {
  min-height: 1rem;
  margin: 0.4rem 0 0;
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-toast-region {
  position: fixed;
  z-index: 70;
  top: 1.35rem;
  right: 1.35rem;
  display: grid;
  gap: 0.75rem;
  width: min(calc(100% - 2.5rem), 25rem);
  pointer-events: none;
}

.site-toast {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem 1rem 1rem 1.1rem;
  border: 1px solid rgb(255 138 50 / 55%);
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  box-shadow: 0 1.2rem 2.6rem rgb(1 10 23 / 32%);
  color: var(--white);
  pointer-events: auto;
  transform-origin: top right;
}

.site-toast.is-entering {
  animation: site-toast-enter 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-toast.is-leaving {
  pointer-events: none;
  animation: site-toast-leave 180ms cubic-bezier(0.4, 0, 1, 1) both;
}

@keyframes site-toast-enter {
  from {
    opacity: 0;
    transform: translateY(-1rem) scale(0.96);
  }

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

@keyframes site-toast-leave {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(-0.6rem) scale(0.98);
  }
}

.site-toast > svg {
  width: 1.4rem;
  margin-top: 0.15rem;
  color: var(--orange-400);
}

.site-toast strong,
.site-toast span {
  display: block;
}

.site-toast strong {
  font-size: 0.92rem;
}

.site-toast span {
  margin-top: 0.18rem;
  color: rgb(255 255 255 / 76%);
  font-size: 0.8rem;
  line-height: 1.45;
}

.site-toast__close {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / 72%);
  cursor: pointer;
}

.site-toast__close svg {
  width: 1rem;
}

form.is-updating {
  display: grid !important;
  min-height: 24rem;
  align-content: center;
  padding: clamp(2rem, 5vw, 4rem) !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.prospect-form__update {
  max-width: 27rem;
  color: #10243f;
}

.prospect-form__update-icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 1px solid #ffbf8a;
  border-radius: 0.8rem;
  color: #ff6a00;
}

.prospect-form__update-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.prospect-form__update h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.prospect-form__update p {
  margin: 1rem 0 0;
  color: #667d9d;
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 42rem) {
  .prospect-modal {
    align-items: end;
    padding: 0;
  }

  .prospect-modal__dialog {
    width: 100%;
    max-height: min(90vh, 47rem);
    overflow: auto;
    border-radius: 1rem 1rem 0 0;
  }

  .site-toast-region {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
  }
}
.brand {
  display: inline-flex;
  flex: none;
}
.brand img {
  display: block;
  width: 7.125rem;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  margin-inline: auto;
}
.site-nav a {
  color: rgb(255 255 255 / 80%);
  font-size: 0.9rem;
  font-weight: 700;
}
.site-nav__item {
  position: relative;
}
.site-nav__item--action {
  position: static;
}
.site-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / 80%);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
}
.site-nav__trigger svg {
  width: 1rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}
.site-nav__item:hover .site-nav__trigger,
.site-nav__trigger[aria-expanded="true"] {
  color: var(--white);
}
.site-nav__trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.mega-menu {
  position: absolute;
  top: calc(100% + 1.1rem);
  left: clamp(-13rem, -16vw, -8rem);
  display: grid;
  grid-template-columns: 15rem minmax(27rem, 1fr);
  width: min(57rem, calc(100vw - 3rem));
  padding: 1.25rem;
  border: 1px solid #e1e7ee;
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 1.25rem 3rem rgb(1 10 23 / 22%);
  color: var(--navy-950);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.45rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}
.mega-menu::before {
  position: absolute;
  top: -1.1rem;
  right: 0;
  left: 0;
  height: 1.1rem;
  content: "";
}
[data-mega-trigger][aria-expanded="true"] + .mega-menu,
.site-nav__item:hover > .mega-menu,
.mega-menu:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-menu__categories {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem;
}
.mega-menu__categories a,
.mega-menu__categories span,
.mega-menu__categories button {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: var(--ink-700);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.mega-menu__categories a:hover,
.mega-menu__categories button:hover,
.mega-menu__categories button:focus-visible,
.mega-menu__categories .is-current {
  background: var(--orange-500);
  color: var(--navy-950);
}
.mega-menu__links a {
  color: inherit;
  font-size: 0.8rem;
  font-weight: 800;
}
.mega-menu__feature {
  position: relative;
  min-height: 13rem;
  overflow: hidden;
  border-radius: 0.65rem;
  background: var(--navy-900);
  color: var(--white);
  isolation: isolate;
}
.mega-menu__feature::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    rgb(13 30 52 / 96%),
    rgb(13 30 52 / 77%) 54%,
    rgb(13 30 52 / 16%)
  );
}
.mega-menu__feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.mega-menu__feature > div {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 0.65rem;
  max-width: 31rem;
  min-height: inherit;
  padding: 1.65rem 2.25rem;
}
.mega-menu__feature span,
.blog-card span,
.explore-card span {
  color: var(--orange-400);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}
.mega-menu__feature strong {
  max-width: 25rem;
  font-size: 1.3rem;
  line-height: 1.2;
}
.mega-menu__feature p {
  max-width: 29rem;
  margin: 0;
  color: rgb(255 255 255 / 85%);
  font-size: 0.83rem;
  line-height: 1.45;
}
.mega-menu__feature a {
  color: var(--orange-400);
  font-size: 0.8rem;
  font-weight: 800;
}
.mega-menu__feature b {
  margin-left: 0.35rem;
  font-size: 1.25rem;
}
.mega-menu--solutions {
  z-index: 30;
  grid-template-columns: 14.5rem minmax(0, 1fr);
  column-gap: 1rem;
  width: min(calc(100vw - 2.5rem), 84rem);
  padding: 1.35rem;
}
.mega-menu--solutions .mega-menu__categories {
  align-self: stretch;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.7rem;
  background: var(--ice-50);
}
.mega-menu--solutions .mega-menu__categories button {
  min-height: 3.45rem;
  padding-inline: 1.15rem;
  border-radius: 0.6rem;
  color: var(--navy-950);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.mega-menu--solutions .mega-menu__categories button:hover,
.mega-menu--solutions .mega-menu__categories button:focus-visible {
  background: #fff0e6;
  color: var(--navy-950);
}
.mega-menu--solutions .mega-menu__categories button.is-current {
  background: var(--orange-500);
  box-shadow: 0 0.45rem 1.1rem rgb(255 106 0 / 20%);
  color: var(--navy-950);
}
.mega-menu--solutions .mega-menu__categories button:active {
  transform: translateY(0.05rem);
}
.mega-menu__solution-panels {
  min-width: 0;
}
.mega-menu__solution-panel {
  min-width: 0;
  display: grid;
  gap: 1.5rem;
}
.mega-menu__solution-panel[hidden] {
  display: none;
}
.mega-menu__solution-panel.is-active {
  animation: mega-menu-panel-in 200ms ease-out both;
}
.mega-menu--solutions .mega-menu__feature {
  min-height: 15.5rem;
}
.mega-menu__feature--erp img {
  object-position: center right;
}
.mega-menu__feature--sales img {
  object-position: center right;
}
.mega-menu__solution-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}
.mega-menu__solution-card {
  display: grid;
  align-content: start;
  gap: 0.35rem;
  min-height: 7.1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid #e3eaf1;
  border-radius: 0.7rem;
  background: #f9fbfd;
  color: var(--navy-950);
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.site-nav .mega-menu__solution-card,
.site-nav .mega-menu__solution-card:hover,
.site-nav .mega-menu__solution-card:focus-visible {
  /* Os cards são links dentro da navegação, mas mantêm texto escuro sobre sua superfície clara. */
  color: var(--navy-950);
}
.site-nav .mega-menu__feature a {
  color: var(--orange-500);
}
.mega-menu__solution-card:hover,
.mega-menu__solution-card:focus-visible {
  border-color: rgb(255 106 0 / 55%);
  box-shadow: 0 0.55rem 1.25rem rgb(15 23 42 / 10%);
  outline: 0;
  transform: translateY(-0.12rem);
}
.mega-menu__solution-card strong {
  font-size: 0.92rem;
  line-height: 1.2;
}
.mega-menu__solution-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.72rem;
  line-height: 1.4;
}
.mega-menu__solution-card span {
  align-self: end;
  margin-top: auto;
  color: var(--orange-500);
  font-size: 0.7rem;
  font-weight: 800;
}
.mega-menu__solution-card b {
  margin-left: 0.3rem;
  font-size: 1rem;
}
.mega-menu__feature--integracoes {
  min-height: 14rem;
}
.mega-menu__feature--integracoes > div {
  max-width: 28rem;
  padding-block: 1.85rem;
}
.mega-menu__integration-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0;
}
.mega-menu__integration-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  min-height: 7.1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid #e3eaf1;
  border-radius: 0.7rem;
  background: #f9fbfd;
  color: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.mega-menu__integration-card:hover,
.mega-menu__integration-card:focus-visible {
  border-color: rgb(255 106 0 / 55%);
  box-shadow: 0 0.55rem 1.25rem rgb(15 23 42 / 10%);
  outline: 0;
  transform: translateY(-0.12rem);
}
.mega-menu__integration-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 0.92rem;
  line-height: 1.25;
}
.mega-menu__integration-card p {
  margin: 0.55rem 0 0;
  color: var(--ink-500);
  font-size: 0.72rem;
  line-height: 1.4;
}
.mega-menu__integration-card span {
  margin-top: auto;
  color: var(--orange-500);
  font-size: 0.7rem;
  font-weight: 800;
}
.mega-menu__integration-card--all {
  background: var(--navy-950);
  color: var(--white);
}
.mega-menu__integration-card--all strong {
  color: var(--white);
  font-size: 1rem;
}
.mega-menu__integration-card--all span {
  color: var(--orange-400);
}
.mega-menu__integration-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem 0;
  color: var(--ink-500);
}
@keyframes mega-menu-panel-in {
  from {
    opacity: 0;
    transform: translateX(0.45rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mega-menu__solution-panel.is-active {
    animation: none;
  }
}
@media (min-width: 62.01rem) {
  /*
   * Soluções é o único mega menu com conteúdo editorial amplo. Ele usa a mesma
   * largura e o mesmo eixo do header, independentemente da posição do gatilho na navegação.
   */
  .mega-menu--solutions {
    position: fixed;
    top: 5.25rem;
    left: 50%;
    transform: translate(-50%, -0.45rem);
  }
  [data-mega-trigger][aria-expanded="true"] + .mega-menu--solutions,
  .site-nav__item:hover > .mega-menu--solutions,
  .mega-menu--solutions:focus-within {
    transform: translate(-50%, 0);
  }
}
.mega-menu__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0.15rem 0.15rem 0.15rem 1.1rem;
}
.mega-menu__links a {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 0.55rem;
  color: var(--navy-950);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}
.mega-menu__links a:hover,
.mega-menu__links a:focus-visible {
  /* Todas as opções do header usam a mesma superfície de interação, sem competir com o CTA laranja. */
  background: #fff0e6;
}
.mega-menu__links strong {
  font-size: 0.95rem;
}
.mega-menu__links span {
  color: var(--ink-500);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
}
.mega-menu--compact {
  grid-template-columns: 13rem minmax(31rem, 1fr);
}
.mega-menu--single {
  left: 50%;
  grid-template-columns: minmax(16rem, 1fr);
  width: min(22rem, calc(100vw - 3rem));
  transform: translate(-50%, -0.45rem);
}
.mega-menu--single .mega-menu__links {
  grid-template-columns: 1fr;
  padding: 0.15rem;
}
.mega-menu__link-with-icon {
  grid-template-columns: 1.3rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  row-gap: 0.35rem;
}
.mega-menu__link-icon {
  grid-row: 1;
  align-self: center;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  fill: none;
  stroke: var(--orange-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.mega-menu--segments {
  left: 50%;
  grid-template-columns: minmax(38rem, 1fr);
  width: min(48rem, calc(100vw - 3rem));
  transform: translate(-50%, -0.45rem);
}
.mega-menu--segments .mega-menu__links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0.15rem;
}
.mega-menu--segments .mega-menu__segment-link {
  grid-template-columns: 1.3rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  row-gap: 0.35rem;
  min-height: 7.9rem;
}
.mega-menu__link-with-icon span,
.mega-menu--segments .mega-menu__segment-link span {
  /* O texto secundário ocupa a mesma coluna do título; o ícone fica apenas na sua linha. */
  grid-column: 2;
}
.mega-menu__segment-icon {
  grid-row: 1;
  align-self: center;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  fill: none;
  stroke: var(--orange-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
[data-mega-trigger][aria-expanded="true"] + .mega-menu--single,
.site-nav__item:hover > .mega-menu--single,
.mega-menu--single:focus-within {
  transform: translate(-50%, 0);
}
[data-mega-trigger][aria-expanded="true"] + .mega-menu--segments,
.site-nav__item:hover > .mega-menu--segments,
.mega-menu--segments:focus-within {
  transform: translate(-50%, 0);
}
.mega-menu--contact {
  top: calc(100% + 1.1rem);
  right: 0;
  left: auto;
  grid-template-columns: 12rem minmax(28rem, 1fr);
  width: min(44rem, calc(100vw - 3rem));
}
.site-nav__item--action .mega-menu {
  top: calc(100% + 1.1rem);
}
.site-nav a:hover {
  color: var(--white);
}
.site-nav .mega-menu__links a {
  color: var(--navy-950);
}
.site-nav .mega-menu__links a:hover,
.site-nav .mega-menu__links a:focus-visible {
  color: var(--navy-950);
}
.site-header--scrolled .site-nav a {
  color: var(--ink-700);
}
.site-header--scrolled .site-nav a:hover {
  color: var(--navy-950);
}
.site-header--scrolled .site-nav .mega-menu__feature a,
.site-header--scrolled .site-nav .mega-menu__feature a:hover,
.site-header--scrolled .site-nav .mega-menu__feature a:focus-visible {
  color: var(--orange-500);
}
.header-action {
  margin-left: auto;
}

.mobile-nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 0.75rem;
  background: rgb(255 255 255 / 8%);
  color: var(--white);
  cursor: pointer;
}

.mobile-nav-toggle svg {
  width: 1.45rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header--scrolled .mobile-nav-toggle {
  border-color: var(--line-light);
  background: var(--ice-50);
  color: var(--navy-950);
}

.mobile-nav {
  display: none;
}
.button--header {
  min-width: 13.5rem;
  border-radius: 0.2rem;
  background: var(--orange-500);
  color: var(--navy-950);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.site-header--scrolled .site-nav__trigger {
  color: var(--ink-700);
}
.site-header--scrolled .site-nav__item:hover .site-nav__trigger,
.site-header--scrolled .site-nav__trigger[aria-expanded="true"] {
  color: var(--navy-950);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--orange-500);
  color: var(--navy-950);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}
.button:hover {
  background: var(--orange-400);
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem rgb(255 106 0 / 24%);
}
.button--ghost {
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
}
.button--ghost:hover {
  background: rgb(255 255 255 / 8%);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: clip;
  height: clamp(38rem, 43vw, 47rem);
  background: var(--navy-950);
  isolation: isolate;
}
.hero__slide {
  position: absolute;
  inset: 0 clamp(0.5rem, 1.4vw, 1.5rem);
  display: grid;
  align-items: center;
  padding: clamp(8.75rem, 9vw, 10rem) clamp(1.5rem, 5.5vw, 6.5rem)
    clamp(4.5rem, 6vw, 6rem);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: none;
  transition: opacity 650ms ease;
}
.hero__slide.is-active {
  position: absolute;
  inset: 0 clamp(0.5rem, 1.4vw, 1.5rem);
  opacity: 1;
  transform: none;
}
.hero__slide::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    var(--navy-950) 2%,
    rgb(8 21 38 / 82%) 44%,
    rgb(8 21 38 / 20%) 76%,
    var(--navy-950) 100%
  );
}
.hero__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}
.hero__inner,
.section__inner {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: inherit;
  max-width: 35rem;
  margin-left: 0;
}
.hero h1 {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(2.3rem, 3.1vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero p {
  max-width: 34rem;
  margin: 1.2rem 0 1.75rem;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.6;
}
.hero p strong {
  color: var(--orange-400);
  font-weight: 800;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.hero__dots {
  position: absolute;
  z-index: 2;
  bottom: 2.25rem;
  left: 50%;
  display: flex;
  gap: 0.45rem;
  transform: translateX(-50%);
}
.hero__dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 50%);
  cursor: pointer;
  transition:
    width 200ms ease,
    background 200ms ease;
}
.hero__dots button.is-active {
  position: relative;
  width: 2.25rem;
  overflow: hidden;
  background: rgb(255 255 255 / 38%);
}
.hero__dots button.is-active::after {
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background: var(--orange-400);
  content: "";
  animation: hero-dot-progress 6.5s linear forwards;
}
.hero.is-paused .hero__dots button.is-active::after {
  animation-play-state: paused;
}
.hero__dots button:focus-visible {
  outline: 0.18rem solid rgb(255 255 255 / 78%);
  outline-offset: 0.2rem;
}

@keyframes hero-dot-progress {
  to {
    width: 100%;
  }
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 6vw, 7rem);
}
.section--light {
  background: var(--ice-50);
  color: var(--navy-950);
}
.section--dark {
  background: var(--navy-900);
}
.section h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.section__intro {
  max-width: 44rem;
  margin: var(--space-4) 0 var(--space-12);
  color: inherit;
  opacity: 0.78;
  line-height: 1.7;
}

.solutions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: var(--space-12);
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.solution {
  display: flex;
  flex-direction: column;
  min-height: 17rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--navy-900);
  transition:
    background 220ms ease,
    transform 220ms ease;
}
.solution:hover {
  background: var(--navy-800);
  transform: translateY(-0.25rem);
}
.solution__media {
  aspect-ratio: 1.6;
  margin: 0 0 var(--space-6);
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 7%);
}
.solution__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution h3 {
  margin: 0;
  font-size: 1.35rem;
}
.solution p {
  margin: var(--space-2) 0 0;
  color: rgb(255 255 255 / 70%);
  line-height: 1.55;
}

.client-band {
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--ice-50);
  color: var(--navy-950);
}
.client-band__inner {
  width: min(100%, var(--content-max));
  padding-inline: clamp(1.25rem, 6vw, 7rem);
  margin-inline: auto;
}
.client-band h2 {
  margin: 0 0 var(--space-8);
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.client-marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}
.client-marquee__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  animation: logo-marquee 34s linear infinite;
}
.client-marquee__group {
  display: flex;
  align-items: center;
}
.client-logo {
  display: grid;
  place-items: center;
  width: clamp(9.5rem, 14vw, 13rem);
  height: 5.25rem;
  padding: var(--space-4);
  border-right: 1px solid var(--line-light);
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(1);
  opacity: 0.7;
  object-fit: contain;
  transition:
    filter 180ms ease,
    opacity 180ms ease;
}
.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.client-marquee:hover .client-marquee__track,
.client-marquee:focus-within .client-marquee__track {
  animation-play-state: paused;
}
@keyframes logo-marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes site-loading-spin {
  to {
    transform: rotate(1turn);
  }
}

.product-showcase {
  padding: clamp(2.5rem, 4vw, 4.25rem) clamp(1.25rem, 6vw, 7rem)
    clamp(4.5rem, 7vw, 7rem);
  background: var(--navy-900);
}
.site-loading {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: var(--navy-950);
}
.site-loading span {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid rgb(255 255 255 / 18%);
  border-top-color: var(--orange-500);
  border-radius: 50%;
  animation: site-loading-spin 800ms linear infinite;
}
.product-showcase__inner {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}
.client-proof {
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1.25rem, 6vw, 7rem);
  background: #111f33;
}
.client-proof__inner {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}
.client-proof h2 {
  max-width: 22ch;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
}
.client-proof__stage {
  min-height: 7.5rem;
  outline: 0;
}
.client-proof__logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  min-height: 6.5rem;
}
.client-proof__logo {
  display: grid;
  place-items: center;
  min-height: 5.5rem;
  padding: 1.25rem;
  opacity: 0.62;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}
.client-proof__logo:hover,
.client-proof__logo:focus-visible {
  opacity: 1;
  transform: translateY(-0.15rem);
}
.client-proof__logo img {
  width: 100%;
  max-width: 9rem;
  max-height: 3rem;
  object-fit: contain;
  /* Teste visual: manter as logos coloridas desde o carregamento.
  filter: grayscale(1) brightness(2.8) contrast(0.78);
  transition: filter 180ms ease;
  */
}
/* Teste visual: o hover não precisa restaurar a cor quando o filtro acima está desligado.
.client-proof__logo:hover img,
.client-proof__logo:focus-visible img {
  filter: none;
}
*/
.client-proof__controls {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  min-height: 1rem;
}
.client-proof__controls button {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 35%);
  cursor: pointer;
}
.client-proof__controls button.is-active {
  width: 1.8rem;
  border-radius: 999px;
  background: var(--orange-400);
}
.client-proof__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: fit-content;
  min-height: 2.9rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid rgb(255 138 50 / 72%);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}
.client-proof__footer {
  display: flex;
  min-height: 5.75rem;
  align-items: end;
  justify-content: center;
  padding-top: 1.5rem;
}
.client-proof__more svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}
.client-proof__more:hover {
  border-color: var(--orange-400);
  background: var(--orange-500);
  color: var(--navy-950);
  transform: translateY(-0.15rem);
}
.client-proof__more:hover svg,
.client-proof__more:focus-visible svg {
  transform: translateX(0.2rem);
}
.client-proof__logo.is-entering {
  animation: client-enter 540ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--client-delay, 0ms);
}
.client-proof__logo.is-entering.from-up {
  --x: 0;
  --y: -2rem;
}
.client-proof__logo.is-entering.from-left {
  --x: -2rem;
  --y: 0;
}
.client-proof__logo.is-entering.from-down {
  --x: 0;
  --y: 2rem;
}
.client-proof__logo.is-entering.from-right {
  --x: 2rem;
  --y: 0;
}
.client-proof__logo.is-leaving {
  animation: client-leave 400ms ease-in both;
  animation-delay: var(--client-delay, 0ms);
}
.client-proof__logo.is-leaving.to-up {
  --x: 0;
  --y: -2rem;
}
.client-proof__logo.is-leaving.to-left {
  --x: -2rem;
  --y: 0;
}
.client-proof__logo.is-leaving.to-down {
  --x: 0;
  --y: 2rem;
}
.client-proof__logo.is-leaving.to-right {
  --x: 2rem;
  --y: 0;
}
@keyframes client-enter {
  from {
    opacity: 0;
    transform: translate(var(--x), var(--y)) scale(0.94);
    filter: blur(0.35rem);
  }
  to {
    opacity: 0.72;
    transform: translate(0) scale(1);
    filter: blur(0);
  }
}
@keyframes client-leave {
  to {
    opacity: 0;
    transform: translate(var(--x), var(--y)) scale(0.94);
    filter: blur(0.35rem);
  }
}
.product-showcase__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.7fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
.product-showcase h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.product-showcase__heading p {
  max-width: 32rem;
  margin: 0;
  color: rgb(255 255 255 / 72%);
  line-height: 1.65;
}
.product-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.25vw, 1rem);
}
.product-card {
  position: relative;
  display: flex;
  min-height: clamp(24rem, 35vw, 34rem);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: var(--radius-md);
  background: #081526;
  color: var(--white);
  isolation: isolate;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}
a.product-card:hover,
a.product-card:focus-visible {
  border-color: rgb(255 138 50 / 78%);
  box-shadow: 0 1.35rem 2.75rem rgb(0 0 0 / 26%);
  outline: 0;
  transform: translateY(-0.7rem);
}
.product-card__image,
.product-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.product-card__image {
  z-index: 0;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.product-card__motion {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.product-card__motion--erp {
  inset: -35%;
  background:
    linear-gradient(
      90deg,
      transparent 43%,
      rgb(255 138 50 / 0%) 47%,
      rgb(255 177 112 / 78%) 50%,
      rgb(255 138 50 / 0%) 53%,
      transparent 57%
    ),
    radial-gradient(circle at center, rgb(255 138 50 / 25%), transparent 26%);
  mix-blend-mode: screen;
  opacity: 0.7;
  transform: translate3d(-65%, 18%, 0) rotate(-18deg);
  animation: erp-scan 3.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.product-card__motion--app {
  inset: -38%;
  border: 1px solid rgb(255 138 50 / 44%);
  border-radius: 48%;
  box-shadow:
    0 0 0 2.2rem rgb(52 172 255 / 4%),
    0 0 0 4.8rem rgb(255 106 0 / 4%);
  opacity: 0.86;
  transform: rotate(-22deg) scale(0.78);
  animation: app-orbit 7s linear infinite;
}
.product-card__shade {
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgb(8 21 38 / 30%),
    rgb(8 21 38 / 28%) 36%,
    rgb(8 21 38 / 93%) 100%
  );
  transition: background 260ms ease;
}
.product-card:hover .product-card__image,
.product-card:focus-visible .product-card__image {
  transform: scale(1.09);
}
.product-card:hover .product-card__shade,
.product-card:focus-visible .product-card__shade {
  background: linear-gradient(
    180deg,
    rgb(8 21 38 / 20%),
    rgb(8 21 38 / 20%) 26%,
    rgb(8 21 38 / 95%) 100%
  );
}
.product-card__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding: clamp(1.25rem, 2vw, 1.7rem);
}
.product-card__content > span {
  margin-bottom: 0.8rem;
  color: var(--orange-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.product-card__content > strong {
  max-width: 12ch;
  font-size: clamp(1.3rem, 1.65vw, 1.75rem);
  line-height: 1.16;
}
.product-card__detail {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 260ms ease,
    opacity 200ms ease;
}
.product-card__detail > * {
  overflow: hidden;
}
.product-card:hover .product-card__detail,
.product-card:focus-visible .product-card__detail {
  grid-template-rows: 1fr;
  opacity: 1;
}
.product-card__detail p {
  margin: 0.85rem 0 0;
  color: rgb(255 255 255 / 78%);
  font-size: 0.85rem;
  line-height: 1.5;
}
.product-card__detail em {
  display: block;
  margin-top: 1rem;
  color: var(--orange-400);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
}
.product-card__detail b {
  margin-left: 0.3rem;
  font-size: 1.15rem;
}
.product-card--erp .product-card__image {
  animation: erp-field 4.2s ease-in-out infinite alternate;
  object-position: 58% center;
}
.product-card--app .product-card__image {
  object-position: center;
  animation: app-field 9s ease-in-out infinite alternate;
}
.product-card--app:hover .product-card__image,
.product-card--app:focus-visible .product-card__image {
  animation-play-state: paused;
  transform: scale(1.14) translate3d(-2%, -2%, 0);
}
.product-card--bi .product-card__image {
  object-position: center 36%;
}
.product-card__motion--bi {
  top: 15%;
  right: 17%;
  width: 0.28rem;
  height: 5.8rem;
  background: rgb(255 138 50 / 90%);
  box-shadow: 0 0 1.2rem rgb(255 138 50 / 58%);
  opacity: 0.38;
  transform: scaleY(0.35);
  transform-origin: bottom;
  animation: bi-columns 3.9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.product-card__motion--bi::before,
.product-card__motion--bi::after {
  position: absolute;
  content: "";
}
.product-card__motion--bi::before {
  right: 1.5rem;
  bottom: 0;
  width: 0.28rem;
  height: 3.65rem;
  background: rgb(255 177 112 / 92%);
  box-shadow: 0 0 1rem rgb(255 138 50 / 52%);
}
.product-card__motion--bi::after {
  top: auto;
  bottom: 0;
  right: -1.5rem;
  left: auto;
  width: 0.28rem;
  height: 7.15rem;
  background: var(--orange-400);
  box-shadow: 0 0 1rem rgb(255 138 50 / 52%);
}
.product-card--crm .product-card__image {
  object-position: center 25%;
}
.product-card__motion--crm {
  top: 20%;
  left: 10%;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: var(--orange-400);
  box-shadow:
    3.35rem -1rem 0 rgb(255 177 112 / 96%),
    6.45rem 1.7rem 0 rgb(255 138 50 / 88%),
    9.1rem -0.15rem 0 rgb(255 177 112 / 82%);
  opacity: 0.28;
  transform: scale(0.72);
  transform-origin: left center;
  animation: crm-network 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.product-card__motion--crm::before,
.product-card__motion--crm::after {
  position: absolute;
  left: 0.35rem;
  width: 3.5rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgb(255 138 50 / 88%),
    rgb(255 177 112 / 34%),
    transparent
  );
  content: "";
  transform-origin: left center;
}

.product-card__motion--crm::before {
  top: 0.18rem;
  transform: rotate(-17deg) scaleX(0.18);
  animation: crm-link-one 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.product-card__motion--crm::after {
  top: -0.52rem;
  left: 3.65rem;
  width: 3.7rem;
  transform: rotate(33deg) scaleX(0.18);
  animation: crm-link-two 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.product-card--future {
  justify-content: flex-end;
  background: linear-gradient(145deg, #0c1b2e, #081526);
}
.product-card--future .product-card__content {
  justify-content: flex-end;
}
.product-card--future .product-card__content > span {
  color: rgb(255 255 255 / 46%);
}
.product-card--future .product-card__content > strong {
  color: rgb(255 255 255 / 74%);
}
.product-card--future .product-card__detail {
  grid-template-rows: 1fr;
  opacity: 1;
}
.product-card--future .product-card__detail p {
  color: rgb(255 255 255 / 48%);
}
.product-card__future-orbit {
  position: absolute;
  top: 19%;
  left: 50%;
  width: 10.5rem;
  height: 10.5rem;
  border: 1px solid rgb(255 138 50 / 28%);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.75rem rgb(255 138 50 / 3%),
    0 0 0 5.5rem rgb(255 138 50 / 2%);
  opacity: 0.76;
  transform: translateX(-50%);
}
.product-card__future-orbit::after {
  position: absolute;
  top: -0.3rem;
  left: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange-500);
  content: "";
  transform: translateX(-50%);
}
@keyframes erp-field {
  from {
    transform: scale(1.06) translate3d(-4%, 2%, 0);
  }
  to {
    transform: scale(1.18) translate3d(4%, -3%, 0);
  }
}
@keyframes erp-scan {
  0%,
  18% {
    opacity: 0;
    transform: translate3d(-65%, 18%, 0) rotate(-18deg);
  }
  48%,
  62% {
    opacity: 0.82;
  }
  86%,
  100% {
    opacity: 0;
    transform: translate3d(65%, -18%, 0) rotate(-18deg);
  }
}
@keyframes app-field {
  from {
    transform: scale(1.03) translate3d(-2%, 2%, 0) rotate(-1deg);
  }
  to {
    transform: scale(1.13) translate3d(2%, -2%, 0) rotate(1deg);
  }
}
@keyframes app-orbit {
  to {
    transform: rotate(338deg) scale(0.78);
  }
}
@keyframes bi-columns {
  0%,
  18% {
    opacity: 0.22;
    transform: scaleY(0.32);
  }
  48% {
    opacity: 1;
    transform: scaleY(1);
  }
  72% {
    opacity: 0.58;
    transform: scaleY(0.64);
  }
  100% {
    opacity: 0.22;
    transform: scaleY(0.32);
  }
}
@keyframes crm-network {
  0%,
  18% {
    opacity: 0.2;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  76% {
    opacity: 0.5;
    transform: scale(0.88);
  }
  100% {
    opacity: 0.2;
    transform: scale(0.7);
  }
}
@keyframes crm-link-one {
  0%,
  22% {
    opacity: 0;
    transform: rotate(-17deg) scaleX(0.18);
  }
  48%,
  68% {
    opacity: 1;
    transform: rotate(-17deg) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: rotate(-17deg) scaleX(0.18);
  }
}
@keyframes crm-link-two {
  0%,
  34% {
    opacity: 0;
    transform: rotate(33deg) scaleX(0.18);
  }
  60%,
  78% {
    opacity: 1;
    transform: rotate(33deg) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: rotate(33deg) scaleX(0.18);
  }
}

.explore,
.segments,
.content-preview {
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 6vw, 7rem);
}
.explore {
  background: #0d1e34;
}
.explore__inner,
.segments__inner,
.content-preview__inner {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}
.explore__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.7fr);
  gap: 3rem;
  align-items: end;
}
.explore h2,
.segments h2,
.content-preview h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.9rem, 3.3vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.explore__heading p,
.segments p,
.content-preview p {
  margin: 0;
  color: rgb(255 255 255 / 72%);
  line-height: 1.65;
}
.explore__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2.25rem;
}
.explore-card {
  display: flex;
  flex-direction: column;
  min-height: 17rem;
  padding: 1.5rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 3%);
  transition:
    background 180ms ease,
    transform 180ms ease;
}
.explore-card:hover {
  background: #163151;
  transform: translateY(-0.25rem);
}
.explore-card strong {
  margin-top: auto;
  font-size: 1.3rem;
}
.explore-card p {
  margin: 0.65rem 0 1.5rem;
  color: rgb(255 255 255 / 68%);
  font-size: 0.9rem;
  line-height: 1.55;
}
.explore-card em {
  color: var(--orange-400);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}
.segments {
  background: var(--ice-50);
  color: var(--navy-950);
}
.segments__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.7fr);
  gap: 3rem;
  align-items: center;
}
.segments p {
  max-width: 34rem;
  margin-top: 1rem;
  color: var(--ink-500);
}
.segments__list {
  display: grid;
  border-top: 1px solid #d8e0ea;
}
.segments__list a {
  display: flex;
  align-items: center;
  min-height: 3.75rem;
  border-bottom: 1px solid #d8e0ea;
  color: var(--ink-700);
  font-weight: 800;
}

.why-dogo {
  --why-dogo-progress: 0;
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 0;
  background: var(--ice-50);
  color: var(--white);
}
.why-dogo__scroll {
  min-height: 430vh;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 6vw, 7rem);
}
.why-dogo__scene {
  position: sticky;
  top: max(1.5rem, 7vh);
  display: grid;
  width: min(100%, var(--content-max));
  min-height: min(44rem, 83vh);
  margin-inline: auto;
  padding: clamp(2rem, 4.5vw, 4.5rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  box-shadow: 0 2rem 5rem rgb(8 21 38 / 24%);
  isolation: isolate;
  transform: translateY(calc((1 - var(--why-dogo-progress)) * 8rem))
    scale(calc(0.95 + var(--why-dogo-progress) * 0.05));
  transform-origin: center bottom;
  transition: transform 80ms linear;
}
.why-dogo__scene::before,
.why-dogo__scene::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.why-dogo__scene::before {
  top: -16rem;
  right: -11rem;
  width: 37rem;
  height: 37rem;
  border: 1px solid rgb(255 138 50 / 25%);
  box-shadow:
    0 0 0 4.5rem rgb(255 106 0 / 3%),
    0 0 0 9rem rgb(255 106 0 / 2%);
}
.why-dogo__scene::after {
  right: 8%;
  bottom: -16rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgb(0 188 218 / 16%);
}
.why-dogo__intro {
  display: grid;
  grid-template-columns: auto minmax(0, 20rem);
  align-items: center;
  gap: 1.2rem;
  width: fit-content;
}
.why-dogo__logo {
  display: block;
  width: clamp(5.5rem, 8vw, 7.25rem);
  height: auto;
}
.why-dogo__intro p {
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 0.82rem;
  line-height: 1.5;
}
.why-dogo__content {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(20rem, 0.9fr) minmax(
      13rem,
      0.6fr
    );
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: center;
  min-height: 33rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1.5rem);
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}
.why-dogo__scene.is-ready .why-dogo__content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.why-dogo__copy {
  position: relative;
  z-index: 2;
  max-width: 31rem;
}
.why-dogo__step {
  margin: 0 0 1rem;
  color: var(--orange-400);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.why-dogo__copy h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.2rem, 3.35vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.why-dogo__copy > p:last-child {
  max-width: 33rem;
  margin: 1.35rem 0 0;
  color: rgb(255 255 255 / 76%);
  line-height: 1.7;
}
.why-dogo__mascot {
  position: relative;
  align-self: stretch;
  min-height: 29rem;
  overflow: hidden;
  border-radius: 1.25rem;
  background: linear-gradient(140deg, rgb(255 255 255 / 7%), transparent 66%);
}
.why-dogo__mascot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0;
  transform: translateY(1rem) scale(0.96);
  animation: why-dogo-mascot-idle 4.2s ease-in-out infinite;
  transition:
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}
.why-dogo__mascot img.is-current {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.why-dogo__signal {
  position: absolute;
  border: 1px solid rgb(255 138 50 / 48%);
  border-radius: 50%;
  pointer-events: none;
}
.why-dogo__signal--one {
  top: 18%;
  left: 9%;
  width: 5rem;
  height: 5rem;
  animation: why-dogo-signal 3.2s ease-out infinite;
}
.why-dogo__signal--two {
  top: 25%;
  left: 19%;
  width: 2.8rem;
  height: 2.8rem;
  animation: why-dogo-signal 3.2s 700ms ease-out infinite;
}
.why-dogo__pillars {
  display: grid;
  gap: 0.5rem;
  align-content: center;
}
.why-dogo__pillars button {
  width: 100%;
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  background: transparent;
  color: rgb(255 255 255 / 56%);
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  transition:
    color 180ms ease,
    padding 180ms ease;
}
.why-dogo__pillars button:hover,
.why-dogo__pillars button:focus-visible,
.why-dogo__pillars button.is-current {
  padding-left: 0.7rem;
  color: var(--white);
  outline: none;
}
.why-dogo__pillars button.is-current {
  border-bottom-color: var(--orange-400);
}
.why-dogo__hint {
  align-self: end;
  margin: 0;
  color: rgb(255 255 255 / 46%);
  font-size: 0.75rem;
}
.why-dogo__scene.is-changing .why-dogo__copy,
.why-dogo__scene.is-changing .why-dogo__mascot {
  animation: why-dogo-change 440ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes why-dogo-mascot-idle {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-0.75rem) scale(1.015);
  }
}
@keyframes why-dogo-signal {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  35% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}
@keyframes why-dogo-change {
  from {
    opacity: 0.28;
    transform: translateY(0.7rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fiscal-responsibility {
  padding: clamp(4rem, 7vw, 6rem) clamp(1.25rem, 6vw, 7rem);
  background: var(--white);
  color: var(--navy-900);
}
.fiscal-responsibility__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  width: min(100%, var(--content-max));
  margin-inline: auto;
}
.fiscal-responsibility__intro {
  max-width: 34rem;
}
.fiscal-responsibility__label {
  margin: 0 0 1rem;
  color: var(--orange-400);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fiscal-responsibility h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.fiscal-responsibility__intro > p:last-child {
  margin: 1.35rem 0 0;
  color: var(--ink-700);
  line-height: 1.7;
}
.fiscal-responsibility__totals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}
.fiscal-responsibility__data {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.75rem);
}
.fiscal-responsibility__totals div {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-light);
}
.fiscal-responsibility__totals dt {
  color: var(--ink-700);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}
.fiscal-responsibility__totals dd {
  margin: 0.4rem 0 0;
  color: var(--orange-400);
  font-size: clamp(1.2rem, 1.7vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.fiscal-responsibility__chart {
  margin: 0;
}
.fiscal-responsibility__chart figcaption {
  margin-bottom: 1.15rem;
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 800;
}
.fiscal-responsibility__plot {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  min-height: clamp(10rem, 15vw, 13rem);
  gap: clamp(0.5rem, 1.2vw, 0.9rem);
  padding: 0.6rem 0 0;
  border-bottom: 1px solid var(--line-light);
}
.fiscal-responsibility__bar {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.6rem;
  min-width: 0;
  align-items: end;
}
.fiscal-responsibility__bar-value {
  color: var(--ink-700);
  font-size: clamp(0.62rem, 1.1vw, 0.8rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  text-align: center;
}
.fiscal-responsibility__bar-fill {
  display: block;
  width: 100%;
  height: var(--fiscal-bar-height);
  min-height: 0.5rem;
  align-self: end;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: var(--orange-500);
  transform: scaleY(1);
  transform-origin: bottom;
}
.fiscal-responsibility__bar--partial .fiscal-responsibility__bar-fill {
  background: var(--orange-400);
}
.fiscal-responsibility__bar-year {
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.fiscal-responsibility__note,
.fiscal-responsibility__closing {
  color: var(--ink-700);
  line-height: 1.6;
}
.fiscal-responsibility__note {
  margin: 1rem 0 0;
  font-size: 0.78rem;
}
.fiscal-responsibility__closing {
  max-width: 34rem;
  margin: 2rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
}
.fiscal-responsibility.is-pending .fiscal-responsibility__bar-fill {
  transform: scaleY(0);
}
.fiscal-responsibility.is-animated .fiscal-responsibility__bar-fill {
  transform: scaleY(1);
  transition: transform 760ms var(--fiscal-delay) cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-preview {
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 7rem);
  background: var(--white);
  color: var(--navy-900);
}
.blog-preview__heading,
.blog-preview__empty,
.blog-preview__carousel {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}
.blog-preview__heading,
.blog-preview__empty {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}
.blog-preview h2 {
  max-width: 20ch;
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.blog-preview__heading p {
  margin: 0.6rem 0 0;
  color: var(--ink-500);
  font-size: 1rem;
}
.blog-preview__link {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 0.65rem;
  color: var(--orange-500);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}
.blog-preview__link span {
  transition: transform 220ms ease;
}
.blog-preview__link:hover span,
.blog-preview__link:focus-visible span {
  transform: translateX(0.35rem);
}
.blog-preview__link:focus-visible,
.blog-preview__control:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 5px;
}
.blog-preview__carousel {
  position: relative;
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) 3.25rem;
  align-items: center;
  gap: 1.25rem;
  min-height: clamp(22rem, 35vw, 31rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.blog-preview__viewport {
  position: relative;
  min-height: inherit;
  overflow: visible;
}
.blog-preview__track {
  position: relative;
  height: 100%;
  min-height: inherit;
}
.blog-preview__article {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-950);
  color: var(--navy-900);
  text-decoration: none;
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 420ms ease;
}
.blog-preview__article img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 320ms ease;
}
.blog-preview__article::after {
  position: absolute;
  inset: 0;
  background: rgb(8 21 38 / 16%);
  content: "";
}
.blog-preview__article-content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(1.25rem, 4vw, 4rem);
  width: min(21rem, calc(100% - 2.5rem));
  padding: clamp(1.25rem, 2.4vw, 2rem);
  border-radius: 0.75rem;
  background: var(--white);
  box-shadow: 0 1.2rem 3.2rem rgb(8 21 38 / 18%);
  transform: translateY(-50%);
}
.blog-preview__article h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.35;
}
.blog-preview__article p {
  display: -webkit-box;
  margin: 0.85rem 0 0;
  overflow: hidden;
  color: var(--ink-500);
  font-size: 0.92rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.blog-preview__article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  color: var(--orange-500);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.blog-preview__article-link svg,
.blog-preview__control svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.blog-preview__control {
  z-index: 3;
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(8 21 38 / 18%);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}
.blog-preview__control:hover:not(:disabled),
.blog-preview__control:focus-visible {
  background: var(--orange-500);
  color: var(--navy-950);
  outline: 0;
  transform: scale(1.06);
}
.blog-preview__control:disabled {
  cursor: default;
  opacity: 0.35;
}
.blog-preview__article.is-current {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}
.blog-preview__article.is-current:hover img,
.blog-preview__article.is-current:focus-visible img {
  transform: scale(1.035);
}
.blog-preview__article.is-current:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 0.35rem;
}
.blog-preview__article.is-previous,
.blog-preview__article.is-next {
  z-index: 1;
  top: 10%;
  bottom: 10%;
  width: 30%;
  opacity: 0.48;
  filter: saturate(0.72);
  pointer-events: none;
}
.blog-preview__article.is-previous {
  right: auto;
  left: -18%;
  transform: translateX(-8%);
}
.blog-preview__article.is-next {
  right: -18%;
  left: auto;
  transform: translateX(8%);
}
.blog-preview__article.is-previous .blog-preview__article-content,
.blog-preview__article.is-next .blog-preview__article-content {
  top: auto;
  bottom: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  padding: 0.9rem;
  transform: none;
}
.blog-preview__article.is-previous p,
.blog-preview__article.is-next p,
.blog-preview__article.is-previous .blog-preview__article-link,
.blog-preview__article.is-next .blog-preview__article-link {
  display: none;
}
.blog-preview__article.is-previous h3,
.blog-preview__article.is-next h3 {
  font-size: 0.84rem;
  line-height: 1.3;
}
.blog-preview__article.is-hidden {
  visibility: hidden;
  opacity: 0;
}
.blog-preview__empty {
  min-height: 19rem;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgb(8 21 38 / 12%);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1.25rem 3rem rgb(8 21 38 / 8%);
}
.blog-preview__empty p {
  max-width: 37rem;
  margin: 1rem 0 0;
  color: var(--ink-500);
  line-height: 1.65;
}

.site-footer {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 6vw, 7rem) 1.5rem;
  background: var(--navy-950);
  color: var(--white);
}
.site-footer__inner,
.site-footer__legal {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}
.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(2rem, 8vw, 8rem);
  min-height: 9rem;
}
.site-footer__brand {
  display: inline-flex;
  flex: none;
  padding-top: 0.25rem;
}
.site-footer__brand img {
  display: block;
  width: 8.3rem;
  height: auto;
}
.site-footer__details {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(2rem, 6vw, 6rem);
  margin-left: auto;
}
.site-footer address {
  margin: 0;
  color: rgb(255 255 255 / 69%);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.7;
  text-align: right;
}
.site-footer__actions {
  display: grid;
  justify-items: end;
  gap: 1.1rem;
}
.site-footer__specialist {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.35rem;
  border: 0;
  border-bottom: 1px solid rgb(255 138 50 / 62%);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}
.site-footer__specialist span {
  color: var(--orange-400);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 180ms ease;
}
.site-footer__specialist:hover {
  border-color: var(--orange-400);
  color: var(--orange-400);
}
.site-footer__specialist:hover span {
  transform: translateX(0.2rem);
}
.site-footer__socials {
  display: flex;
  gap: 0.6rem;
}
.site-footer__socials a {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: rgb(255 255 255 / 83%);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}
.site-footer__socials a:hover {
  border-color: var(--orange-400);
  color: var(--orange-400);
  transform: translateY(-0.15rem);
}
.site-footer__socials svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}
.site-footer__legal {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}
.site-footer__legal p {
  margin: 0;
  color: rgb(255 255 255 / 44%);
  font-size: 0.73rem;
  line-height: 1.5;
}

.mascot-cta {
  position: fixed;
  z-index: 15;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 20rem;
  padding: 0.55rem 0.75rem 0.55rem 0.55rem;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 999px;
  background: rgb(13 30 52 / 94%);
  box-shadow: var(--shadow-1);
  color: var(--white);
  cursor: pointer;
}
.mascot-cta img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: 28% 20%;
}
.mascot-cta span {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.whatsapp-widget {
  position: fixed;
  z-index: 25;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.whatsapp-widget__launcher {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0.85rem 2rem rgb(2 36 22 / 30%);
  color: var(--white);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.whatsapp-widget__launcher:hover,
.whatsapp-widget__launcher:focus-visible {
  background: #1eba59;
  transform: translateY(-0.2rem) scale(1.04);
}

.whatsapp-widget__icon {
  width: 2.45rem;
  height: 2.45rem;
  fill: currentcolor;
}

.whatsapp-widget__prompt {
  position: absolute;
  right: calc(100% + 0.7rem);
  width: max-content;
  max-width: min(15rem, calc(100vw - 7rem));
  min-height: 2.9rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 0.75rem;
  background: var(--white);
  box-shadow: 0 0.8rem 1.8rem rgb(1 10 23 / 22%);
  color: var(--navy-950);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0.65rem);
  transition:
    opacity 220ms ease,
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-widget__prompt::after {
  position: absolute;
  top: 50%;
  right: -0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--white);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.whatsapp-widget__prompt.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 1rem);
  width: min(23rem, calc(100vw - 2rem));
  overflow: hidden;
  border-radius: 1rem;
  background: #f5f7f6;
  box-shadow: 0 1.35rem 3.75rem rgb(1 10 23 / 32%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.85rem) scale(0.97);
  transform-origin: right bottom;
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.whatsapp-panel__header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 5.25rem;
  padding: 0.8rem 0.9rem;
  background: #1caa54;
  color: var(--white);
}

.whatsapp-panel__header-icon {
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.45rem;
  border-radius: 50%;
  background: rgb(255 255 255 / 16%);
  fill: currentcolor;
}

.whatsapp-panel__header div {
  display: grid;
  gap: 0.05rem;
}

.whatsapp-panel__header strong {
  font-size: 0.96rem;
}

.whatsapp-panel__header span {
  color: rgb(255 255 255 / 78%);
  font-size: 0.72rem;
}

.whatsapp-panel__close {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.whatsapp-panel__conversation {
  display: grid;
  gap: 1rem;
  min-height: 16rem;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 15% 20%, rgb(37 211 102 / 7%), transparent 9rem),
    #f7f8f7;
}

.whatsapp-panel__message {
  width: fit-content;
  max-width: 85%;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem 0.9rem 0.9rem 0.2rem;
  background: var(--white);
  box-shadow: 0 0.35rem 1rem rgb(8 21 38 / 9%);
  color: #21324a;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.whatsapp-panel__start,
.whatsapp-panel__choice-list a,
.whatsapp-panel__choice-list button {
  width: fit-content;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  border: 0;
  border-radius: 999px;
  background: #25ad5a;
  box-shadow: 0 0.55rem 1.1rem rgb(18 133 66 / 20%);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
}

.whatsapp-panel__start {
  justify-self: end;
  border-radius: 1rem 1rem 0.2rem;
}

.whatsapp-panel__start.is-sent {
  cursor: default;
  opacity: 1;
}

.whatsapp-panel__start:disabled {
  color: var(--white);
}

.whatsapp-panel__start span {
  margin-left: 0.25rem;
  font-size: 1.05rem;
}

.whatsapp-panel__choices {
  display: grid;
  gap: 1rem;
  animation: whatsapp-choice-enter 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.whatsapp-panel__choices[hidden] {
  display: none;
}

.whatsapp-panel__conversation::after {
  display: none;
  width: fit-content;
  padding: 0.78rem 0.95rem;
  border-radius: 0.9rem 0.9rem 0.9rem 0.2rem;
  background: var(--white);
  box-shadow: 0 0.35rem 1rem rgb(8 21 38 / 9%);
  color: #60738a;
  content: "● ● ●";
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  animation: whatsapp-typing 900ms ease-in-out infinite;
}

.whatsapp-panel.is-typing .whatsapp-panel__conversation::after {
  display: block;
}

.whatsapp-panel__choice-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.whatsapp-panel__choice-list a,
.whatsapp-panel__choice-list button {
  display: inline-flex;
  align-items: center;
  text-align: center;
}

.whatsapp-panel__pending {
  margin: 0;
  color: #63738a;
  font-size: 0.78rem;
  line-height: 1.45;
}

.whatsapp-panel__choice-list button.is-selected {
  background: #1c9650;
  box-shadow: none;
  cursor: wait;
  opacity: 1;
}

.whatsapp-panel__redirect {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 0.9rem 0.9rem 0.9rem 0.2rem;
  background: var(--white);
  box-shadow: 0 0.35rem 1rem rgb(8 21 38 / 9%);
  color: #21324a;
  animation: whatsapp-choice-enter 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.whatsapp-panel__redirect[hidden] {
  display: none;
}

.whatsapp-panel__redirect-timer {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: #173d2a;
  font-size: 0.9rem;
  font-weight: 800;
}

.whatsapp-panel__redirect-timer svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.whatsapp-panel__redirect-timer circle {
  fill: none;
  stroke-width: 3;
}

.whatsapp-panel__redirect-track {
  stroke: #d9e4dc;
}

.whatsapp-panel__redirect-progress {
  stroke: #25ad5a;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  stroke-linecap: round;
}

.whatsapp-panel__redirect-timer.is-counting .whatsapp-panel__redirect-progress {
  animation: whatsapp-redirect-countdown 5s linear forwards;
}

.whatsapp-panel__redirect-timer > span {
  position: relative;
}

.whatsapp-panel__redirect p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.whatsapp-panel__redirect button {
  margin-top: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #167a42;
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.16rem;
}

.whatsapp-panel__redirect button:hover,
.whatsapp-panel__redirect button:focus-visible {
  color: #0d5b2f;
}

@keyframes whatsapp-choice-enter {
  from {
    opacity: 0;
    transform: translateY(0.45rem);
  }

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

@keyframes whatsapp-typing {
  50% {
    opacity: 0.38;
    transform: translateY(-0.08rem);
  }
}

@keyframes whatsapp-redirect-countdown {
  to {
    stroke-dashoffset: 100;
  }
}

@media (max-width: 62rem) {
  .profile-menu {
    display: none;
  }

  .profile-menu {
    top: 0.28rem;
    right: 1rem;
  }
  .site-header {
    top: 2.25rem;
    width: calc(100% - 1.5rem);
  }
  .site-nav {
    display: none;
  }
  .site-header {
    justify-content: space-between;
  }
  .header-action {
    display: none;
  }
  .mobile-nav-toggle {
    display: grid;
    margin-left: auto;
  }
  .has-mobile-nav-open {
    overflow: hidden;
  }
  .mobile-nav {
    position: fixed;
    z-index: 70;
    inset: 0;
    display: block;
    contain: paint;
    /* O painel fechado fica fora da composição, sem criar uma área rolável horizontal. */
    overflow: clip;
    pointer-events: none;
    visibility: hidden;
  }
  .mobile-nav.is-open {
    pointer-events: auto;
    visibility: visible;
  }
  .mobile-nav:not(.is-open) .mobile-nav__panel {
    display: none;
  }
  .mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgb(2 11 22 / 68%);
    opacity: 0;
    cursor: pointer;
    transition: opacity 220ms ease;
  }
  .mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: min(25rem, calc(100vw - 2.25rem));
    min-height: 100%;
    flex-direction: column;
    overflow-y: auto;
    padding: max(1.4rem, env(safe-area-inset-top)) 1.4rem
      max(1.4rem, env(safe-area-inset-bottom));
    background: var(--navy-950);
    box-shadow: -1rem 0 3rem rgb(0 0 0 / 25%);
    color: var(--white);
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mobile-nav.is-open .mobile-nav__backdrop {
    opacity: 1;
  }
  .mobile-nav.is-open .mobile-nav__panel {
    transform: translateX(0);
  }
  .mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .mobile-nav__header img {
    display: block;
    width: 7rem;
    height: auto;
  }
  .mobile-nav__close {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line-dark);
    border-radius: 0.75rem;
    background: rgb(255 255 255 / 7%);
    color: var(--white);
    cursor: pointer;
  }
  .mobile-nav__close svg,
  .mobile-nav__specialist svg,
  .mobile-nav__links svg {
    width: 1.2rem;
    flex: none;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }
  .mobile-nav h2 {
    margin: 2.4rem 0 1rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .mobile-nav__links {
    display: grid;
    border-top: 1px solid var(--line-dark);
  }
  .mobile-nav__group {
    border-bottom: 1px solid var(--line-dark);
  }
  .mobile-nav__group summary {
    display: flex;
    min-height: 3.15rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgb(255 255 255 / 82%);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    list-style: none;
  }
  .mobile-nav__group summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav__group summary svg {
    width: 1rem;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 180ms ease;
  }
  .mobile-nav__group[open] summary {
    color: var(--orange-400);
  }
  .mobile-nav__group[open] summary svg {
    transform: rotate(180deg);
  }
  .mobile-nav__links a {
    display: flex;
    min-height: 3.15rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line-dark);
    color: rgb(255 255 255 / 82%);
    font-size: 1rem;
    font-weight: 700;
  }
  .mobile-nav__group a {
    min-height: 2.75rem;
    padding-left: 1rem;
    color: rgb(255 255 255 / 68%);
    font-size: 0.9rem;
  }
  .mobile-nav__group-label {
    display: block;
    padding: 1.25rem 1rem 0.35rem;
    color: rgb(255 255 255 / 46%);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .mobile-nav__links a:hover,
  .mobile-nav__links a:focus-visible {
    color: var(--orange-400);
  }
  .mobile-nav__institutional {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
    padding-top: 1.25rem;
  }
  .mobile-nav__institutional a {
    color: rgb(255 255 255 / 65%);
    font-size: 0.78rem;
    font-weight: 700;
  }
  .mobile-nav__institutional a:hover,
  .mobile-nav__institutional a:focus-visible {
    color: var(--orange-400);
  }
  .mobile-nav__specialist {
    display: inline-flex;
    width: 100%;
    min-height: 3.45rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: auto;
    border: 0;
    border-radius: 999px;
    background: var(--orange-500);
    color: var(--navy-950);
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .mobile-nav__specialist:hover,
  .mobile-nav__specialist:focus-visible {
    background: var(--orange-400);
  }
  .solutions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero {
    height: 38rem;
  }
  .explore__heading,
  .product-showcase__heading,
  .segments__inner,
  .content-preview__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .product-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fiscal-responsibility__inner {
    grid-template-columns: 1fr;
  }
  .fiscal-responsibility__intro {
    max-width: 38rem;
  }
  .why-dogo__scroll {
    min-height: auto;
    padding-inline: 1.25rem;
  }
  .why-dogo__scene {
    position: relative;
    top: auto;
    min-height: 0;
    transform: none;
  }
  .why-dogo__content {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .why-dogo__copy h2 {
    max-width: 16ch;
  }
  .why-dogo__mascot {
    min-height: 24rem;
  }
  .why-dogo__mascot img {
    width: 100%;
  }
  .why-dogo__pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1.25rem;
  }
}
@media (max-width: 38rem) {
  .client-proof__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .site-header {
    min-height: 4.5rem;
    padding-inline: 1rem;
  }
  .site-header--scrolled {
    top: 0;
    width: 100%;
  }
  .brand img {
    width: 6.25rem;
  }
  .header-action .button {
    min-height: 2.75rem;
    padding-inline: 0.9rem;
    font-size: 0.8rem;
  }
  .button--header {
    min-width: auto;
    font-size: 0.68rem;
    letter-spacing: 0.015em;
  }
  .site-nav__item--action {
    position: relative;
  }
  .site-nav__item--action .mega-menu {
    position: fixed;
    top: 5.25rem;
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    grid-template-columns: 1fr;
  }
  .mega-menu--contact .mega-menu__categories {
    display: none;
  }
  .mega-menu--contact .mega-menu__links {
    grid-template-columns: 1fr;
    padding: 0.15rem;
  }
  .hero {
    height: 39rem;
  }
  /* Os assets reservam a esquerda para a cópia desktop; no recorte vertical, o foco à direita traz o assunto para o centro. */
  .hero__image {
    object-position: 90% center;
  }
  .hero__slide::before {
    background: linear-gradient(
      180deg,
      rgb(8 21 38 / 6%) 0%,
      rgb(8 21 38 / 18%) 34%,
      rgb(8 21 38 / 78%) 68%,
      var(--navy-950) 100%
    );
  }
  .hero h1 {
    max-width: 15ch;
    font-size: clamp(1.95rem, 8.6vw, 2.6rem);
    line-height: 1.1;
  }
  .hero__slide {
    padding: 7.5rem 1.35rem 2.25rem;
  }
  .hero__inner {
    align-self: stretch;
    min-height: 0;
    padding-bottom: 1rem;
    align-content: end;
  }
  .hero__slide,
  .hero__slide.is-active {
    inset-inline: 0.4rem;
  }
  .hero p {
    max-width: 28rem;
    font-size: 0.95rem;
  }
  .hero__actions .button {
    width: 100%;
  }
  .section {
    padding-block: 4rem;
  }
  .solutions {
    grid-template-columns: 1fr;
  }
  .mascot-cta span {
    display: none;
  }
  .mascot-cta {
    padding: 0.45rem;
  }
  .whatsapp-widget {
    right: 1rem;
    bottom: 1rem;
  }
  .whatsapp-widget__launcher {
    width: 3.6rem;
    height: 3.6rem;
  }
  .whatsapp-panel {
    position: fixed;
    right: 1rem;
    bottom: 5.5rem;
  }
  .explore,
  .segments,
  .content-preview,
  .blog-preview {
    padding-block: 3.5rem;
  }
  .explore__grid {
    grid-template-columns: 1fr;
  }
  .explore-card {
    min-height: 13.5rem;
  }
  .product-showcase {
    padding-block: 3.5rem;
  }
  .product-showcase__grid {
    grid-template-columns: 1fr;
  }
  .fiscal-responsibility {
    padding-block: 3.5rem;
  }
  .fiscal-responsibility__totals {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .fiscal-responsibility__plot {
    min-height: 13rem;
    gap: 0.4rem;
  }
  .fiscal-responsibility__bar-value {
    font-size: 0.58rem;
  }
  .fiscal-responsibility__bar-year {
    font-size: 0.72rem;
  }
  .product-card {
    min-height: 22rem;
  }
  .blog-preview__heading,
  .blog-preview__empty {
    display: grid;
    align-items: start;
  }
  .blog-preview__carousel {
    grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
    gap: 0.65rem;
    min-height: 24rem;
  }
  .blog-preview__article.is-previous,
  .blog-preview__article.is-next {
    display: none;
  }
  .blog-preview__article-content {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
    transform: none;
  }
  .why-dogo__scroll {
    padding: 2.5rem 1rem;
  }
  .why-dogo__scene {
    padding: 1.5rem;
    border-radius: 1rem;
  }
  .why-dogo__intro {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .why-dogo__content {
    gap: 1.75rem;
    padding-top: 2.5rem;
  }
  .why-dogo__copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
  .why-dogo__mascot {
    min-height: 19rem;
  }
  .why-dogo__mascot img {
    width: 100%;
  }
  .why-dogo__pillars {
    grid-template-columns: 1fr;
  }
  .why-dogo__hint {
    display: none;
  }
  .site-footer__inner,
  .site-footer__details {
    display: grid;
  }
  .site-footer__inner {
    gap: 2.5rem;
  }
  .site-footer__details {
    justify-content: initial;
    gap: 1.5rem;
    margin-left: 0;
  }
  .site-footer address {
    text-align: left;
  }
  .site-footer__actions {
    justify-items: start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .client-marquee {
    overflow: visible;
    mask-image: none;
  }
  .client-marquee__track {
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    justify-content: center;
    transform: none !important;
  }
  .client-marquee__group[aria-hidden="true"] {
    display: none;
  }
  .product-card--erp .product-card__image {
    animation: none;
  }
  .product-card__motion,
  .product-card--app .product-card__image {
    animation: none;
  }
  .whatsapp-widget__prompt,
  .whatsapp-panel,
  .whatsapp-panel__choices,
  .whatsapp-panel__redirect {
    animation: none;
    transition: none;
  }

  /* O contador permanece legível, sem animação circular para quem reduz movimento. */
  .whatsapp-panel__redirect-timer.is-counting
    .whatsapp-panel__redirect-progress {
    animation: none;
  }

  .site-loading span {
    animation: none;
  }
  .site-toast.is-entering {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .site-toast.is-leaving {
    animation: none;
    opacity: 0;
    transform: none;
  }
  .why-dogo__scene {
    position: relative;
    transform: none;
    transition: none;
  }
  .why-dogo__mascot img,
  .why-dogo__signal,
  .why-dogo__scene.is-changing .why-dogo__copy,
  .why-dogo__scene.is-changing .why-dogo__mascot {
    animation: none;
  }
  .mobile-nav__backdrop,
  .mobile-nav__panel {
    transition: none;
  }
}
