:root {
  --color-blue-100: #6a92be;
  --color-blue-200: #5985b6;
  --color-blue-300: #4b78aa;
  --color-blue-400: #436c98;
  --color-blue-500: #3b5f87;
  --color-blue-600: #335274;
  --color-blue-700: #2c4663;
  --color-blue-800: #243a51;
  --color-blue-900: #1c2d40;
  --color-blue-1000: #14212e;
  --color-gray-100: #f2f2f2;
  --color-gray-200: #e6e6e6;
  --color-gray-300: #cccccc;
  --color-gray-400: #b3b3b3;
  --color-gray-500: #999999;
  --color-gray-600: #757575;
  --color-gray-700: #666666;
  --color-gray-800: #4d4d4d;
  --color-gray-900: #333333;
  --color-gray-1000: #1a1a1a;
  --color-white-100: #ffffff;
  --color-white-50: #ffffff80;
  --color-red-500: #F87366;
  --color-brand-primary: var(--color-blue-600);
  --color-text-primary: var(--color-gray-600);
  --color-text-secondary: var(--color-gray-500);
  --color-text-inverse: var(--color-white-100);
  --color-text-muted: var(--color-white-50);
  --color-heading-primary: var(--color-gray-500);
  --color-heading-secondary: var(--color-gray-300);
  --color-heading-inverse: var(--color-white-100);
  --color-surface-primary: var(--color-blue-700);
  --color-surface-secondary: var(--color-blue-800);
  --color-border-primary: var(--color-blue-800);
  --color-border-default: var(--color-gray-500);
  --color-border-inverse: var(--color-white-100);
  --color-border-muted: var(--color-white-50);
  --color-border-accent: var(--color-red-500);
  --font-family-heading: 'DM Sans', sans-serif;
  --font-family-body: 'DM Sans', sans-serif;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 900;
  line-height: 1em;
  text-align: center;
  color: var(--color-text-primary);
  margin-top: 0;
  margin-bottom: 1.25em;
}
h1 b,
h1 strong, h2 b,
h2 strong, h3 b,
h3 strong, h4 b,
h4 strong, h5 b,
h5 strong, h6 b,
h6 strong {
  font-weight: 900;
}

p {
  margin: 0 0 8px 0;
  font-size: 12px;
}

@media screen and (min-width: 744px) {
  h1 {
    font-size: 52px;
  }
  h2 {
    font-size: 48px;
  }
  h3 {
    font-size: 44px;
  }
  h4 {
    font-size: 40px;
  }
  h5 {
    font-size: 36px;
  }
  h6 {
    font-size: 32px;
  }
}
html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--body-font-family);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

header.header {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
}
header.header a.neoffice {
  position: absolute;
  top: 0;
  left: calc(50% - 63px);
  display: block;
  width: 126px;
  padding: 104px 24px 32px;
  background-color: var(--color-surface-primary);
  transition: background-color 150ms ease-in-out;
}
header.header a.neoffice:hover, header.header a.neoffice:focus, header.header a.neoffice:focus-visible {
  outline: none;
  background-color: var(--color-surface-secondary);
}
header.header a.neoffice img {
  display: block;
  height: 12px;
}

header.header + button.open-main-menu {
  position: fixed;
  z-index: 5;
  top: 72px;
  right: 52px;
  padding: 40px 0 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  transition-property: transform, opacity;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
  cursor: pointer;
}
header.header + button.open-main-menu * {
  cursor: pointer;
}
header.header + button.open-main-menu.hidden {
  opacity: 0;
  transform: translateY(0);
}
header.header + button.open-main-menu.disabled {
  visibility: hidden;
}
header.header + button.open-main-menu {
  --icon-width: 16px;
  --icon-height: 2px;
  --icon-top: calc((var(--icon-height) * 2) + 1px);
}
header.header + button.open-main-menu::before {
  --size: 48px;
  position: absolute;
  z-index: -1;
  top: calc(var(--icon-top) - var(--size) / 2);
  left: calc(50% - var(--size) / 2);
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  scale: 1;
  transition: scale 150ms ease-in-out;
  content: "";
  pointer-events: none;
}
header.header + button.open-main-menu::after {
  --size: 48px;
  position: absolute;
  z-index: -1;
  top: calc(var(--icon-top) - var(--size) / 2);
  left: calc(50% - var(--size) / 2);
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 100%;
  background-color: var(--color-surface-primary);
  content: "";
}
header.header + button.open-main-menu:hover, header.header + button.open-main-menu:focus, header.header + button.open-main-menu:focus-visible {
  outline: none;
}
header.header + button.open-main-menu:hover::before, header.header + button.open-main-menu:focus::before, header.header + button.open-main-menu:focus-visible::before {
  scale: 5;
}
header.header + button.open-main-menu .icon {
  position: absolute;
  top: var(--icon-top);
  left: calc(50% - var(--icon-width) / 2);
  display: block;
  width: var(--icon-width);
  height: var(--icon-height);
  background-color: var(--color-text-muted);
}
header.header + button.open-main-menu .icon::before, header.header + button.open-main-menu .icon::after {
  position: absolute;
  left: 0;
  width: var(--icon-width);
  height: var(--icon-height);
  background-color: var(--color-text-muted);
  content: "";
}
header.header + button.open-main-menu .icon::before {
  top: calc(var(--icon-top) * -1);
}
header.header + button.open-main-menu .icon::after {
  bottom: calc(var(--icon-top) * -1);
}
header.header + button.open-main-menu span {
  display: block;
  font-family: var(--font-family-heading);
  font-size: 12px;
  line-height: 32px;
  color: var(--color-text-primary);
  rotate: -90deg;
}

@media screen and (min-width: 744px) {
  header.header a.neoffice {
    left: calc(50% - 75px);
    width: 150px;
    padding: 128px 24px 32px;
  }
  header.header a.neoffice img {
    height: 16px;
  }
}
@media screen and (min-width: 1180px) {
  header.header + button.open-main-menu {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    display: flex;
    align-items: center;
    -moz-column-gap: 40px;
         column-gap: 40px;
    padding: 0 0 48px 56px;
  }
  header.header + button.open-main-menu.hidden {
    opacity: 1;
    transform: translateY(150%);
  }
  header.header + button.open-main-menu::before {
    --size: 64px;
    top: calc(50% - var(--size) / 2 - 24px);
    left: calc(var(--icon-width) / 2 - var(--size) / 2 + 56px);
  }
  header.header + button.open-main-menu::after {
    --size: 64px;
    top: calc(50% - var(--size) / 2 - 24px);
    left: calc(var(--icon-width) / 2 - var(--size) / 2 + 56px);
  }
  header.header + button.open-main-menu .icon {
    position: relative;
    top: auto;
    left: auto;
    order: 1;
  }
  header.header + button.open-main-menu span {
    rotate: 0deg;
    order: 2;
  }
}
main:has(+ footer.footer)::after {
  display: block;
  height: 100svh;
  content: "";
}

main:has(+ footer.footer) + footer.footer {
  position: relative;
  z-index: 3;
  margin-top: -100svh;
}

footer.footer {
  min-height: 200lvh;
  background-color: var(--color-gray-300);
}
footer.footer a.neoffice {
  position: sticky;
  top: 0;
  left: calc(50% - 63px);
  display: block;
  width: 126px;
  padding: 104px 24px 32px;
  background-color: var(--color-surface-primary);
}
footer.footer a.neoffice img {
  display: block;
  height: 12px;
}

@media screen and (min-width: 980px) {
  main:has(+ footer.footer) + footer.footer {
    z-index: 4;
  }
}
section.cases {
  position: sticky;
  z-index: 1;
  top: 0;
  display: grid;
  place-items: center;
  height: 100svh;
  background-color: var(--color-gray-200);
}
section.cases h2 {
  margin-bottom: 0;
}

@media screen and (min-width: 980px) {
  section.cases {
    z-index: 4;
  }
}
section.inspiracao {
  position: sticky;
  z-index: 1;
  top: 0;
  display: grid;
  place-items: center;
  height: 100svh;
  background-color: var(--color-gray-200);
}
section.inspiracao h2 {
  margin-bottom: 0;
}

@media screen and (min-width: 980px) {
  section.inspiracao {
    z-index: 4;
  }
}
section.intro {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  height: 100svh;
  background-color: var(--color-gray-100);
  background-size: cover;
  background-position: center;
  --inset: 40px 32px 64px;
}
section.intro > div {
  position: absolute;
  z-index: 2;
  inset: var(--inset);
  display: grid;
  place-items: center;
}
section.intro h1 {
  margin-bottom: 0;
  color: var(--color-text-inverse);
}
section.intro .open-main-menu {
  position: absolute;
  top: 32px;
  right: 20px;
  padding: 24px 0 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  --icon-width: 16px;
  --icon-height: 2px;
  --icon-top: calc((var(--icon-height) * 2) + 1px);
}
section.intro .open-main-menu::before {
  --size: 280px;
  position: absolute;
  top: calc(var(--icon-top) - var(--size) / 2);
  left: calc(50% - var(--size) / 2);
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  scale: 0.01;
  content: "";
}
section.intro .open-main-menu:focus, section.intro .open-main-menu:focus-visible {
  outline: none;
}
section.intro .open-main-menu .icon {
  position: absolute;
  top: var(--icon-top);
  left: calc(50% - var(--icon-width) / 2);
  display: block;
  width: var(--icon-width);
  height: var(--icon-height);
  background-color: var(--color-text-primary);
}
section.intro .open-main-menu .icon::before, section.intro .open-main-menu .icon::after {
  position: absolute;
  left: 0;
  width: var(--icon-width);
  height: var(--icon-height);
  background-color: var(--color-text-primary);
  content: "";
}
section.intro .open-main-menu .icon::before {
  top: calc(var(--icon-top) * -1);
}
section.intro .open-main-menu .icon::after {
  bottom: calc(var(--icon-top) * -1);
}
section.intro .open-main-menu span {
  display: block;
  font-family: var(--font-family-heading);
  font-size: 12px;
  line-height: 32px;
  color: var(--color-text-primary);
  rotate: -90deg;
}
section.intro .main-menu {
  display: none;
}
section.intro .linhas-menu {
  position: absolute;
  bottom: -40px;
  font-family: var(--font-family-heading);
}
section.intro .linhas-menu h2 {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-muted);
  font-size: 12px;
  font-weight: 300;
  line-height: 24px;
  color: var(--color-text-muted);
}
section.intro .linhas-menu ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
section.intro .linhas-menu a {
  position: relative;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 32px;
  color: var(--color-text-muted);
  text-align: center;
  text-decoration: none;
}
section.intro .linhas-menu a:hover, section.intro .linhas-menu a:focus, section.intro .linhas-menu a:focus-visible {
  outline: none;
}
section.intro .linhas-menu a:hover::before, section.intro .linhas-menu a:focus::before, section.intro .linhas-menu a:focus-visible::before {
  scale: 3;
}
section.intro .linhas-menu a::before {
  --size: 80px;
  position: absolute;
  z-index: -1;
  top: calc(72px - var(--size) / 2);
  left: calc(50% - var(--size) / 2);
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  scale: 1;
  content: "";
  transition: scale 150ms ease-in-out;
  pointer-events: none;
}
section.intro .linhas-menu a::after {
  --size: 80px;
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 100%;
  background-image: var(--background-image);
  background-size: cover;
  background-position: center;
  content: "";
}
section.intro figure {
  position: absolute;
  z-index: 1;
  inset: var(--inset);
  margin: 0;
  padding: 0;
}
section.intro figure::before {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
}
section.intro figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.intro figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-family-heading);
  font-size: 12px;
  line-height: 32px;
  color: var(--color-text-muted);
  rotate: -90deg;
  transform-origin: top left;
  transform: translate(calc(-100% - 40px), 16px);
}

@media screen and (min-width: 744px) {
  section.intro {
    --inset: 64px 64px 96px;
  }
  section.intro h1 {
    max-width: 400px;
  }
  section.intro .open-main-menu {
    display: none;
  }
  section.intro .main-menu {
    position: absolute;
    top: 144px;
    display: block;
  }
  section.intro .main-menu ul {
    display: flex;
    -moz-column-gap: 12px;
         column-gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  section.intro .main-menu a {
    position: relative;
    display: block;
    padding-bottom: 16px;
    font-family: var(--font-family-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 150ms ease-in-out;
  }
  section.intro .main-menu a::before {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 4px;
    background-color: var(--color-border-primary);
    content: "";
    transition: width 150ms ease-in-out;
  }
  section.intro .main-menu a:focus, section.intro .main-menu a:focus-visible {
    outline: none;
  }
  section.intro .main-menu a:hover, section.intro .main-menu a:active, section.intro .main-menu a.active, section.intro .main-menu a:focus-visible {
    color: var(--color-text-inverse);
  }
  section.intro .main-menu a:hover::before, section.intro .main-menu a:active::before, section.intro .main-menu a.active::before, section.intro .main-menu a:focus-visible::before {
    left: 0;
    right: auto;
    width: 100%;
  }
  section.intro .main-menu button.search {
    display: block;
    width: 24px;
    height: 24px;
    box-sizing: content-box;
    padding: 0;
    border: none;
    background-color: transparent;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.5;
    text-indent: -9999px;
    transition: opacity 150ms ease-in-out;
    cursor: pointer;
  }
  section.intro .main-menu button.search * {
    cursor: pointer;
  }
  section.intro .main-menu button.search:focus, section.intro .main-menu button.search:focus-visible {
    outline: none;
  }
  section.intro .main-menu button.search:hover, section.intro .main-menu button.search:active, section.intro .main-menu button.search.active, section.intro .main-menu button.search:focus-visible {
    opacity: 1;
  }
  section.intro .linhas-menu {
    bottom: -48px;
  }
  section.intro .linhas-menu ul {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  section.intro .linhas-menu a {
    font-size: 14px;
  }
  section.intro .linhas-menu a::before {
    --size: 96px;
    top: calc(80px - var(--size) / 2);
  }
  section.intro .linhas-menu a::after {
    --size: 96px;
  }
  section.intro figure figcaption {
    top: auto;
    bottom: 25%;
    left: auto;
    right: 0;
    rotate: -90deg;
    transform: translate(50%, -24px);
    transform-origin: bottom right;
    font-size: 14px;
  }
}
@media screen and (min-width: 1180px) {
  section.intro {
    --inset: none;
  }
  section.intro > div,
  section.intro figure {
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
    height: calc(100% - 200px);
    aspect-ratio: 1072/600;
  }
  section.intro h1 {
    max-width: none;
  }
  section.intro .main-menu {
    top: auto;
    bottom: 0;
    right: 40px;
  }
  section.intro .main-menu a,
  section.intro .main-menu button.search {
    padding-bottom: 32px;
  }
  section.intro .linhas-menu {
    left: 40px;
  }
  section.intro figure figcaption {
    top: 32px;
    bottom: auto;
    right: 40px;
    rotate: 0deg;
    transform: none;
  }
}
@media screen and (min-width: 1180px) and (max-height: 700px) {
  section.intro > div,
  section.intro figure {
    aspect-ratio: 1072/510;
  }
}
/*@media (hover: hover) and (pointer: fine) {



}*/
section.linha {
  position: sticky;
  z-index: 1;
  top: 0;
  display: grid;
  place-items: center;
  height: 100svh;
  margin-bottom: 50svh;
  background-color: var(--color-gray-200);
}
section.linha h2 {
  margin-bottom: 0;
}

@media screen and (min-width: 980px) {
  section.linha {
    z-index: 4;
  }
}
section.produtos {
  position: sticky;
  z-index: 1;
  top: 0;
  display: grid;
  place-items: center;
  height: 100svh;
  background-color: var(--color-gray-200);
}
section.produtos h2 {
  margin-bottom: 0;
}

@media screen and (min-width: 980px) {
  section.produtos {
    z-index: 4;
  }
}
