#detalhe-noticia {
    padding: 80px 0;
    background-color: #fff;
}
.post-title {
    color: #0058A5;
    font-family: var(--font-Museo);
    font-weight: 600;
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.2;
}
.post-meta {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 500;
}
.post-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.post-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.post-content {
    color: #333;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 50px;
}
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}
.post-footer {
    border-top: 1px solid #eee;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.post-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
.post-tags span {
    font-weight: 700;
    color: #0058A5;
    font-size: 1.1rem;
}
.post-tags a {
    color: #b0579e;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #b0579e;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}
.post-tags a:hover {
    background-color: #b0579e;
    color: #fff;
}

.compartilhamento {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    justify-content: center;
}
.compartilhamento .rede button {
    background: #0058A5;
    border: none;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.compartilhamento .rede button:hover {
    transform: scale(1.1);
    background-color: #E63331;
}
.compartilhamento .rede button svg {
    fill: #fff;
    width: 22px;
    height: 22px;
}

@media (max-width: 992px) {
    #detalhe-noticia {
        padding: 40px 0;
    }
    .post-meta {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    .post-image {
        margin-bottom: 25px;
        border-radius: 12px;
    }
    .post-content {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    .post-footer {
        padding-top: 25px;
        gap: 20px;
    }

    .post-title {
        font-size: 1.5rem;
    }
    .post-tags {
        gap: 10px;
    }
}
