/* assets/css/taboola.css */

/* --- RESET BÁSICO E VARIÁVEIS --- */
:root {
    --color-text: #333333;
    --color-primary: #8D5B4C; /* Tom terroso sofisticado */
    --color-background: #FCFBF9; /* Fundo branco-quente, confortável para leitura */
    --color-light-gray: #f5f5f5;
    --color-gray: #6c757d;
    --font-serif: 'Lora', serif; /* Fonte elegante para títulos */
    --font-sans: 'Poppins', sans-serif; /* Fonte limpa para corpo de texto */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 720px; /* Largura ideal para leitura de artigos */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- CABEÇALHO DO ARTIGO --- */
.article-header {
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px;
}

.category-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.article-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--color-text);
}

.article-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 30px;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info p {
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.4;
}

.publish-date {
    color: var(--color-gray);
    font-size: 0.8rem;
}

/* --- CORPO DO ARTIGO --- */
.article-body {
    padding-bottom: 60px;
}

.intro-paragraph p,
.module p,
.testimonial p,
.disclaimer p {
    text-align: justify;
}

.intro-paragraph p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 40px;
}

.hero-image {
    margin-bottom: 40px;
}

.hero-image img,.module-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.hero-image figcaption {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-align: center;
}

.module {
    margin-bottom: 60px;
    opacity: 0; /* Para animação JS */
    transform: translateY(20px); /* Para animação JS */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.module.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.module-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.module p {
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.module-image {
    margin-top: 10px;
    margin-bottom: 30px;
}

/* --- BOTÕES DE CTA (ATUALIZADO E MELHORADO) --- */
.cta-wrapper {
    text-align: center; /* Garante que o conteúdo interno (botão e microcopy) seja centralizado */
    margin-top: 20px;
}

.header-cta {
    margin-top: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* Cor do WhatsApp */
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    border: none;
    cursor: pointer;
    white-space: nowrap; /* Impede a quebra de linha do texto */
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

.cta-microcopy {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-align: center;
    margin-top: 12px;
}

.final-cta-button {
    background-color: #e67e22; /* Cor de destaque para o CTA final */
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2);
}

.final-cta-button:hover {
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

/* --- BLOCOS DE CITAÇÃO E DEPOIMENTOS --- */
.quote-block {
    margin: 60px 0;
    padding: 30px;
    background-color: var(--color-light-gray);
    border-left: 5px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
}

.quote-block blockquote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.quote-block cite {
    font-weight: 600;
    color: var(--color-primary);
}

.testimonials-section {
    margin: 60px 0;
}

.testimonials-title {
    font-family: var(--font-serif);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.testimonial {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial span {
    font-weight: 600;
    color: var(--color-primary);
}

/* --- CTA FINAL --- */
.final-cta-section {
    text-align: center;
    background-color: var(--color-light-gray);
    padding: 50px 30px;
    border-radius: 8px;
    margin-top: 60px;
}

.final-cta-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* --- RODAPÉ --- */
.page-footer {
    background-color: var(--color-text);
    color: #ccc;
    padding: 40px 0;
    margin-top: 60px;
    font-size: 0.9rem;
}

.page-footer.container {
    text-align: center;
}

.disclaimer {
    border: 1px solid #555;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.footer-link {
    color: #fff;
    text-decoration: underline;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
.article-title {
        font-size: 2.2rem;
    }
.article-subtitle {
        font-size: 1.1rem;
    }
.module-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
.article-title {
        font-size: 1.8rem;
    }
.article-subtitle {
        font-size: 1rem;
    }
.cta-button {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
}