/*======================================================================
  ASSESSOR CRÍTICO | CSS COMPLETO: GUARDIÕES DA PROMESSA (V3.0)
  ----------------------------------------------------------------------
  Foco: Impacto Visual, Hierarquia de Conteúdo e Conversão Máxima.
======================================================================*/

/* 1. VARIÁVEIS E RESET BÁSICO */
:root {
    --color-primary: #8B4513;     /* Marrom Couro (Forte e Sólido) */
    --color-secondary: #FFD700;   /* Dourado da Chama/Luz (Acento de Fé) */
    --color-cta-danger: #CC0000;  /* Vermelho Forte para CTA Final (Urgência) */
    --color-text: #333;
    --color-bg-light: #F9F9F9;
    --color-bg-dark: #333;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg-light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* 2. TIPOGRAFIA */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 0.5em;
}

/* Tipografia para a Home Page (Portal) */
.headline-portal {
    font-size: 3.2rem;
    color: var(--color-secondary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.subheadline-portal {
    font-size: 1.4rem;
    margin-bottom: 2.5em;
    color: #F0F0F0;
}

/* 3. BOTÕES (CTAs) */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.btn-primary:hover {
    background-color: #FFEC8B;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    padding: 12px 28px;
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-bg-dark);
}

.btn-dark-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 10px 20px;
}

.btn-disabled {
    background-color: #CCC;
    color: #666;
    cursor: not-allowed;
    border: none;
    opacity: 0.7;
}

/* Animação de Pulso (Urgência) */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* 4. HOME PAGE (O PORTAL) STYLING */

.hero-portal {
    background: url('assets/img/portal-bg.jpg') no-repeat center center/cover; 
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
}

.hero-portal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 1;
}

.hero-portal .container {
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.trilogy-visual {
    max-width: 450px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* Seções (Mosaico e Público) */
.section-light {
    background-color: var(--color-bg-light);
    color: var(--color-text);
    padding: 80px 0;
}

.section-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-bg-light);
    padding: 80px 0;
}

.section-dark h2 {
    color: var(--color-secondary);
}

.trilogy-grid, .target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.trilogy-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-top: 5px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trilogy-item:hover {
    transform: translateY(-5px);
    border-top-color: var(--color-secondary);
}

.trilogy-item h3 {
    font-size: 1.6rem;
    color: var(--color-primary);
}

.target-item {
    background: #444;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 5px solid var(--color-secondary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.target-item p {
    margin-bottom: 20px;
}

.gold-text {
    color: var(--color-secondary);
}

/* Seção de Citação Final */
.section-quote {
    background-color: var(--color-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.3;
}

.quote-author {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Utilidades */
.mt-40 {
    margin-top: 40px;
}

footer {
    padding: 20px 0;
    background-color: #222;
    color: #AAA;
    font-size: 0.9rem;
}

/* 5. PÁGINA DE CAPTURA (BRUTAL CONVERSION) STYLING */

.conversion-page {
    background-color: var(--color-bg-dark); 
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.conversion-box {
    background-color: var(--color-bg-light);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5); 
}

.pc-headline {
    color: var(--color-cta-danger); 
    font-size: 2.5rem;
    line-height: 1.1;
}

.pc-subheadline {
    color: var(--color-text);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.pc-offer-title {
    color: var(--color-secondary);
    font-size: 1.8rem;
    margin-top: 15px;
    border-bottom: 2px dashed var(--color-secondary);
    padding-bottom: 10px;
}

.pc-offer-text {
    margin-bottom: 20px;
}

input[type="text"], input[type="email"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #AAA;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-capture {
    background-color: var(--color-cta-danger); 
    color: white;
    width: 100%;
    margin-top: 10px;
}

.btn-capture:hover {
    background-color: #AA0000;
}

.pc-small-print {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* 6. PÁGINA DO PRÓLOGO (LEITURA) STYLING */

.page-leitura {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 100px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.page-leitura h1 {
    color: var(--color-primary);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 10px;
}
.prologo-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: justify;
    text-indent: 40px;
}
.prologo-text strong {
    color: var(--color-primary);
}
.versiculo-final {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    margin: 40px auto;
    padding: 20px;
    border-left: 5px solid var(--color-secondary);
    background-color: #FAFAFA;
    text-align: center;
}
.bloco-tripwire {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--color-bg-dark);
    border-radius: 8px;
    text-align: center;
}
.bloco-tripwire h2 {
    color: var(--color-secondary);
    margin-bottom: 15px;
}


/* 7. RESPONSIVIDADE E CTAS FLUTUANTES */

.btn-floating {
    display: none; 
}

@media (max-width: 768px) {
    /* Home Page */
    .headline-portal {
        font-size: 2.2rem;
    }
    .subheadline-portal {
        font-size: 1.1rem;
    }
    .trilogy-grid, .target-grid {
        grid-template-columns: 1fr;
    }
    .quote-text {
        font-size: 1.8rem;
    }

    /* Conversão Page - Ativar CTA Flutuante */
    .btn-floating {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 15px;
        background-color: var(--color-secondary);
        color: var(--color-primary);
        z-index: 1000;
        text-decoration: none;
        font-weight: 700;
        border-top: 3px solid var(--color-primary);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .conversion-box, .page-leitura {
        margin-top: 80px; 
        margin-bottom: 80px; /* Garante que o conteúdo não fique sob o CTA flutuante */
    }

    .pc-headline {
        font-size: 2rem;
    }

    .btn {
        width: 100%; 
        margin-bottom: 10px;
    }

    /* Estilo específico para o CTA Flutuante da Página do Prólogo (Tripwire) */
    .btn-tripwire-float {
        background-color: var(--color-primary);
        color: white !important; 
        border-top: 3px solid var(--color-secondary);
    }
}

