:root {
    --primary-bg: #f8f8f8;
    --secondary-bg: #ffffff;
    --text-color: #333333;
    --heading-color: #000000;
    --accent-color: #eab308; /* Amarelo Gold do Lift Detox */
    --cta-bg: #22c55e; /* Verde de Conversão */
    --cta-hover: #16a34a;
    --border-color: #e0e0e0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* Header - Estilo de Notícias */
.header {
    background: var(--heading-color);
    color: #fff;
    padding: 15px 0;
    border-bottom: 5px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
}
.news-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.date { opacity: 0.8; }

/* Conteúdo do Artigo */
.article-content {
    background: var(--secondary-bg);
    padding: 40px 30px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: left;
}

.breadcrumb {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--heading-color);
}
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--heading-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}
h3 {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--heading-color);
}

p { margin-bottom: 15px; }
ul { list-style-type: disc; margin-left: 25px; margin-bottom: 15px; }
li { margin-bottom: 8px; }

.author-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 15px;
}
.author { font-weight: 600; color: var(--heading-color); }
.read-time { background: #f0f0f0; padding: 3px 8px; border-radius: 5px; }

.featured-image {
    text-align: center;
    margin: 30px 0;
}
.featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.image-caption {
    font-size: 0.85rem;
    color: #777;
    margin-top: 10px;
}

.testimonial-box {
    background: #fdfae5; /* Cor clara que remete a depoimento */
    border-left: 5px solid var(--accent-color);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    border-radius: 5px;
}
.testimonial-author {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-weight: 600;
    color: var(--heading-color);
}

.highlight-final {
    font-weight: 700;
    color: var(--accent-color);
    background-color: var(--heading-color); /* Fundo preto para destaque */
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
}

/* Call to Action Banner */
.cta-banner {
    background: #f9f9f9;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 25px;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.cta-banner img {
    max-width: 200px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.cta-content { flex: 1; }
.cta-highlight {
    font-weight: 700;
    color: #dc2626; /* Vermelho de Urgência */
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.cta-content h4 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    line-height: 1.2;
}
.free-text { color: var(--cta-bg); font-weight: 700; }
.small-print { font-size: 0.8rem; color: #777; margin-top: 10px; }

/* Botões CTA */
.cta-button {
    display: inline-block;
    background: var(--cta-bg);
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 900;
    padding: 18px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
}
.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.final-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed var(--border-color);
}
.final-cta-btn {
    background: var(--accent-color); /* Botão final com a cor de destaque do produto */
    color: var(--heading-color);
    box-shadow: 0 5px 20px rgba(234, 179, 8, 0.4);
}
.final-cta-btn:hover {
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.5);
}

/* Disclaimer Artigo */
.disclaimer-article {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #666;
    border-left: 3px solid #ccc;
}
.disclaimer-article strong { color: var(--heading-color); }

/* Footer */
.footer {
    background: var(--heading-color);
    color: #ccc;
    padding: 30px 0;
    font-size: 0.8rem;
    margin-top: 30px;
    text-align: center;
}
.footer-links { margin-top: 15px; }
.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }


/* Animações */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}
.pulse { animation: pulse 2s infinite ease-in-out; }

@keyframes promo-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.promo-pulse { animation: promo-pulse 2s infinite ease-in-out; }


/* Responsividade */
@media (max-width: 768px) {
    .header { flex-direction: column; gap: 5px; }
    .news-logo { font-size: 1.5rem; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; }
    .cta-banner { flex-direction: column; }
    .cta-button { font-size: 1.1rem; padding: 15px 25px; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .article-content { padding: 20px 15px; }
    .cta-content h4 { font-size: 1.5rem; }
}