.pageGeneric {
  width: 100%;
}

.page-contato {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.31rem;
  .pageGeneric--banner {
    display: none;
  }
}

.page-404 {
  .component-cms {
    min-height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    p {
      font-size: 1rem;
      font-family: var(--font-family-poppins);
      font-weight: 500;
      color: var(--grey);
      line-height: 1.5rem;
    }
  }
}

@media (min-width: 64rem) {
  .page-contato {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 4rem;
    gap: 4rem;
    .component-title-cta-images-caption__page-banner {
      grid-column: 1 / span 2;
    }
  }
  .page-404 {
    .component-cms {
      margin: 0 1rem;
      p {
        font-size: 2rem;
        line-height: 2.5rem;
      }
    }
  }
}
