﻿/* ===== FUNDO ===== */

body {
    background: #f3f3f1;
}

/* Barra de progresso */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #222;
    width: 0%;
    z-index: 9999;
}

/* HERO */
.blog-hero {
    padding: 80px 0 40px;
    background: #ff961fe0;
    color: #ffffff;
    text-align: center;
}

    .blog-hero h1 {
        font-size: 3rem;
        margin-bottom: 15px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

.post-meta {
    font-size: 1.1rem;
    opacity: 0.85;
}

.breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.7;
}

    .breadcrumb a {
        color: #d4d4d4;
        text-decoration: none;
    }

/* CONTEÚDO */
.blog-post {
    padding: 70px 0 100px;
}

.post-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 80px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

    /* Tipografia grande e confortável */
    .post-content p {
        font-size: 1.35rem;
        line-height: 2.1;
        margin-bottom: 30px;
        color: #2c2c2c;
    }

    .post-content h2 {
        font-size: 2rem;
        margin-top: 60px;
        margin-bottom: 20px;
    }

    .post-content ul {
        margin: 25px 0 25px 30px;
    }

    .post-content li {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

/* Responsivo */
@media(max-width: 992px) {

    .post-content {
        padding: 40px;
    }

        .post-content p {
            font-size: 1.2rem;
        }

    .blog-hero h1 {
        font-size: 2.2rem;
    }
}
