.apresentationSection {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  position: relative;
  width: 100%;
  padding-top: 40px;

  @media (max-width: 480px) {
    padding: 0;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    margin: 0px auto;
    height: 100vh;
  }
  
}

.leftApresentationSection {
  margin-top: 140px;

  @media (max-width: 480px) {
    margin-top: 40px;
  }
}

.apresentationText {
  color: white;
  font-size: 72px;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;

  .red {
    color: #E71900
  }

  @media (max-width: 480px) {
  
  }
}

.rightApresentationSection {
  img {
    width: 600px;
  }

  @media (max-width: 480px) {
    img {
      display: none;
    }
  }
}

.apresentationBenefits {
  position: absolute;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  bottom: 40px;
  width: 53%;
  background: linear-gradient(65deg, rgba(16,16,16,1) 0%, rgba(24,24,24,1) 100%);
  display: flex;
  justify-content: end;

  @media (max-width: 480px) {
    display: none;
  }
}

.apresentationBenefitsList {
  display: flex;
}

.apresentationBenefitsItem {
  display: flex;
  align-items: center;
  padding: 16px;
  
  img {
    width: 42px;
  }

  p {
    width: 150px;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-align: left;
    margin-left: 12px;
  }
}