.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #fff;
  font-family: Rethink Sans, sans-serif;
  font-size: 18px;
  line-height: 120%;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}

p {
  margin-bottom: 0;
  font-size: 16px;
}

.wait-hero {
  z-index: 2;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  padding: 64px;
  display: flex;
  position: relative;
}

.brand-pic {
  width: 64px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.h1-box {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-flow: column;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.h1-span {
  font-family: Inria Serif, sans-serif;
  font-style: italic;
}

.time-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr 1fr .75fr;
}

.time-unit {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.time-row {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  grid-template-columns: 1fr;
}

.prgh-time {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 120%;
}

._2-col {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.hero {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.bg-hero {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.brand-top {
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
  position: relative;
}

.spray-under {
  z-index: 0;
  width: 140%;
  max-width: none;
  position: absolute;
}

.rise-brand {
  z-index: 1;
  width: 100%;
  position: relative;
}

.overlay {
  z-index: 1;
  mix-blend-mode: multiply;
  background-color: #1a3de8;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.prgh-motto {
  font-size: 120px;
  line-height: 100%;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 12vw;
  }

  .wait-hero {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    height: auto;
  }

  .time-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

  .wait-hero {
    padding: 32px;
  }

  .time-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .time-unit {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .prgh-time {
    font-size: 24px;
  }

  ._2-col {
    grid-template-columns: 1fr;
  }
}

/* Estilo para os links da navbar */
.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
}

.rise-button {
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.rise-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  filter: brightness(1.03);
}