// Display
._flex {
  display: flex;
}

._block {
  display: block;
}

._hide {
  display: none !important;
}

._w-full {
  width: 100%;
}

._h-full {
  height: 100%;
}

._h-screen {
  height: 100vh;
}

// Flex
._flex-column {
  flex-direction: column;
}

._flex-row {
  flex-direction: row;
}

._items-center {
  align-items: center;
}

._items-right {
  align-items: flex-end;
}

._content-center {
  place-content: center;
}

._content-right {
  place-content: end;
}

._content-between {
  place-content: space-between;
}

._flex-wrap {
  flex-wrap: wrap;
}

// Text
._text-purple {
  color: #393bb8;
}
._text-purple-dark {
  color: #272647 !important;
}
._text-white {
  color: #fff !important;
}
._uppercase {
  text-transform: uppercase !important;
}

._text-center {
  text-align: center !important;
}

._text-left {
  text-align: left !important;
}

._text-right {
  text-align: right !important;
}

._medium {
  font-weight: 500;
}

._strong {
  font-weight: 700 !important;
}

._show-mb {
  display: none !important;
}

// Paddings ---
._pt-xl {
  padding-top: 120px;
}
._pt-lg {
  padding-top: 104px;
}
._pt-md {
  padding-top: 80px;
}
._pt-sm {
  padding-top: 56px;
}
._pt-xs {
  padding-top: 40px;
}

._pb-xl {
  padding-bottom: 120px;
}
._pb-lg {
  padding-bottom: 104px;
}
._pb-md {
  padding-bottom: 80px;
}
._pb-sm {
  padding-bottom: 56px;
}
._pb-xs {
  padding-bottom: 40px;
}

@media screen and (max-width: $lg) {
  ._pt-xl {
    padding-top: 48px;
  }
  ._pt-lg {
    padding-top: 40px;
  }
  ._pt-md {
    padding-top: 48px;
  }
  ._pt-sm {
    padding-top: 40px;
  }

  ._pb-xl {
    padding-bottom: 48px;
  }
  ._pb-lg {
    padding-bottom: 40px;
  }
  ._pb-md {
    padding-bottom: 48px;
  }
  ._pb-sm {
    padding-bottom: 40px;
  }
}

._pt-12 {
  padding-top: 12px;
}
._pt-20 {
  padding-top: 20px;
}

._pt-24 {
  padding-top: 24px;
}
._pt-32 {
  padding-top: 32px;
}
._pt-40 {
  padding-top: 40px;
}

._pt-48 {
  padding-top: 48px;
}
._pt-56 {
  padding-top: 56px;
}

._pt-104 {
  padding-top: 104px;
}

._pb-14 {
  padding-bottom: 14px;
}

._pb-24 {
  padding-bottom: 24px;
}

._pb-16 {
  padding-bottom: 16px;
}
._pb-20 {
  padding-bottom: 20px;
}
._pb-32 {
  padding-bottom: 32px;
}

._pb-40 {
  padding-bottom: 40px;
}
._pb-48 {
  padding-bottom: 48px;
}
._pb-70 {
  padding-bottom: 70px;
}

._pb-104 {
  padding-bottom: 104px;
}

// Gaps ---
._space-8 {
  gap: 8px;
}
._space-12 {
  gap: 12px;
}
._space-16 {
  gap: 16px;
}
._space-24 {
  gap: 24px;
}
._space-40 {
  gap: 40px;
}

._space-80 {
  gap: 80px;
}
._space-120 {
  gap: 120px;
}

// Backgrounds ---
._bg-purple {
  background-color: $purple;
}

._bg-green {
  background-color: $green;
}

._bg-dark-purple {
  background-color: $purple-dark;
}

._bg-light {
  background-color: $light;
}

._bg-gradient {
  background: linear-gradient(112deg, $purple-dark 0%, $purple 96.6%), $purple;
}

._bg-gray {
  background: #f6f6f9;
}

.cabecalho {
  span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #4e4d59;
    padding-bottom: 10px;

    i {
      font-size: 16px;
    }
  }
}

.Image {
  display: block;
  border-radius: 4px;
}

._content-body {
  padding-top: 72px;
}

@media (max-width: $lg) {
  ._show-mb {
    display: block !important;
  }

  ._hide-mb {
    display: none !important;
  }

  ._content-body {
    padding-top: 58px;
  }
}
