:root {
  --bg: #fffaf4;
  --bg-soft: rgba(255, 253, 249, 0.92);
  --text: #5c4533;
  --text-soft: #866b57;
  --title: #4a3524;
  --primary: #f3c64d;
  --primary-strong: #ffd84f;
  --primary-dark: #d89b1d;
  --primary-soft: #fff1bf;
  --border: #efdfbb;
  --shadow: rgba(176, 132, 76, 0.10);
  --shadow-hover: rgba(176, 132, 76, 0.18);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, #fffdf8 0%, #fff8ef 35%, #fffaf4 100%);
  min-height: 100vh;
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 248, 231, 0.84), rgba(255, 250, 244, 0.92)),
    url("imagens/bg.png") center/520px repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* TOPO */

.topo {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(239, 223, 187, 0.9);
}

.topo-conteudo {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-wrap,
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-wrap img,
.logo img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(176, 132, 76, 0.18);
}

.logo-wrap h1,
.logo h1,
.logo-texto h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.06;
  letter-spacing: -0.8px;
  color: var(--title);
}

.logo-wrap p,
.logo p,
.logo-texto p {
  margin: 5px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.laranja {
  color: var(--primary-dark);
}

.topo-direita {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe37b, #f3c64d);
  color: #5b3f16;
  font-size: 13px;
  font-weight: bold;
  box-shadow: 0 8px 18px rgba(243, 198, 77, 0.18);
}

/* LOGIN */

.login-barra {
  max-width: 1320px;
  margin: 14px auto 0;
  padding: 0 20px;
}

.login-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px var(--shadow);
}

.admin-area {
  text-align: center;
  margin-top: 12px;
}

.admin-area h2 {
  font-size: 18px;
  margin: 0;
}

/* MENU */

.menu {
  max-width: 1320px;
  margin: 18px auto 0;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-link {
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: bold;
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(239, 223, 187, 0.88);
  transition: 0.28s ease;
  box-shadow: 0 8px 18px rgba(176, 132, 76, 0.08);
  position: relative;
  overflow: hidden;
}

.menu-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 216, 79, 0.16), rgba(216, 155, 29, 0.08));
  opacity: 0;
  transition: 0.28s ease;
}

.menu-link:hover::before,
.menu-link.ativo::before {
  opacity: 1;
}

.menu-link:hover,
.menu-link.ativo {
  background: linear-gradient(135deg, #ffe37b, #f3c64d);
  color: #4c351b;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(243, 198, 77, 0.22);
}

/* LAYOUT */

.container {
  max-width: 1320px;
  margin: 18px auto 0;
  padding: 0 20px 34px;
  display: flex;
  gap: 28px;
}

.principal {
  flex: 1;
  min-width: 0;
}

.lateral {
  width: 360px;
  min-width: 320px;
}

.lateral-box {
  position: sticky;
  top: 120px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.8);
  border: 1px solid rgba(239, 223, 187, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(176, 132, 76, 0.12);
}

/* TÍTULOS */

h1 {
  color: var(--title);
}

h2 {
  color: var(--title);
  font-size: 30px;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

h3, h4 {
  color: var(--title);
}

.secao-topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.secao-chip,
.mini-kicker,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
  background: linear-gradient(135deg, #ffe37b, #f3c64d);
  color: #5c4117;
  box-shadow: 0 6px 14px rgba(243, 198, 77, 0.18);
}

.mini-kicker {
  width: fit-content;
}

/* HERO HOME */

.hero-beauty {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.hero-principal,
.hero-lateral {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(239, 223, 187, 0.95);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 244, 214, 0.92));
  box-shadow: 0 16px 38px rgba(176, 132, 76, 0.12);
}

.hero-principal {
  padding: 34px;
}

.hero-principal::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 216, 79, 0.4), transparent 70%);
  border-radius: 50%;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff1bf;
  color: #7a5711;
  font-size: 13px;
  font-weight: bold;
}

.hero-principal h2 {
  font-size: 3rem;
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 640px;
}

.hero-principal p {
  color: #7a6554;
  line-height: 1.8;
  font-size: 1.02rem;
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-botoes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-botao {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: bold;
  transition: 0.25s ease;
}

.hero-botao-principal {
  background: linear-gradient(135deg, #ffd84f, #d89b1d);
  color: #4a3524;
  box-shadow: 0 10px 20px rgba(243, 198, 77, 0.2);
}

.hero-botao-secundario {
  background: rgba(255, 255, 255, 0.72);
  color: #6b4c37;
  border: 1px solid var(--border);
}

.hero-botao:hover {
  transform: translateY(-3px);
}

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-info-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(239, 223, 187, 0.85);
}

.hero-info-card strong {
  display: block;
  color: var(--title);
  margin-bottom: 6px;
  font-size: 14px;
}

.hero-info-card span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.hero-lateral {
  padding: 28px;
}

.hero-lateral-topo {
  margin-bottom: 18px;
}

.hero-lateral h3 {
  font-size: 1.45rem;
  margin: 14px 0 10px;
}

.hero-lateral p {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-mini-lista {
  display: grid;
  gap: 14px;
}

.hero-mini-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(239, 223, 187, 0.88);
  transition: 0.25s ease;
}

.hero-mini-item:hover {
  transform: translateY(-3px);
}

.hero-mini-item strong {
  display: block;
  color: #5c4533;
  margin-bottom: 6px;
}

.hero-mini-item span {
  color: #8a715d;
  font-size: 14px;
  line-height: 1.5;
}

/* BLOCOS */

.secao-bloco,
.categorias-home,
.bloco-final {
  margin-top: 24px;
}

.categorias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.categoria-box {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid rgba(239, 223, 187, 0.9);
  box-shadow: 0 10px 28px rgba(176, 132, 76, 0.1);
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
}

.categoria-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(176, 132, 76, 0.16);
}

.categoria-icone {
  font-size: 32px;
  margin-bottom: 12px;
}

.categoria-box h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.categoria-box p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 14px;
}

/* DESTAQUE E CARDS */

.card-link,
.mini-post-link {
  display: block;
}

.card-destaque,
.card,
.mini-post {
  background: rgba(255, 253, 249, 0.84);
  border: 1px solid rgba(239, 223, 187, 0.9);
  box-shadow: 0 12px 28px rgba(176, 132, 76, 0.1);
  backdrop-filter: blur(10px);
}

.card-destaque {
  padding: 14px;
  border-radius: 26px;
  overflow: hidden;
  transition: 0.35s ease;
}

.card-destaque img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 18px;
  background: #fff6e7;
}

.card-destaque:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px var(--shadow-hover);
}

.card-destaque:hover h3 {
  color: var(--primary-dark);
}

.grid-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  border-radius: 24px;
  overflow: hidden;
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #fff6e7;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px var(--shadow-hover);
}

.conteudo-card {
  padding: 18px;
  flex: 1;
}

.conteudo-card h3 {
  margin: 8px 0 10px;
  line-height: 1.3;
  font-size: 21px;
  word-break: break-word;
}

.conteudo-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 15px;
  word-break: break-word;
}

/* LATERAL */

#mais-vistos-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 22px;
  transition: 0.3s ease;
  overflow: hidden;
}

.mini-post img {
  width: 118px;
  height: 98px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  background: #fff6e7;
}

.mini-post-info {
  flex: 1;
  min-width: 0;
}

.mini-post-info h4 {
  margin: 8px 0;
  line-height: 1.35;
  font-size: 17px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.mini-post-info p {
  margin: 0 0 8px;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 14px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.mini-post-views {
  margin-top: 8px;
  font-size: 13px;
  color: #a07d5d !important;
  font-weight: bold;
}

.mini-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(176, 132, 76, 0.14);
}

.mini-post:hover h4 {
  color: var(--primary-dark);
}

/* BLOCO FINAL */

.bloco-final {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 241, 217, 0.94));
  border: 1px solid rgba(239, 223, 187, 0.9);
  box-shadow: 0 14px 30px rgba(176, 132, 76, 0.12);
}

.bloco-final h2 {
  margin-bottom: 10px;
}

.bloco-final p {
  margin: 0;
  color: #7a6554;
  line-height: 1.8;
  max-width: 760px;
}

/* INPUTS E BOTÕES */

input {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e7d6b1;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: none;
  min-width: 220px;
  transition: 0.25s ease;
}

input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(243, 198, 77, 0.12);
}

input::placeholder {
  color: #ab9178;
}

button {
  padding: 12px 18px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd84f, #d89b1d);
  color: #4a3524;
  font-weight: bold;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 10px 20px rgba(243, 198, 77, 0.18);
}

button:hover {
  transform: translateY(-2px);
}

/* PAGINAÇÃO */

.paginacao {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.paginacao button,
.paginacao span {
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.paginacao button {
  background: rgba(255, 244, 214, 0.95);
  color: #5a4331;
  box-shadow: none;
  padding: 0 14px;
}

.paginacao button:hover {
  background: #f3d27a;
  transform: none;
}

.paginacao button.ativo {
  background: linear-gradient(135deg, #ffd84f, #d89b1d);
  color: #3d2c1e;
}

.paginacao button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.paginacao .reticencias {
  color: #9a846d;
  min-width: auto;
  padding: 0 4px;
}

/* RODAPÉ */

.rodape {
  margin-top: 40px;
  padding: 30px 20px;
  border-top: 1px solid rgba(239, 223, 187, 0.9);
  background: rgba(255, 250, 244, 0.8);
  backdrop-filter: blur(10px);
}

.rodape-conteudo {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.rodape p {
  margin: 0;
  color: #7a614d;
  font-size: 15px;
}

.rodape-sub {
  margin-top: 8px !important;
  color: #9a7b5f;
  font-size: 13px !important;
}

/* POST PAGE */

.pagina-post {
  max-width: 950px;
  margin: 30px auto;
  padding: 20px;
}

.post-completo {
  background: #fffdf9;
  border: 1px solid #f0e1ba;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(176, 132, 76, 0.10);
}

.post-completo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  margin: 20px 0;
  background: #fff7e8;
}

.voltar-post {
  display: inline-block;
  margin-bottom: 20px;
  color: #d89b1d;
  text-decoration: none;
  font-weight: bold;
}

.meta-post {
  color: #8d735f;
  margin: 10px 0 20px;
  font-size: 14px;
  line-height: 1.6;
}

.texto-post {
  color: #6f5a49;
  line-height: 1.8;
  white-space: pre-line;
}

.nota-post {
  margin: 18px 0;
  padding: 14px;
  background: #fff3dc;
  border-radius: 12px;
  font-weight: bold;
}

.caixa-links-post {
  margin-top: 24px;
  padding: 18px;
  background: #fff8ea;
  border-radius: 16px;
}

.links-produto {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.botao-link-post {
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
}

.botao-original {
  background: #f5c542;
  color: #4a3524;
}

.botao-barato {
  background: #fff;
  border: 1px solid #ddd;
  color: #4a3524;
}

.frase-review {
  margin-top: 20px;
  padding: 12px;
  background: #fffaf2;
  border-left: 4px solid #f5c542;
  border-radius: 10px;
}

/* CATEGORIAS PREMIUM CLEAN */

.categoria-pagina {
  max-width: 1250px;
  margin: 26px auto 46px;
  padding: 0 20px 30px;
}

.categoria-hero-clean {
  text-align: center;
  margin-bottom: 34px;
  padding: 34px 24px 10px;
}

.categoria-kicker-clean {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff1bf;
  color: #7a5711;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 18px;
}

.categoria-hero-clean h1 {
  margin: 0 0 14px;
  font-size: 3.2rem;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--title);
}

.categoria-hero-clean p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.9;
}

.categoria-mini-linha {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.categoria-mini-pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(239, 223, 187, 0.88);
  box-shadow: 0 8px 18px rgba(176, 132, 76, 0.07);
  color: var(--text);
  font-size: 14px;
  font-weight: bold;
}

.categoria-posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 8px 0 22px;
}

.categoria-posts-header h2 {
  margin: 0;
  font-size: 2rem;
}

.categoria-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 26px;
}

.categoria-post-card {
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(239, 223, 187, 0.92);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(176, 132, 76, 0.10);
  transition: 0.32s ease;
}

.categoria-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(176, 132, 76, 0.16);
}

.categoria-post-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #fff6e7;
  transition: transform 0.4s ease;
}

.categoria-post-card:hover img {
  transform: scale(1.04);
}

.categoria-post-conteudo {
  padding: 20px;
}

.categoria-post-conteudo h3 {
  margin: 12px 0 12px;
  font-size: 20px;
  line-height: 1.38;
  color: var(--title);
}

.categoria-post-conteudo p {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 15px;
}

.categoria-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd84f, #d89b1d);
  color: #4a3524;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(243, 198, 77, 0.18);
  transition: 0.25s ease;
}

.categoria-link:hover {
  transform: translateY(-2px);
}

.categoria-vazio {
  max-width: 520px;
  margin: 30px auto 0;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(239, 223, 187, 0.9);
  text-align: center;
  color: var(--text-soft);
  box-shadow: 0 12px 28px rgba(176, 132, 76, 0.10);
}

/* UTILITÁRIOS */

.post-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.post-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-card img {
  transition: transform 0.3s ease;
}

.post-card:hover img {
  transform: scale(1.05);
}

.card-clicavel {
  cursor: pointer;
}

/* RESPONSIVO */

@media (max-width: 1200px) {
  .hero-beauty {
    grid-template-columns: 1fr;
  }

  .lateral {
    width: 320px;
    min-width: 290px;
  }

  .categorias-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .container {
    flex-direction: column;
  }

  .lateral {
    width: 100%;
    min-width: auto;
  }

  .lateral-box {
    position: static;
  }

  .grid-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .topo-conteudo,
  .logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-wrap {
    width: 100%;
  }

  .logo h1,
  .logo-texto h1 {
    font-size: 28px;
  }

  .menu {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .menu::-webkit-scrollbar {
    height: 6px;
  }

  .menu::-webkit-scrollbar-thumb {
    background: rgba(216, 155, 29, 0.4);
    border-radius: 999px;
  }

  .container,
  .categoria-pagina,
  .pagina-post {
    padding-left: 16px;
    padding-right: 16px;
  }

  .login-barra {
    padding: 0 16px;
  }

  .hero-principal,
  .hero-lateral,
  .bloco-final,
  .lateral-box {
    padding: 20px;
  }

  .hero-principal h2 {
    font-size: 2rem;
  }

  .grid-posts,
  .categorias-grid,
  .categoria-posts-grid {
    grid-template-columns: 1fr;
  }

  .mini-post {
    flex-direction: column;
  }

  .mini-post img {
    width: 100%;
    height: 190px;
  }

  input {
    min-width: 100%;
  }

  .login-box {
    align-items: stretch;
  }

  .secao-topo,
  .categoria-posts-header {
    flex-direction: column;
    align-items: flex-start;
  }

  h2 {
    font-size: 25px;
  }

  .categoria-hero-clean {
    padding: 24px 8px 6px;
  }

  .categoria-hero-clean h1 {
    font-size: 2.35rem;
  }

  .categoria-post-card img,
  .post-completo img {
    height: auto;
    max-height: 220px;
  }
}

.rodape-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}

.rodape-links a {
  color: #d89b1d;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.rodape-links a:hover {
  color: #b87c12;
  text-decoration: underline;
}