.Home {
  &._banner {
    height: 480px;
  }

  &._sobre {
    background-color: $purple-dark;
    position: relative;
    height: auto;
    padding-top: 130px;
    padding-bottom: 80px;
    background-image: url(../../assets/images/home-inicio.png);
    background-repeat: no-repeat;
    background-position: center bottom;

    .Container {
      position: relative;
      z-index: 2;
    }

    .Title {
      max-width: none;
      color: #fff;
      font-weight: 400;
      line-height: 130%;

      span {
        font-weight: 700;
      }
    }

    .Body {
      color: #cac8d0;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      z-index: 1;
      height: 100%;
      width: 100%;
      background: linear-gradient(
        0deg,
        rgba(18, 16, 53, 0) 13.57%,
        #121035 93.67%
      );
    }

    .Button {
      border-color: $primary-04;
      color: $primary-04;

      &:hover {
        background-color: $primary-04;
        color: $primary-02;
      }
    }
  }

  &._solucao {
    padding: 48px 0 0;

    .grid {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      row-gap: 18px;
      column-gap: 16px;
    }

    .card {
      gap: 64px;
      height: 100%;
      padding: 14px;
      border-radius: 4px;
      background: #f8f8fc;

      img {
        width: 45px;
        height: 45px;
      }

      .Title {
        font-weight: 700;
        line-height: 120%;
        color: #272647;
      }

      p {
        padding-top: 8px;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        color: #4a4a4a;
        min-height: none;
      }
    }

    .coluna {
      width: calc(50% - 8px);

      .subgrid {
        display: flex;
        flex-direction: column;
        row-gap: 18px;
        height: 100%;

        .card {
          height: calc(50% - 8px);
        }
      }

      &._central {
        order: 3;
        width: 100%;

        .card {
          display: flex;
          align-items: flex-end;
          justify-content: center;
          padding-bottom: 0;

          img {
            display: block;
            width: auto;
            height: auto;
          }
        }
      }
    }
  }

  &._numeros {
    padding: 80px 0 32px;

    .itens {
      row-gap: 16px;

      .item {
        padding: 24px 0 24px 0;
        border-top: 2px solid #42cf7b;

        span {
          color: #272647;
          font-size: 24px;
          font-style: normal;
          font-weight: 700;
          line-height: 120%;
        }

        p {
          padding-top: 6px;
          color: #6f6f6f;
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 120%;
        }
      }
    }
  }

  &._empresas {
    padding: 48px 0;

    .Container {
      gap: 40px;
    }

    .Row {
      align-items: flex-start;
    }
  }

  &._depoimentos {
    padding: 40px 0;

    .Secao-depoimento-header {
      margin-bottom: 48px;

      .Title {
        color: #2f2c68;
        font-weight: 700;
      }
    }

    .Slider-navigation {
      display: none;
    }
  }

  &._clientes {
    padding: 48px 0;
    background: #f6f6f9;

    h2 {
      max-width: 403px;
      text-align: center;
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      color: #6f6f86;
      padding-bottom: 56px;
      margin: 0 auto;
    }

    .grid-clientes {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
    }

    .cliente {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: calc(50% - 8px);

      svg path {
        fill: #a5a5bb;
        transition: 0.2s;
      }

      &:hover {
        svg path {
          fill: #110f35;
        }
      }
    }
  }

  @media (min-width: $lg) {
    &._banner {
      height: 727px;
    }

    &._sobre {
      height: 689px;
      padding-bottom: 0;

      .Title {
        max-width: 275px;
      }
    }

    &._empresas {
      padding: 120px 0;

      .Container {
        gap: 120px;
      }

      .Row {
        align-items: center;
        justify-content: space-between;
      }
    }

    &._solucao {
      padding: 120px 0;

      .grid {
        column-gap: 24px;
      }

      .card {
        padding: 32px 24px;
      }

      .coluna {
        width: calc(25% - 18px);

        &:last-of-type {
          order: 3;
        }

        .subgrid {
          row-gap: 26px;
        }

        &._central {
          order: 2;
          width: calc(50% - 12px);
        }
      }
    }

    &._numeros {
      padding: 80px 0 0;

      .itens {
        .item {
          padding: 48px 24px;

          span {
            font-size: 40px;
          }

          p {
            padding-top: 14px;
            font-size: 16px;
          }
        }
      }
    }

    &._clientes {
      padding: 80px 0;

      .grid-clientes {
        gap: 40px;
      }

      .cliente {
        width: calc(16.66% - 20px);

        img {
          width: 100%;
        }
      }
    }

    &._depoimentos {
      padding: 80px 0;

      .Slider-navigation {
        display: flex;
      }
    }
  }
}
