.site:has(.wc-gestao) {
  background-color: #f7f7f7 !important;
}

.wc-gestao .gestao-hero {
  background-color: var(--bg-color-pink);
  color: var(--color-text-white);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 270px;
}

.wc-gestao .gestao-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://semparar.wicomm.com.br/wp-content/uploads/2025/10/seta-2.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.wc-gestao .gestao-hero__content {
  position: relative;
  z-index: 2;
  max-width: 825px;
  margin: 0 auto;
  text-align: center;
}

.wc-gestao .gestao-hero__pre-title {
  display: block;
  margin: 0px 0px 24px;
  font-size: 1.8rem;
  line-height: 1.18;
  text-align: center;
  font-weight: 500;
  color: var(--color-text-white);
}

.wc-gestao .gestao-hero__title {
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.14;
  font-weight: 700;
  color: var(--color-text-white);
  margin: 0;
}

.gestao-recente {
  padding: 60px 20px 70px 20px;
}

.gestao-recente__container {
  max-width: 1200px;
  margin: 0 auto;
}

.gestao-recente__titulo-seccao {
  font-weight: 500;
  font-size: 1.56rem;
  line-height: 1.25;
  margin-bottom: 30px;
  color: var(--color-text-black);
}

.gestao-recente__layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.gestao-recente__layout--invertido {
  flex-direction: row-reverse;
}

.gestao-recente__col-texto {
  flex: 1;
  min-width: 300px;
}

.gestao-recente__col-imagem {
  flex: 1.5;
  min-width: 300px;
}

.gestao-recente__col-imagem img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.gestao-recente__tag {
  color: var(--color-text-pink);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: .067rem;
  line-height: 1rem;
  margin-bottom: 0.56rem;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
}

.gestao-recente__titulo-material {
  font-size: 2.44rem;
  line-height: 1.18;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 15px;
  color: var(--color-text-black);
}

.gestao-recente__descricao {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
  color: var(--color-text-second);
}

.gestao-recente__botao {
  display: inline-block;
  background-color: var(--bg-color-pink);
  color: var(--color-text-white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.91rem 1.36rem;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.gestao-recente__botao:hover {
  transform: scale(1.07);
}

.wc-gestao .wc-home-newslleter {
  margin-bottom: 60px;
}


.gestao-listagem__toolbar {
  background-color: #505050;
  padding: 20px 0;
}

.gestao-listagem__toolbar-center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gestao-listagem__toolbar-elements {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.gestao-listagem__filter-label {
  color: #ffffff;
  font-size: 1.56rem;
  line-height: 1.25;
  font-weight: 500;
}

.gestao-listagem__dropdown {
  position: relative;
  width: 200px;
}

.gestao-listagem__dropdown-btn {
  background: #fff;
  margin-bottom: .56rem;
  margin-top: .56rem;
  border-radius: 12px;
  width: 100%;
  /* Aparência e layout */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  padding: .64rem .91rem;

  /* Transições */
  transition: all 0.2s ease-in-out;

}

.gestao-listagem__dropdown-btn:hover {
  transform: scale(1.07);
}

.gestao-listagem__dropdown-btn .gestao-listagem__dropdown-text {
  font-size: 0.89rem;
  color: #505050;
  font-style: normal;
  font-weight: 700;
  line-height: 1.56;
}

.gestao-listagem__dropdown-btn:hover .gestao-listagem__dropdown-arrow svg path,
.gestao-listagem__dropdown-btn:hover span {
  color: var(--color-text-pink) !important;
}

.gestao-listagem__dropdown-arrow {
  transition: all 0.3s ease;
  display: flex;
}

.gestao-listagem__dropdown.active .gestao-listagem__dropdown-arrow {
  transform: rotate(180deg);
}

.gestao-listagem__dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  display: none;
  z-index: 100;
  max-height: 70vh;
  padding: 24px;
  overflow-y: auto;
}

.gestao-listagem__dropdown.active .gestao-listagem__dropdown-list {
  display: block;
}

.gestao-listagem__dropdown-option {
  padding: .28rem 0;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.89rem;
  color: #505050;
  font-style: normal;
  font-weight: 500;
  line-height: 1.56;
  text-decoration: none;
  display: block;
}
.gestao-listagem__dropdown-option--active {
  font-weight: 900;
}

.gestao-listagem__items {
  padding-top: 48px;
}

.gestao-listagem__items-center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gestao-listagem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gestao-listagem__card {
  background: #ffffff;
  border-radius: 24px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(80, 80, 80, .05), 0 8px 16px rgba(80, 80, 80, .05);
  transition: all 0.2s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: column;
}

.gestao-listagem__card:hover {
  box-shadow: 0 32px 64px rgba(80, 80, 80, .05), 0 16px 32px rgba(80, 80, 80, .05);
  transform: scale(1.02);
}

.gestao-listagem__card:hover .gestao-listagem__card-img img {
  transform: scale(1.1);
}

.gestao-listagem__card:hover .gestao-listagem__card-icon {
  transform: translateY(-.56rem);
}

.gestao-listagem__card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.gestao-listagem__card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.gestao-listagem__card-img img {
  transition: all 0.2s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gestao-listagem__card-icon {
  transition: all 0.2s ease-in-out;
  margin-top: -1.82rem;
  margin-left: 12px;
  z-index: 3;
  width: 50px;
  height: 50px;
  background-color: var(--bg-color-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.gestao-listagem__card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-text-white) !important;
}

.gestao-listagem__card-header {
  padding: 24px;
  flex-grow: 1;
}

.gestao-listagem__card-label {
  color: var(--color-text-pink);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.067rem;
  line-height: 1rem;
  margin-bottom: 0.56rem;
  text-transform: uppercase;
  display: block;
}

.gestao-listagem__card-title {
  color: #505050;
  font-size: 1.56rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}

.gestao-listagem__card-body {
  padding: 0 24px 24px;
}


.gestao-listagem__card-btn {
  /* Cores e estilo base */
  background-color: #d60b52;
  border: 2px solid #d60b52;

  /* Aparência e layout */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  padding: .64rem .91rem;

  /* Transições */
  transition: all 0.1s ease-in-out;
}

.gestao-listagem__card-btn span {
  color: #fff;
  font-size: 0.89rem;
  font-weight: 700;
  line-height: 1.56;
  font-style: normal;
  text-align: center;
}


.gestao-listagem__card-btn:hover {
  transform: scale(1.07);
}

.gestao-listagem__pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.gestao-listagem__pagination li {
  display: inline-block;
  margin: .28rem;
}

.gestao-listagem__pagination .page {
  align-items: center;
  background: #eee;
  border-radius: 999px;
  color: #505050;
  display: flex;
  font-size: .9rem;
  font-style: normal;
  font-weight: 500;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
}

.gestao-listagem__pagination .page:hover {
  background-color: #ffffff;
  border-color: var(--bg-color-pink);
  color: var(--color-text-pink);
}

.gestao-listagem__pagination .active .page {
  background-color: var(--bg-color-pink);
  border-color: var(--bg-color-pink);
  color: #ffffff;
}

.gestao-listagem__no-results {
  text-align: center;
  padding: 60px 20px;
  color: #666666;
  font-size: 1.2rem;
  display: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1139px) {
  .gestao-listagem__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .gestao-listagem__toolbar-elements {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .gestao-listagem__dropdown {
    width: 100%;
  }

  .gestao-listagem__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wc-gestao .gestao-hero__pre-title {
    font-size: 1.2rem;
  }

  .wc-gestao .gestao-hero__title {
    font-size: 1.8rem;
  }

  .gestao-recente__layout {
    flex-direction: column-reverse;
  }

  .gestao-recente__titulo-material {
    font-size: 1.8rem;
  }

  .wc-gestao .wc-home-newslleter {
    margin-bottom: 40px;
  }
}