body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.illustrative {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("/assets/images/sobre-nos-imagem.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-attachment: fixed;

  overflow: hidden;
}

.illustrative-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.wwa {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    .wwa-header {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        padding-top: 16px;
        padding-bottom: 16px;

        width: 100%;
        background: #fc65c4;

        span {
            font-size: 48px;
            font-weight: 600;
            color: var(--primary-text-color);
            text-align: center;
        }
    }

    .wwa-body {
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        box-sizing: border-box;

        width: 768px;

        padding-left: 16px;
        padding-right: 16px;

        .wwa-history {
            padding-top: 16px;

            span {
                font-size: 36px;
                font-weight: 600;
                color: #fc65c4;
            }
        }
    }
}

@media (max-width: 768px) {
    .wwa-body {
        max-width: 100%;
    }
}