/* Padronização das cores do site (maio/2026) */

:root {
  --maluca-title: #a14d74;
  --maluca-button: #d46c88;
  --maluca-button-hover: #b95576;
}

/* Item 5: títulos */
.page-intro h1,
.page-intro h2,
.title h1,
.title h2,
main h1,
main h2,
main h3,
article h1,
article h2,
article h3,
.home-front-cards__heading,
.home-front-posts__heading,
.home-front-hero h2,
.entry-title,
.post-title {
  color: var(--maluca-title) !important;
}

/* Item 6: botões */
.btn,
.btn.pink,
button.btn,
input[type="submit"],
.wp-block-button__link,
.wp-element-button {
  background-color: var(--maluca-button) !important;
  border-color: var(--maluca-button) !important;
  color: #fff !important;
}
.btn:hover,
.btn.pink:hover,
button.btn:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.wp-element-button:hover {
  background-color: var(--maluca-button-hover) !important;
  border-color: var(--maluca-button-hover) !important;
}

/* Item 4: tirar pontinho preto interno dos slick dots */
.slick-dots li button:before,
.slick-dots li.slick-active button:before {
  display: none !important;
  content: none !important;
}

/* Item 7: esconder subtítulo "Últimas do blog" (caso theme_mod ainda traga algo) */
.home-front-posts__sub:empty { display: none; }
.home-front-posts__sub { display: none; } /* simplifica: nunca mostra mais */
