@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* -------- Ativa a transição lateral entre páginas no Chrome/Edge, etc.. ----------- */
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: 0.4s cubic-bezier(0.4, 0, 0.2, 1) both move-out;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

::view-transition-new(root) {
  animation: 0.4s ease-in-out both move-in;
}

@keyframes move-out {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }
}
@keyframes move-in {
  from {
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.bold {
  font-weight: 600;
}

body {
  position: relative;
  width: 100%;
  height: auto;
  font-family: "Poppins", sans-serif;
  background-color: #DDDDDD;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.web-application {
  width: 100%;
  max-width: 1550px;
  overflow: hidden;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.3);
}

.color-gold {
  display: inline-block;
  color: #a67c00;
  background: linear-gradient(to bottom, #c5a028 0%, #e8c547 40%, #f8e08d 50%, #d4af37 65%, #a67c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/*# sourceMappingURL=style.css.map */
