/* Estilos específicos para a página do post */

.post-detail-wrapper {
    background-color: #ffffff;
    padding-bottom: 60px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.post-header-hero {
    background-color: #f8fafc;
    padding: 80px 0 40px;
    text-align: center;
}

.category-tag {
    background: #3b82f6;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.post-header-hero h1 {
    color: #1e3a8a;
    font-size: 2.8rem;
    margin: 20px 0;
    line-height: 1.2;
}

.post-content-container {
    max-width: 800px;
    margin: -40px auto 0;
    padding: 0 20px;
}

.post-featured-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.post-body {
    padding-top: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
}

.post-body h2 {
    color: #1e3a8a;
    margin: 40px 0 20px;
}

.post-body blockquote {
    border-left: 5px solid #3b82f6;
    padding: 20px;
    background: #eff6ff;
    font-style: italic;
    margin: 30px 0;
}

.cta-box {
    margin-top: 50px;
    background: #1e3a8a;
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.btn-cta-post {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.2s;
}

.btn-cta-post:hover {
    transform: scale(1.05);
}

.post-footer-navigation {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.back-to-blog {
    color: #3b82f6;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .post-header-hero h1 { font-size: 2rem; }
    .post-featured-image img { height: 250px; }
}