/* ==========================================================================
   LANDING PAGE: COMO ESTUDAR A FÉ CATÓLICA NA VIDA ADULTA (VERSÃO LIGHT)
   Especialista: Ariel Lazari
   Desenvolvido por: Catedral Digital
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN SYSTEM & VARIÁVEIS (VERSÃO LIGHT)
   -------------------------------------------------------------------------- */
:root {
    /* Paleta Sacra Luminosa e Elegante */
    --bg-main: #FDFBF7;
    --bg-section-alt: #F5EFE4;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFFDF9;
    --bg-gold-glow: rgba(197, 160, 89, 0.08);

    --gold-primary: #C59B27;
    --gold-light: #DFBD6C;
    --gold-dark: #907019;
    --gold-gradient: linear-gradient(135deg, #DFBD6C 0%, #C59B27 50%, #907019 100%);
    --gold-border: rgba(197, 160, 89, 0.35);

    --crimson-primary: #8B1E1E;
    --crimson-hover: #A72424;

    --green-primary: #10B981;
    --green-hover: #059669;
    --green-gradient: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);

    --text-primary: #1C1815;
    --text-secondary: #473F39;
    --text-muted: #736961;
    --text-gold: #A37E1C;

    --font-title: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 12px 32px rgba(197, 160, 89, 0.1);
    --shadow-btn: 0 10px 25px rgba(16, 185, 129, 0.35);

    --container-max: 1100px;
    --container-narrow: 840px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    line-height: 1.65;
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 0%, #FFFFFF 0%, #FDFBF7 70%);
}

img, picture {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & HEADINGS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    margin-bottom: 1.2rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--gold-dark);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.text-gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

/* --------------------------------------------------------------------------
   4. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: 4.5rem 0;
    position: relative;
}

.section-alt {
    background-color: var(--bg-section-alt);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
}

/* --------------------------------------------------------------------------
   5. COMPONENTS & BUTTONS
   -------------------------------------------------------------------------- */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    padding: 1.25rem 2rem;
    background: var(--green-gradient);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-btn);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 1.5rem auto 0;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.01);
    background: linear-gradient(135deg, #34D399 0%, #10B981 50%, #059669 100%);
    box-shadow: 0 14px 35px rgba(16, 185, 129, 0.5);
    border-color: #FFFFFF;
}

.btn-cta:hover::after {
    left: 100%;
}

.micro-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.micro-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION (VERSÃO LIGHT)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 4rem 0 5rem;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.hero-lead {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 780px;
    margin: 0 auto 1.8rem;
    line-height: 1.7;
}

.hero-lead strong {
    color: var(--gold-dark);
}

.hero-mockup-container {
    max-width: 650px;
    margin: 2.5rem auto 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gold-border);
    transition: transform 0.4s ease;
}

.hero-mockup-container:hover {
    transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   7. SEÇÃO CONTEÚDO DA FORMAÇÃO & MÓDULOS
   -------------------------------------------------------------------------- */
.curriculum-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.curriculum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

.pillar-badge {
    display: inline-block;
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-dark);
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gold-border);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.module-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.module-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1.2rem;
    background: #FDFBF7;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 0.5rem;
}

.module-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.module-card:hover .module-img-wrapper img {
    transform: scale(1.05);
}

.module-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.module-card h4 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

/* --------------------------------------------------------------------------
   8. SEÇÃO BÔNUS
   -------------------------------------------------------------------------- */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.18);
}

.bonus-img-wrapper {
    width: 100%;
    height: 210px;
    margin-bottom: 1.25rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #FDFBF7;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 0.8rem;
}

.bonus-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-img-wrapper img {
    transform: scale(1.06);
}

.bonus-header {
    margin-bottom: 1rem;
}

.bonus-badge {
    background: var(--gold-gradient);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.bonus-social-proof {
    margin-top: 1rem;
    padding: 0.6rem 0.9rem;
    background: rgba(197, 160, 89, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   9. SEÇÃO QUEBRA DE OBJEÇÃO & FILOSOFIA
   -------------------------------------------------------------------------- */
.philosophy-box {
    background: #FFFFFF;
    border: 2px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.philosophy-box p {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.philosophy-box p strong {
    color: var(--gold-dark);
}

/* --------------------------------------------------------------------------
   10. SEÇÃO PARA QUEM É (FRED)
   -------------------------------------------------------------------------- */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin: 2.5rem 0;
}

.target-item {
    background: #FFFFFF;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.1rem 1.1rem 2.8rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-soft);
}

.target-item::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--green-primary);
    font-weight: 900;
    font-size: 1.2rem;
}

.reassurance-box {
    background: #FFFFFF;
    border-left: 4px solid var(--gold-primary);
    border-top: 1px solid var(--gold-border);
    border-right: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    padding: 1.8rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.reassurance-box p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.reassurance-box p:last-child {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--gold-dark);
}

/* --------------------------------------------------------------------------
   11. SEÇÃO ROTINA PERFEITA
   -------------------------------------------------------------------------- */
.routine-content {
    background: #FFFFFF;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-card);
    max-width: 840px;
    margin: 0 auto;
}

.routine-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   12. SEÇÃO PREÇO & CHECKOUT (OFERTA)
   -------------------------------------------------------------------------- */
.pricing-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #F5EFE4 0%, #FDFBF7 100%);
}

.pricing-card {
    background: #FFFFFF;
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 15px 45px rgba(197, 160, 89, 0.2);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.35rem 1.4rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.price-installment {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 3.6rem);
    font-weight: 800;
    color: var(--gold-dark);
    margin: 1.5rem 0 0.5rem;
    line-height: 1;
}

.price-total {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   13. SEÇÃO ACESSO VITALÍCIO
   -------------------------------------------------------------------------- */
.lifetime-box {
    background: #FFFFFF;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    margin-top: 3rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-soft);
}

.lifetime-list {
    list-style: none;
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.9rem;
}

.lifetime-list li {
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.lifetime-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   14. AUTORIDADE (ARIEL LAZARI)
   -------------------------------------------------------------------------- */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    align-items: center;
}

.bio-img-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gold-border);
    box-shadow: var(--shadow-card);
}

.bio-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bio-subtitle {
    color: var(--gold-dark);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    padding: 3rem 0;
    background-color: #EDE6D8;
    border-top: 1px solid var(--gold-border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   16. MEDIA QUERIES (RESPONSIVIDADE)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .target-layout, .routine-layout, .bio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .routine-layout {
        padding: 2rem 1.25rem;
    }

    .bio-img-container {
        max-width: 320px;
        margin: 0 auto;
    }

    .btn-cta {
        width: 100%;
        padding: 1.15rem 1rem;
        font-size: 1.05rem;
    }

    .curriculum-card, .pricing-card {
        padding: 2rem 1.25rem;
    }
}
