.benefit_pg {
  font-family: "Roboto", serif;
  background-color: #fade8a;
  display: flex;
  justify-content: center;
  padding: 50px 0;
}

.container {
  width: 60%;
  max-width: 1200px;
  text-align: center;
}

h1 {
  color: #f28705;
  font-size: 48px;
  font-weight: 900;
  text-align: left;
}

.description {
  color: #f28705;
  font-size: 20px;
  text-align: left;
  margin-bottom: 20px;
}

.benefits {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: flex-end;
}

.benefit {
  background-color: rgba(242, 135, 5, 0.17);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.small {
  height: 200px;
  align-self: flex-end;
}

.medium {
  height: 280px;
  align-self: flex-end;
}

.large {
  height: 360px;
  align-self: flex-end;
}

.benefit h3 {
  color: #f28705;
  font-size: 36px;
  font-weight: 900;
  margin: 0;
}

.benefit p {
  color: #f28705;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
}

.line-bloco {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.line-bloco img {
  width: 40px;
  height: 40px;
}

@media (max-width: 855px) {
  .benefits {
    flex-direction: column;
    align-items: center;
  }
  .benefit {
    width: 90%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    position: relative;
  }
  .line-bloco {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 10px;
    left: 10px;
    right: 10px;
  }
  .line-bloco img {
    margin-left: -150px; 
  }
  .benefit-icon {
    max-width: 20%;
    height: auto;
    object-fit: contain;
  }
  .benefit p {
    text-align: center;
    margin-top: 50px;
  }
  #benefitsroll {
    font-size: 42px; 
    white-space: nowrap; 
    display: flex;
    align-items: center;
    gap: 10px; 
  }

  h1 img {
    max-width: 40px; 
    height: auto;
  }
}