/* ---- Reset Básico e Configurações Globais ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4; /* Um cinza claro para o fundo */
    color: #333;
}

.container {
    max-width: 700px;
    margin: auto;
    padding: 0 20px;
}

h1, h2 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

h1 {
    font-size: 2.0rem;
}

h2 {
    font-size: 1.8rem;
    margin-top: 30px;
}

p {
    margin-bottom: 20px;
}

/* ---- Cabeçalho (Header) ---- */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    text-align: center; /* Centraliza o placeholder do logo */
}

.logo-placeholder {
    font-weight: bold;
    font-size: 1.5rem;
    color: #222;
}


/* ---- Conteúdo Principal ---- */
.main-content {
    margin-top: 20px;
    padding-bottom: 10px ;
}

.post {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.post-meta {
    color: #292828;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.post-title-wrapper {
    margin-bottom: 30px;
    line-height: normal;
}

.category-tag {
    display: inline-block;
    background-color: #eef1f4;
    color: #555;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.post-image-container {
    position: relative;
    margin-bottom: 10px;
}

.post-header-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.author-image-wrapper {
    position: absolute;
    bottom: -50px; /* Puxa a imagem para baixo */
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
}

.author-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.post-body {
    margin-top: 20px; /* Espaço para a imagem do autor */
}

.special-note {
    background-color: #f9f9f9;
    border-left: 4px solid #007bff; /* Um azul para destaque */
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.special-note p {
    margin-bottom: 0;
    font-style: italic;
    color: #444;
}

/* ---- Rodapé (Footer) ---- */
.main-footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    color: #777;
    font-size: 0.9rem;
}

.cta-button-container {
    text-align: center; /* Centraliza o botão */
    margin: 40px 0 20px;
}

.cta-button {
    display: inline-block;
    background-color: #3b82f6; /* Tom de azul extraído da imagem */
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2563eb; /* Um tom de azul um pouco mais escuro para o efeito hover */
}


/* ---- Responsividade ---- */
@media(max-width: 768px) {
    h1 {
        font-size: 1.3rem;
    }
   

    .post {
        width: 100%;
        padding: 20px;
    }

    .author-image-wrapper {
        width: 120px;
        height: 120px;
        bottom: -40px;
    }

    .post-body {
        margin-top: 60px;
    }
    .container {
        max-width: 100%;
        padding: 0 0;
    }
}