body {
  color: #333;
  background-color: #f0ece3;
  font-family: Epilogue, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.infinite-grid {
  z-index: 2;
  touch-action: none;
  background-color: #efece4;
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: clip;
}

.infinite-grid__collection {
  will-change: transform;
  width: 100%;
  height: 100%;
  position: absolute;
}

.infinite-grid__list {
  grid-template-columns: repeat(var(--grid-columns), auto);
  display: grid;
  position: absolute;
  top: 0;
  left: 0;
}

.infinite-grid__item {
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  width: 13em;
  padding: 2em;
  font-size: clamp(1.5em, 2vw, 3em);
  display: flex;
}

.infinite-grid__card {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  width: 80%;
  height: 100%;
  position: relative;
}

.infinite-grid__card.is--landscape {
  width: 100%;
  height: 75%;
}

.infinite-grid__card-img {
  opacity: 1;
  pointer-events: none;
  object-fit: contain;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  position: absolute;
}

.cursor-wrap {
  z-index: 1000;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0%;
}

.cursor-dot {
  z-index: 2;
  border: 1px solid #ffffff4d;
  border-radius: 100em;
  width: 2em;
  height: 2em;
  position: absolute;
  top: 0;
  left: 0;
}

.cursor-canvas {
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  position: absolute;
  inset: 0%;
}

.demo-section {
  justify-content: center;
  align-items: center;
  padding-bottom: 7.5em;
  padding-left: 1.25em;
  padding-right: 1.25em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.demo-section__article {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  flex-flow: column;
  width: 100%;
  max-width: 48em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.click-zoom__visual {
  aspect-ratio: 3 / 2;
  border-radius: .75em;
  width: 100%;
  overflow: hidden;
}

.click-zoom__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.click-zoom__lightbox {
  z-index: 102;
  cursor: zoom-out;
  background-color: #efece480;
  justify-content: center;
  align-items: center;
  padding: 3em;
  display: none;
  position: fixed;
  inset: 0%;
}

.underlay-nav__link-small {
  font-size: 1em;
  line-height: 1.1;
}

.underlay-nav__link-small.is--faded {
  opacity: .5;
}

.underlay-nav__logo {
  pointer-events: auto;
  mix-blend-mode: multiply;
}

.underlay-nav__container {
  justify-content: space-between;
  align-items: center;
  padding: 2.5em;
  display: flex;
}

.underlay-nav__link-large {
  border-radius: .25em;
  width: 100%;
  padding: .75em 1em;
}

.underlay-nav__link-large.w--current {
  color: #ededed;
  background-color: #f85931;
}

.underlay-nav__overlay {
  z-index: 100;
  pointer-events: none;
  cursor: pointer;
  visibility: hidden;
  position: fixed;
  inset: 0% -1px 0% 0%;
  overflow: clip;
}

.underlay-nav__corner {
  transform-origin: 100% 0;
  color: #f0ece3;
  background-image: radial-gradient(circle farthest-side at 0 100%, #fff0 99%, #f0ece3);
  width: 2em;
  height: 2em;
}

.underlay-nav__corner.is--bottom {
  transform-origin: 100% 100%;
  background-image: radial-gradient(circle farthest-side at 0 0, #fff0 99%, #f0ece3);
}

.underlay-nav__toggle-bar {
  background-color: currentColor;
  flex: none;
  width: 100%;
  height: .15em;
  padding: 0;
}

.underlay-nav__borders {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: absolute;
  inset: 0;
}

.underlay-nav__toggle-icon {
  grid-column-gap: .375em;
  grid-row-gap: .375em;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.2em;
  display: flex;
}

.underlay-nav__list {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.underlay-nav__list.is--small {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
}

.underlay-nav__inner {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 7.5em 2em 2em;
  display: flex;
  overflow: auto;
}

.underlay-nav__bottom-border {
  opacity: .15;
  transform-origin: 0%;
  background-color: currentColor;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 0% 0% auto;
}

.underlay-nav__toggle-label {
  justify-content: flex-start;
  align-items: center;
  font-size: 1.1em;
  font-weight: 500;
  display: flex;
}

.underlay-nav__dark {
  opacity: 0;
  background-color: #312e2e4d;
  position: absolute;
  inset: 0%;
}

.underlay-nav__bar {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.underlay-nav__menu {
  z-index: 1;
  max-width: 30em;
  width: var(--menu-width);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
}

.underlay-nav__logo-svg {
  width: 100%;
}

.underlay-nav__header {
  z-index: 100;
  pointer-events: none;
  position: fixed;
  inset: 0% 0% auto;
}

.underlay-nav__toggle {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  outline-offset: 0px;
  pointer-events: auto;
  background-color: #0000;
  border: 1px #000;
  outline: 3px #555;
  justify-content: center;
  align-items: center;
  margin: -1em;
  padding: 1em;
  display: flex;
}

.underlay-nav__toggle-text {
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  height: 1em;
  display: flex;
  overflow: hidden;
}

.underlay-nav__border-row {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.underlay-nav__bottom-col {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.underlay-nav__link-label {
  letter-spacing: -.04em;
  font-size: 3.25em;
  line-height: .9;
}

.underlay-nav__bottom {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 1.5em;
  display: flex;
  position: relative;
}

.underlay-nav__border {
  background-color: #f0ece3;
  width: 100%;
  height: 1em;
}

.main {
  z-index: 2;
  position: relative;
}

.svg-logo {
  width: 2rem;
}

.body {
  background-color: #f0ece3;
}

.button-037 {
  -webkit-user-select: none;
  user-select: none;
  color: var(--button-037-color);
  background-color: #0000;
  outline-style: none;
  padding: 0;
  line-height: 1;
  text-decoration: none;
  display: inline-grid;
  position: relative;
}

.button-037__bg {
  pointer-events: none;
  border-radius: var(--button-037-border-radius);
  background-color: var(--button-037-color-background);
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  padding: 0;
}

.button-037__inner {
  grid-column-gap: 1em;
  grid-row-gap: .125em;
  pointer-events: none;
  width: 100%;
  height: 100%;
  padding: 2em;
  padding: var(--button-037-padding);
  z-index: 1;
  grid-area: 1 / 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.button-037__inner.is-menu {
  grid-column-gap: .5em;
  padding-top: 1em;
  padding-bottom: 1em;
}

.silhuete-svg {
  opacity: 1;
  color: #fff;
  height: 100%;
  position: absolute;
  transform: scale(1.2);
}

.path {
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
}

.cursor {
  z-index: 10000;
  pointer-events: none;
  margin-top: -3em;
  padding-left: .5em;
  padding-right: 1em;
  position: fixed;
  top: 0;
  left: 0;
}

.cursor-bubble {
  opacity: 0;
  color: #000;
  background-color: #043cb6;
  border-radius: 50em 50em 50em 0;
  justify-content: center;
  align-items: center;
  padding: .6em .75em .5em;
  display: flex;
  position: relative;
}

.cursor-bubble__text {
  color: #fff;
  letter-spacing: -.02em;
  white-space: nowrap;
  font-size: 1em;
  font-weight: 500;
  line-height: 1em;
}

.paula-simoes {
  color: #fff;
  font-family: Epilogue, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.button-037__mail-svg {
  width: 2em;
  height: 2em;
}

.imagem_mae {
  aspect-ratio: 1;
  border: .2rem solid #fff;
  border-radius: 50em;
  width: 10em;
  height: 10em;
  position: relative;
  overflow: clip;
}

.div-block {
  background-color: #f5f2eb;
  border: .2rem solid #fff;
  border-radius: 16px;
  margin-top: -1em;
  padding: 1em;
}

.text-block {
  color: #333;
}

.card-mae {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.loader__logo-wrap {
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  display: flex;
  position: relative;
}

.loader__bg {
  background-color: #b63d24;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: clip;
}

.loader__bg-bar {
  z-index: 1;
  background-color: #fff;
  width: 200%;
  height: .3em;
  margin-bottom: .05em;
  margin-left: -100%;
  margin-right: -2rem;
}

.loader__text-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 3.5em;
}

.loader__text-el {
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: -.25em;
  padding-bottom: .25em;
  position: absolute;
}

.loader__container {
  z-index: 2;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.loader {
  z-index: 100;
  width: 100%;
  height: 100dvh;
  position: fixed;
  inset: 0% 0% auto;
}

.loader__logo-item {
  width: 100%;
  position: absolute;
}

.loader__logo-item.is--top {
  clip-path: inset(0 100% 0 0);
}

.loader__logo-item.is--base {
  opacity: 0;
}

.loader__logo-img {
  color: #fff8ed;
  width: 100%;
  display: block;
}

.svg-cara-mae {
  z-index: -1;
  color: #fff;
  width: 50%;
}

.text-block-2 {
  font-size: 20px;
}

.code-embed {
  display: none;
}

.loader__ball {
  color: #fff;
  width: 4rem;
  height: 4rem;
}

.loader__bar_wrap {
  z-index: 2;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100vw;
  height: 5em;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.transition {
  z-index: 99999;
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.transition__shape {
  color: #ceaeff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.transition__svg {
  width: 130%;
  height: 130%;
  position: absolute;
  top: -15%;
  left: -15%;
}

.infinite-grid__overlay {
  z-index: 1;
  background-color: red;
  position: absolute;
  inset: 0%;
}

.loader-overlay {
  z-index: 99999;
  background-color: #efece4;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
}

.svg-loader {
  color: #9e2c26;
  width: 10em;
}

@media screen and (max-width: 991px) {
  .cursor-wrap {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .underlay-nav__logo {
    width: 5em;
  }

  .underlay-nav__container {
    padding: 1.25em;
  }

  .underlay-nav__inner {
    padding: 5em 1.25em 1.25em;
  }

  .underlay-nav__link-label {
    font-size: 2em;
  }

  .underlay-nav__bottom {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: column;
    padding-left: 1em;
    padding-right: 1em;
  }
}

@media screen and (max-width: 479px) {
  .click-zoom__lightbox {
    padding: 1em;
  }
}


