body {
  background: #F5F5F5;
}

.page-dicas-header {
  position: relative;
  padding-top: 49px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  min-height: 329px;

  padding-top: 49px;
  padding-bottom: 5px;

  overflow: hidden;
  align-items: center;

  background-image:  url("../assets/images/Galbani_Mobile_768x324.webp");
  background-position: center;
  background-size: cover;
  position: relative;
}

.page-dicas-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 2.72%, rgba(0, 0, 0, 0.75) 127.36%);
  opacity: 1;
}

.page-dicas-title {
  position: absolute;
  bottom: 38px;
  color: white;
  text-align: center;
  font-family: Lobster;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  text-align: center;

  margin-bottom: 19px;
}

.page-dicas-title::after {
  position: absolute;
  display: block;
  content: "";
  top: auto;
  bottom: -20px;
  left: calc(50% - 30px);
  right: auto;
  width: 60px;
  height: 3px;
  background-color: white;
}

.page-dicas-search-section {
  padding: 0 25px;
}

.page-dicas-search-field {
  width: 100%;
  height: 40px;
  flex-shrink: 0;
  border-radius: 30px;
  border: 1px solid #B0B0B0;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 35px;
}

.page-dicas-search-input {
    width: 90%;
    border: none;
    outline: none;
    font-family: "space-grotesk";
    font-size: 16px;
    padding-left: 9px;
}

.page-dicas-search-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    fill: #707070;
}

.page-dicas-list-section {
  padding: 0 25px;
  width: 100%;
}

.page-dicas-list-highlight-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, 310px);
  justify-items: center;
  row-gap: 30px;
  justify-content: center;

  margin-bottom: 30px;

  column-gap: 42px;
}

.page-dicas-list-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, 310px);
  justify-items: center;
  row-gap: 30px;
  justify-content: center;

  column-gap: 42px;
}

.pagination-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 67px;
	margin-top: 20px;
}

.pagination-number {
  width: 30.7px;  
  height: 30.7px;
  flex-shrink: 0;
  border-radius: 30px;
  background: #FFF;
  border: 1px solid #B0B0B0;
  color: #707070;
  text-align: center;
  font-family: "space-grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30.7px;
  text-decoration: none;
}

.pagination-number.selected {
  background: #F49811;
  color: #FFF;
  border: none;
}

.pagination-arrow-right {
  background-image: url("../assets/images/arrow-right.svg");
  width: 30.7px;
  height: 30.7px; 
  flex-shrink: 0;
  border-radius: 30px;
  border: 1px solid #B0B0B0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.pagination-arrow-left {
  background-image: url("../assets/images/arrow-left.svg");
  width: 30.7px;
  height: 30.7px; 
  flex-shrink: 0;
  border-radius: 30px;
  border: 1px solid #B0B0B0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.total-tips-indicator {
  color: #707070;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  margin-bottom: 26px;
}

@media screen and (min-width: 768px) {
  .page-dicas-header {
    align-items: center;
    padding-top: 24px;
    row-gap: 18px;
    min-height: 275px;
    height: 275px;
    max-height: 275px;
    background-image: url("../assets/images/Galbani_Desktop_1440x270.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .page-dicas-search-field {
    width: 100%;
    max-width: 840px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 30px;
    border: 1px solid #B0B0B0;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;

    margin: auto;

    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-dicas-search-input {
    width: 90%;
    border: none;
    outline: none;
    font-family: "space-grotesk";
    font-size: 16px;
    padding-left: 19px;
  }

  .page-dicas-search-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    fill: #707070;
  }

  .page-dicas-list-section {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 60px;
  }

  .page-dicas-list-highlight-container, .page-dicas-list-container {
    grid-template-columns: repeat(auto-fill, 400px);
    max-width: 1350px;
  }

  .pagination-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 60px;
    padding-bottom: 10px;
  }

  .pagination-number {
    width: 41px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 30px;
    background: #FFF;
    border: 1px solid #B0B0B0;
    color: #707070;
    text-align: center;
    font-family: "space-grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    cursor: pointer;
  }

  .pagination-number.selected {
    background: #F49811;
    color: #FFF;
    border: none;
  }

  .pagination-arrow-right {
    background-image: url("../assets/images/arrow-right.svg");
    width: 41px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 30px;
    border: 1px solid #B0B0B0;
    color: #707070;
    text-align: center;
    font-family: "space-grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    cursor: pointer;
    background-size: contain;
  }

  .pagination-arrow-left {
    background-image: url("../assets/images/arrow-left.svg");
    width: 41px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 30px;
    border: 1px solid #B0B0B0;
    color: #707070;
    text-align: center;
    font-family: "space-grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    cursor: pointer;
    background-size: contain;
  }

  .pagination-number {
    width: 41px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 30px;
    background: #FFF;
    border: 1px solid #B0B0B0;
    color: #707070;
    text-align: center;
    font-family: "space-grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    cursor: pointer;
    text-decoration: none;
  }
}