/* ============================================
   IDENTIDADE VISUAL - QUEM MEXEU NO MEU DINHEIRO
   ============================================
   Cores:
   - Amarelo Ouro: #FFB700
   - Roxo Sóbrio: #4C2A85
   - Verde Sucesso: #2A9D8F
   - Cinza Chumbo: #263238
   - Branco: #FFFFFF
   
   Fontes:
   - Títulos: Lilita One
   - Corpo: Montserrat
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #263238;
    line-height: 1.6;
    background-color: #FFFFFF;
}

/* ============================================
   TIPOGRAFIA GERAL
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lilita One', cursive;
    color: #4C2A85;
}

.section-title-modern {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #4C2A85;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    text-align: center;
    color: #263238;
    margin-bottom: 3rem;
}

/* ============================================
   SEÇÃO 1: HERO MODERNO
   ============================================ */

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content-modern {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.hero-title-modern {
    font-size: 2.8rem;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-modern {
    font-size: 2rem;
    color: #FFB700;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.cta-button-modern {
    background-color: #2A9D8F;
    color: #FFFFFF;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
}

.cta-button-modern:hover {
    background-color: #1f7a6f;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(42, 157, 143, 0.6);
}

/* ============================================
   SEÇÃO 2: CHECKOUT MODERNO
   ============================================ */

.checkout-modern {
    background: linear-gradient(135deg, #FFB700 0%, #FFC933 100%);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-modern-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.checkout-header h2 {
    font-size: 2.2rem;
    color: #4C2A85;
    margin-bottom: 0.5rem;
}

.checkout-header p {
    font-size: 1.1rem;
    color: #263238;
    margin-bottom: 2rem;
}

.checkout-box-modern {
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(76, 42, 133, 0.2);
}

.checkout-box-modern h3 {
    font-size: 1.5rem;
    color: #4C2A85;
    margin-bottom: 1.5rem;
}

.price-section {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-old {
    text-decoration: line-through;
    color: rgba(38, 50, 56, 0.5);
    margin-right: 1rem;
}

.price-new {
    color: #FFB700;
    font-weight: bold;
    font-size: 2.5rem;
}

.price-description {
    font-size: 1rem;
    color: #263238;
    margin-bottom: 1.5rem;
}

.cta-button-checkout-modern {
    background-color: #2A9D8F;
    color: #FFFFFF;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
    margin-bottom: 1rem;
}

.cta-button-checkout-modern:hover {
    background-color: #1f7a6f;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(42, 157, 143, 0.6);
}

.guarantee-text {
    font-size: 0.9rem;
    color: #263238;
    margin-top: 1rem;
}

/* ============================================
   SEÇÃO 3: REVELAÇÃO MODERNA
   ============================================ */

.revelation-modern {
    background-color: #FFFFFF;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.revelation-modern-container {
    max-width: 1200px;
    width: 100%;
}

.revelation-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.book-cover-modern {
    max-width: 350px;
    margin: 0 auto;
}

.book-cover-modern img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(76, 42, 133, 0.2);
}

.revelation-text-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.revelation-intro-modern {
    font-size: 1.1rem;
    color: #263238;
    line-height: 1.8;
}

.revelation-main-modern {
    font-size: 1.8rem;
    color: #4C2A85;
    font-family: 'Lilita One', cursive;
    font-weight: bold;
}

.revelation-description-modern {
    font-size: 1rem;
    color: #263238;
    line-height: 1.8;
}

/* ============================================
   SEÇÃO 4: SOLUÇÃO MODERNA
   ============================================ */

.video-modern {
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modern-container {
    max-width: 1000px;
    width: 100%;
}

.video-wrapper-modern {
    margin-top: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(76, 42, 133, 0.15);
}

.video-wrapper-modern iframe {
    display: block;
    border-radius: 16px;
}

/* ============================================
   SEÇÃO 5: TRANSFORMAÇÃO MODERNA
   ============================================ */

.transformation-modern {
    background-color: #FFFFFF;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transformation-modern-container {
    max-width: 1200px;
    width: 100%;
}

.transformation-subtitle-modern {
    font-size: 1.3rem;
    color: #FFB700;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.transformation-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card-modern {
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card-modern:hover {
    background-color: #FFB700;
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card-modern h3 {
    font-size: 1.2rem;
    color: #4C2A85;
    margin-bottom: 0.8rem;
}

.benefit-card-modern p {
    font-size: 0.95rem;
    color: #263238;
    line-height: 1.6;
}

.transformation-image-modern {
    margin-top: 3rem;
    text-align: center;
}

.transformation-image-modern img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(76, 42, 133, 0.2);
}

/* ============================================
   SEÇÃO 6: CTA FINAL MODERNA
   ============================================ */

.final-cta-modern {
    background: linear-gradient(135deg, #4C2A85 0%, #2A1B4F 100%);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-modern-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.final-cta-modern-container h2 {
    font-size: 2.2rem;
    color: #FFB700;
    margin-bottom: 0.5rem;
}

.final-cta-modern-container > p:first-of-type {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.final-checkout-box-modern {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.final-checkout-box-modern h3 {
    font-size: 1.5rem;
    color: #4C2A85;
    margin-bottom: 1.5rem;
}

.final-price-section {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.final-price-old {
    text-decoration: line-through;
    color: rgba(38, 50, 56, 0.5);
    margin-right: 1rem;
}

.final-price-new {
    color: #FFB700;
    font-weight: bold;
    font-size: 2.5rem;
}

.final-price-description {
    font-size: 1rem;
    color: #263238;
    margin-bottom: 1.5rem;
}

.final-cta-button-modern {
    background-color: #2A9D8F;
    color: #FFFFFF;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
    margin-bottom: 1rem;
}

.final-cta-button-modern:hover {
    background-color: #1f7a6f;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(42, 157, 143, 0.6);
}

.final-guarantee-text {
    font-size: 0.9rem;
    color: #263238;
    margin-top: 1rem;
}

.final-cta-text {
    font-size: 1rem;
    color: #FFFFFF;
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-modern {
    background-color: #263238;
    color: #FFFFFF;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 1.8rem;
    }

    .hero-subtitle-modern {
        font-size: 1.3rem;
    }

    .section-title-modern {
        font-size: 1.8rem;
    }

    .revelation-content-modern {
        grid-template-columns: 1fr;
    }



    .transformation-grid-modern {
        grid-template-columns: 1fr;
    }

    .checkout-box-modern,
    .final-checkout-box-modern {
        padding: 1.5rem;
    }

    .cta-button-modern,
    .cta-button-checkout-modern,
    .final-cta-button-modern {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 1.5rem;
    }

    .hero-subtitle-modern {
        font-size: 1.1rem;
    }

    .section-title-modern {
        font-size: 1.5rem;
    }

    .price-new,
    .final-price-new {
        font-size: 1.8rem;
    }

    .cta-button-modern,
    .cta-button-checkout-modern,
    .final-cta-button-modern {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
}
