/* 
====================================================================
TRICOLOGIA DRA. VANESSA OTAVÏANÏ - CSS PADRÃO PARA ARTIGOS
====================================================================
Arquivo CSS centralizado para todos os artigos do site
Versão: 2.0
Data: Janeiro 2025
====================================================================
*/

/* =====================================================
   PADRÃO DE FAVICON - DOCUMENTAÇÃO
===================================================== */
/*
PADRÃO OFICIAL DE FAVICON PARA TODO O SITE:

HTML a ser usado no <head> de todas as páginas:

<!-- Para páginas na raiz (index.html) -->
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/logo.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/logo.png">
<link rel="shortcut icon" href="assets/images/logo.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/logo.png">
<meta name="theme-color" content="#281B36">

<!-- Para páginas em subpastas (artigos/index.html) -->
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="../assets/images/logo.png">
<link rel="icon" type="image/png" sizes="16x16" href="../assets/images/logo.png">
<link rel="shortcut icon" href="../assets/images/logo.png">
<link rel="apple-touch-icon" sizes="180x180" href="../assets/images/logo.png">
<meta name="theme-color" content="#281B36">

<!-- Para páginas em subpastas mais profundas (artigos/_content/*.html) -->
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="../../assets/images/logo.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../assets/images/logo.png">
<link rel="shortcut icon" href="../../assets/images/logo.png">
<link rel="apple-touch-icon" sizes="180x180" href="../../assets/images/logo.png">
<meta name="theme-color" content="#281B36">

REGRAS IMPORTANTES:
✅ SEMPRE usar logo.png oficial da marca
✅ Theme-color SEMPRE #281B36 (primary-dark)
✅ Ajustar "../" conforme localização da página
❌ NÃO criar arquivos .ico ou .svg customizados
❌ NÃO usar favicon-32x32.png, favicon-16x16.png ou similares
❌ NÃO usar apple-touch-icon.png separado

STATUS DE APLICAÇÃO (atualizado em Jan 2025):
✅ index.html (raiz)
✅ 404.html
✅ artigos/index.html
✅ artigos/index-2.0.html
✅ artigos/_Template/_TEMPLATE_CLEAN.html
✅ Todos os artigos em artigos/_content/*.html
*/

/* =====================================================
   CONFIGURAÇÃO DE FONTES E TIPOGRAFIA
===================================================== */

/* Google Fonts - Work Sans & Dancing Script são carregados via link */

/* Fonte customizada Recline Regular */
@font-face {
    font-family: 'Recline';
    src: url('../fonts/Recline-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Fonte Work Sans local (fallback) */
@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* =====================================================
   VARIÁVEIS CSS - PALETA DE CORES DA MARCA (ATUALIZADA)
===================================================== */

:root {
    /* === PALETA PRINCIPAL === */
    --primary-dark: #281B36;
    /* Texto principal e navegação */
    --primary-medium: #6B46C1;
    /* Botões primários e links */
    --primary-light: #9333ea;
    /* Acentos e elementos destaque */

    /* === NEUTROS === */
    --neutral-dark: #1F2937;
    /* Texto secundário */
    --neutral-medium: #6B7280;
    /* Texto terciário e metadados */
    --neutral-light: #F3F4F6;
    /* Background claro */
    --neutral-white: #FFFFFF;
    /* Background cards e modal */

    /* === FUNCIONAIS === */
    --success: #10B981;
    /* Confirmações e sucessos */
    --warning: #F59E0B;
    /* Alertas e avisos */
    --error: #EF4444;
    /* Erros e falhas */
    --whatsapp: #25D366;
    /* WhatsApp oficial */

    /* === SOMBRAS === */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* === COMPATIBILIDADE (DEPRECATED) === */
    --background-light: var(--neutral-light);
    --text-dark: var(--primary-dark);
}

/* =====================================================
   SISTEMA DE BADGES CENTRALIZADO (V8.0)
===================================================== */

/* Badge base - aplicado a todos os tipos */
.badge {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    font-family: 'Work Sans', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
}

/* Badge Destaque - Artigos fundamentais */
.badge-destaque {
    background: linear-gradient(135deg, #6B46C1, #9333EA) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Badge Novo - Artigos recentes (com animação) */
.badge-novo {
    background: linear-gradient(135deg, #EF4444, #DC2626) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    animation: pulse-badge 2s infinite !important;
}

/* Badge Popular - Problemas comuns */
.badge-popular {
    background: linear-gradient(135deg, #F59E0B, #D97706) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Badge Completo - Guias extensos */
.badge-completo {
    background: linear-gradient(135deg, #10B981, #059669) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Badge Técnico - Tratamentos avançados */
.badge-tecnico,
.badge-técnico {
    background: linear-gradient(135deg, #3B82F6, #2563EB) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Badge Especialista - Casos complexos */
.badge-especialista {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Badge Artigo - Fallback padrão */
.badge-artigo {
    background: linear-gradient(135deg, #6B7280, #4B5563) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Animação para badge "Novo" */
@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(239, 68, 68, 0.5);
    }
}

/* =====================================================
   SISTEMA DE BADGES - FUNÇÕES JAVASCRIPT CENTRALIZADAS
===================================================== */

/*
FUNÇÃO CENTRALIZADA DE BADGES V8.0 - Para incluir em qualquer página:

// Configuração centralizada de badges
const BADGE_CONFIG = {
    'destaque': { text: 'Destaque', class: 'badge-destaque' },
    'novo': { text: 'Novo', class: 'badge-novo' },
    'popular': { text: 'Popular', class: 'badge-popular' },
    'completo': { text: 'Guia Completo', class: 'badge-completo' },
    'tecnico': { text: 'Técnico', class: 'badge-tecnico' },
    'especialista': { text: 'Especialista', class: 'badge-especialista' }
};

// Constante temporal padrão (60 dias)
const NEW_ARTICLE_THRESHOLD_DAYS = 60;

// Função principal para gerar badge HTML
function generateUnifiedBadgeHTML(article) {
    const currentDate = new Date();
    const publishDate = new Date(article.publishDate || article.publicationDate);
    const daysDiff = Math.floor((currentDate - publishDate) / (1000 * 60 * 60 * 24));

    // PRIORIDADE 1: Badge manual do JSON (sempre prioritária)
    if (article.badge && BADGE_CONFIG[article.badge.toLowerCase()]) {
        return getBadgeHTML(article.badge.toLowerCase());
    }

    // PRIORIDADE 2: Sistema automático temporal
    if (!isNaN(daysDiff) && daysDiff <= NEW_ARTICLE_THRESHOLD_DAYS) {
        return getBadgeHTML('novo');
    }

    // PRIORIDADE 3: Categorização automática
    if (article.originalTag === 'Alopecia' || article.originalTag === 'Queda Capilar') {
        return getBadgeHTML('popular');
    }

    // PRIORIDADE 4: Artigos extensos
    const readTime = parseInt(article.readTime || article.readingTime);
    if (!isNaN(readTime) && readTime >= 12) {
        return getBadgeHTML('completo');
    }

    return ''; // Sem badge
}

// Função auxiliar para gerar HTML
function getBadgeHTML(badgeType) {
    const config = BADGE_CONFIG[badgeType];
    if (!config) return '';
    return `<div class="badge ${config.class}">${config.text}</div>`;
}

USO: const badgeHtml = generateUnifiedBadgeHTML(article);
*/

/* =====================================================
   CONFIGURAÇÕES GLOBAIS
===================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: #ffffff !important;
    /* Força fundo branco */
    color: var(--text-dark);
    line-height: 1.6;
}

/* Garantir fundo branco em todos os elementos principais */
html,
body,
main {
    background-color: #ffffff !important;
}

/* =====================================================
   TIPOGRAFIA - CLASSES UTILITÁRIAS
===================================================== */

.font-logo {
    font-family: 'Dancing Script', cursive;
}

/* Typography System - Following Protocol */
.font-heading {
    font-family: 'Recline', serif;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.font-body {
    font-family: 'Work Sans', sans-serif;
}

/* Legacy compatibility */
.font-title {
    font-family: 'Recline', serif;
    font-weight: 400;
    letter-spacing: -0.025em;
}

/* =====================================================
   CORES - CLASSES UTILITÁRIAS
===================================================== */

.primary-dark-text {
    color: var(--primary-dark);
}

.primary-medium-text {
    color: var(--primary-medium);
}

.primary-light-text {
    color: var(--primary-light);
}

.neutral-dark-text {
    color: var(--neutral-dark);
}

.primary-dark-bg {
    background-color: var(--primary-dark);
}

.primary-medium-bg {
    background-color: var(--primary-medium);
}

.primary-light-bg {
    background-color: var(--primary-light);
}

.neutral-light-bg {
    background-color: var(--neutral-light);
}

/* =====================================================
   HEADER E NAVEGAÇÃO
===================================================== */

/* === DROPDOWN MENU (PADRONIZADO) === */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--neutral-white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border-radius: 8px;
    padding: 8px 0;
    top: 100%;
    right: 0;
    border: 1px solid var(--neutral-light);
}

.dropdown-content a {
    color: var(--primary-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: var(--neutral-light);
    color: var(--primary-medium);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-content a:last-child {
    border-radius: 0 0 8px 8px;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* =====================================================
   ARTIGOS - ESTILIZAÇÃO DE CONTEÚDO
===================================================== */

/* Container principal do artigo */
.article-content {
    max-width: none;
}

.article-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #374151;
}

.article-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    scroll-margin-top: 100px;
    color: var(--primary-dark);
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    scroll-margin-top: 100px;
    color: var(--primary-medium);
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* =====================================================
   BREADCRUMBS
===================================================== */

.breadcrumb {
    font-size: 0.875rem;
    color: #6B7280;
}

.breadcrumb a {
    color: var(--primary-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

/* === BOTÕES E ELEMENTOS INTERATIVOS (PADRONIZADOS) === */

/* Botões de compartilhamento */
.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Cores específicas para redes sociais */
.share-facebook {
    background-color: #1877F2;
}

.share-twitter {
    background-color: #1DA1F2;
}

.share-linkedin {
    background-color: #0A66C2;
}

.share-whatsapp {
    background-color: var(--whatsapp);
}

/* Efeitos hover padronizados */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* === BOTÕES UTILITÁRIOS === */
.btn-primary {
    background-color: var(--primary-medium);
    color: var(--neutral-white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-medium);
    border: 2px solid var(--primary-medium);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--primary-medium);
    color: var(--neutral-white);
    transform: translateY(-2px);
}

/* =====================================================
   BOXES E DESTAQUES
===================================================== */

/* Box de insight personalizado */
.insight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.insight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: -1;
}

/* Garantir contraste adequado no texto da insight-box */
.insight-box p,
.insight-box h1,
.insight-box h2,
.insight-box h3,
.insight-box h4,
.insight-box h5,
.insight-box h6,
.insight-box strong,
.insight-box em,
.insight-box span {
    color: white !important;
}

/* Ícone opcional para a insight-box */
.insight-box.with-icon::after {
    content: '💡';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* =====================================================
   CTA BOXES - CHAMADAS PARA AÇÃO
===================================================== */

/* CTA box com gradiente */
.cta-box {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Garantir contraste adequado no texto do CTA */
.cta-box p,
.cta-box h1,
.cta-box h2,
.cta-box h3,
.cta-box h4,
.cta-box h5,
.cta-box h6,
.cta-box strong,
.cta-box em,
.cta-box span {
    color: white !important;
}

/* Botão dentro do CTA */
.cta-box .cta-button {
    background: white;
    color: #8B5CF6;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-box .cta-button:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   CTA FINAL - CHAMADA PARA AÇÃO PRINCIPAL
===================================================== */

.final-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(40, 27, 54, 0.3);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.final-cta>* {
    position: relative;
    z-index: 2;
}

.final-cta h2,
.final-cta h3,
.final-cta p,
.final-cta strong {
    color: white !important;
}

.final-cta .cta-button {
    background: white;
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.final-cta .cta-button:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

/* === ARTIGOS RELACIONADOS (PADRONIZADOS) === */

.related-articles {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--neutral-light);
}

.related-articles h2 {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.article-card {
    background: var(--neutral-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-light);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-card-content {
    padding: 1.5rem;
}

.article-card h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-card p {
    color: var(--neutral-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-card .read-more {
    color: var(--primary-medium);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.article-card .read-more:hover {
    color: var(--primary-dark);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--neutral-light);
    margin-bottom: 1rem;
}

.article-tag {
    background: var(--neutral-light);
    color: var(--primary-medium);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* === RESPONSIVIDADE PADRONIZADA === */

@media (max-width: 1023px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .related-articles h2 {
        font-size: 2rem;
    }

    .final-cta {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
}

/* === RESPONSIVIDADE - MOBILE FIRST === */

/* Tablets */
@media (min-width: 768px) {
    .article-content h2 {
        margin-top: 4rem;
    }

    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .treatment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =====================================================
   IMPRESSÃO
===================================================== */

@media print {
    .no-print {
        display: none !important;
    }

    .article-content {
        font-size: 12pt;
        line-height: 1.6;
    }

    .article-content h2 {
        page-break-after: avoid;
        margin-top: 2rem;
    }

    /* Remover cores de fundo para economizar tinta */
    * {
        background: white !important;
        color: black !important;
    }
}

/* === FAQ SECTION (PADRONIZADO) === */

/* Estilos para o FAQ */
details {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--neutral-white);
}

summary {
    display: block;
    padding: 1.5rem;
    background: var(--neutral-white);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--neutral-dark) !important;
    transition: background-color 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
    border: none;
    outline: none;
}

summary:hover {
    background-color: var(--neutral-light);
}

summary::-webkit-details-marker {
    display: none;
}

summary::before {
    content: '+';
    float: right;
    font-size: 1.25rem;
    color: var(--primary-medium) !important;
    transition: transform 0.2s ease;
}

details[open] summary::before {
    content: '−';
    transform: rotate(180deg);
}

details[open] summary {
    border-bottom: 1px solid var(--neutral-light);
}

.faq-content {
    padding: 1.5rem;
    background: var(--neutral-white) !important;
    color: var(--neutral-medium) !important;
    line-height: 1.6;
}

.faq-content p {
    color: var(--neutral-medium) !important;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Force visibility of FAQ content */
details .faq-content,
details .faq-content p,
details .faq-content * {
    color: var(--neutral-medium) !important;
    background: var(--neutral-white) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Debug rule - remove if text becomes visible */
.final-cta .faq-content p {
    color: var(--neutral-dark) !important;
    text-shadow: none !important;
    font-weight: normal !important;
}

/* =====================================================
   FIM DO ARQUIVO CSS
===================================================== */