/* TOPO */
#topo {
  background: #F0F0F0;
  padding: 6rem 1rem 5rem;
}
/* DESTAQUE */
#dica .post {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 16px;
}
#dica .post .img__wrapper {
  width: 100%;
  border-radius: 16px 0 0 16px;
}
#dica .post .infos__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
  gap: 16px;
  padding: 148px 48px;
  background: #F0F0F0;
}
#dica .post .infos__wrapper button {
  cursor: pointer;
  width: 100%;
  max-width: 265px;
  padding: 8px;
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
  background: var(--clr-primary);
  transition: all 0.3s ease;
  transform-origin: left;
}
#dica .post .infos__wrapper button:hover {
  background: var(--clr-red);
  color: #fff;
  transform: scale(1.05);
}
/* TODAS AS DICAS */
#dicas__posts .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
#dicas__posts .grid .post {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 16px;
}
#dicas__posts .grid .post .img__wrapper {
  width: 100%;
  border-radius: 16px 0 0 16px;
}
#dicas__posts .grid .post .infos__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 16px;
  padding: 148px 48px;
  background: var(--clr-primary);
}
#dicas__posts .grid .post .infos__wrapper button {
  cursor: pointer;
  width: 100%;
  max-width: 265px;
  padding: 8px;
  border-radius: 8px;
  font-weight: 700;
  color: var(--clr-primary);
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: left;
}
#dicas__posts .grid .post .infos__wrapper button:hover {
  background: var(--clr-red);
  color: #fff;
  transform: scale(1.05);
}
/* PAGINACAO */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .prev,
.pagination .next {
  display: none;
}
.pagination .pagination__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 1px;
}
.pagination .pagination__wrapper .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--clr-primary);
  text-decoration: none;
  color: var(--clr-primary);
  transition: all 0.3s ease;
}
.pagination .pagination__wrapper .page-numbers.current {
  border: 1px solid var(--clr-primary);
  text-decoration: none;
  background: var(--clr-primary);
  color: #fff;
}
.pagination .pagination__wrapper .page-numbers:hover {
  border: 1px solid var(--clr-red);
  background: var(--clr-red);
  color: #fff;
}
@media (max-width: 991px) {
  #dica .post,
  #dicas__posts .grid .post {
    grid-template-columns: 1fr;
  }
  #dica .post .img__wrapper,
  #dicas__posts .grid .post .img__wrapper {
    aspect-ratio: 1/1;
    border-radius: 16px 16px 0 0;
  }
  #dica .post .infos__wrapper,
  #dicas__posts .grid .post .infos__wrapper {
    padding: 32px 16px;
  }
  #dica .post .infos__wrapper button,
  #dicas__posts .grid .post .infos__wrapper button {
    max-width: 100%;
  }
}