* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primaria: #7b2cbf;
    --primaria-dark: #5a189a;
    --texto: #111;
    --texto-suave: #666;
    --cinza: #f4f4f4;
    --radius: 4px;
}

body {
    font-family: "Inter", sans-serif;
}

h1, h2, h3 {
    font-family: "DM Sans", sans-serif;
}

/* BREADCRUMB */
.post-breadcrumb {
    max-width: 900px;
    margin: 25px auto 10px;
    font-size: .9rem;
    color: var(--texto-suave);
}

.post-breadcrumb a {
    color: var(--primaria);
    text-decoration: none;
}

.post-breadcrumb span {
    color: var(--texto);
}

/* TÍTULO */
.post-title {
    text-align: center;
    max-width: 900px;
    margin: 10px auto;
    font-size: 2rem;
    color: var(--primaria);
}

.post-meta {
    text-align: center;
    color: var(--texto-suave);
    margin-bottom: 20px;
}

/* IMAGEM */
.post-img-wrapper {
    max-width: 900px;
    margin: 0 auto 30px;
}

.post-img-wrapper img {
    width: 100%;
    border-radius: var(--radius);
}

/* CONTEÚDO */
.post-content {
    max-width: 900px;
    margin: auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--texto);
    padding: 0 15px 50px;
}

/* RELACIONADOS */
.relacionados {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px 60px;
}

.relacionados h2 {
    text-align: center;
    color: var(--primaria);
    margin-bottom: 20px;
}

.rel-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.rel-card {
    background: var(--cinza);
    padding: 10px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--texto);
}

.rel-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 10px;
}

.rel-card h3 {
    font-size: 1rem;
}

/* MOBILE */
@media (max-width: 600px) {
    .post-title { font-size: 1.5rem; }
    .post-img-wrapper img { height: auto; }
}
/* ==============================
      BOTÕES DE PARTILHA
=============================== */
.post-share {
    max-width: 900px;
    margin: 25px auto 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "DM Sans";
}

.post-share span {
    color: var(--texto-suave);
    font-weight: 500;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

/* Cores */
.share-btn.whatsapp  { background: #25d366; }
.share-btn.facebook  { background: #1877f2; }
.share-btn.twitter   { background: #000; }
.share-btn.linkedin  { background: #0a66c2; }
.share-btn.instagram { background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5); }

/* Hover */
.share-btn:hover {
    opacity: .85;
}

/* MOBILE */
@media (max-width: 600px) {
    .post-share {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* ======================================================
   FOOTER — protegido
====================================================== */
footer,
.footer,
#footer {
  background: #1a1423 !important;
  color: #fff !important;
}
