/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.main-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.sub-headline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
}

.section-intro {
    font-size: 1.2rem;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção Hero */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.ebook-preview {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.ebook-cover {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.ebook-cover:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Seção de Dores */
.pain-points-section {
    padding: 80px 0;
    background: #ffffff;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pain-point {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-point h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pain-point p {
    color: #666;
    font-size: 1rem;
}

.pain-conclusion {
    text-align: center;
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção de Solução */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.solution-section .section-title,
.solution-section .section-intro {
    color: white;
}

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

.benefit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.benefit p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Seção de Conteúdo */
.content-section {
    padding: 80px 0;
    background: #ffffff;
}

.chapters-list {
    max-width: 800px;
    margin: 0 auto;
}

.chapter {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chapter:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.chapter-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
}

.chapter-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.chapter-content p {
    color: #666;
    font-size: 1rem;
}

/* Seção de Depoimentos */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #667eea;
    font-weight: 600;
}

/* Seção de Preços */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    text-align: center;
}

.pricing-section .section-title,
.pricing-intro {
    color: white;
}

.pricing-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 3rem auto 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.original-price {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.strikethrough {
    text-decoration: line-through;
}

.current-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.price-highlight {
    color: #ffd700;
}

.installments {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Botões CTA */
.cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.cta-subtitle {
    font-size: 0.9rem;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
    opacity: 0.9;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
    }
    100% {
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    }
}

/* Seção de Garantia */
.guarantee-section {
    padding: 80px 0;
    background: #e8f5e8;
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.guarantee-icon {
    font-size: 4rem;
}

.guarantee-text h3 {
    font-size: 2rem;
    color: #2d5a2d;
}

.guarantee-description {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.guarantee-conclusion {
    font-size: 1.3rem;
    color: #2d5a2d;
    font-weight: bold;
}

/* Seção FAQ */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #667eea;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Seção Final CTA */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.final-cta-section .section-title {
    color: white;
}

.choices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.choice {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.choice-negative {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.choice-positive {
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.choice-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.choice h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.choice p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.final-message {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
    }
    
    .chapter {
        flex-direction: column;
        text-align: center;
    }
    
    .chapter-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .guarantee-badge {
        flex-direction: column;
    }
    
    .choices-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .pain-points-section,
    .solution-section,
    .content-section,
    .testimonials-section,
    .pricing-section,
    .guarantee-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}



/* Galeria de Screenshots */
.screenshots-gallery {
    position: relative;
    max-width: 100%;
    margin: 3rem auto;
}

.gallery-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.screenshot-item {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: white;
}

.screenshot-image {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshot-image:hover {
    transform: scale(1.02);
}

/* Navegação da galeria */
.gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    transform: translateY(-50%);
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-btn:active {
    transform: scale(0.95);
}

/* Indicadores */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #667eea;
    transform: scale(1.2);
}

.indicator:hover {
    background: #667eea;
    transform: scale(1.1);
}

/* Responsividade da galeria */
@media (max-width: 768px) {
    .gallery-nav {
        padding: 0 0.5rem;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .screenshot-image {
        max-height: 400px;
    }
    
    .screenshot-item {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .screenshot-image {
        max-height: 300px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Suporte para touch/swipe */
.gallery-track {
    touch-action: pan-x;
}

.screenshots-gallery {
    touch-action: pan-x;
    user-select: none;
}


/* Seção de Bônus */
.bonus-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.bonus-item {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.bonus-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-cover {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.bonus-cover:hover {
    transform: scale(1.05);
}

.bonus-icon {
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.bonus-value {
    margin-top: 1rem;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    color: white;
}

.bonus-original-price {
    display: block;
    font-size: 0.9rem;
    text-decoration: line-through;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.bonus-current-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
}

.bonus-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.bonus-subtitle {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.bonus-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.bonus-highlight {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
    font-weight: 600;
    color: #856404 !important;
}

.bonus-total {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    color: white;
}

.bonus-total-text {
    font-size: 1.3rem;
    margin: 0;
}

.bonus-free {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsividade da seção de bônus */
@media (max-width: 768px) {
    .bonus-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .bonus-image {
        margin-bottom: 1rem;
    }
    
    .bonus-cover {
        max-width: 200px;
    }
    
    .bonus-title {
        font-size: 1.5rem;
    }
    
    .bonus-total {
        padding: 1.5rem;
    }
    
    .bonus-total-text {
        font-size: 1.1rem;
    }
    
    .bonus-free {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .bonus-section {
        padding: 60px 0;
    }
    
    .bonus-item {
        padding: 1.5rem;
    }
    
    .bonus-cover {
        max-width: 150px;
    }
    
    .bonus-icon {
        width: 100px;
        height: 130px;
        font-size: 2.5rem;
    }
    
    .bonus-title {
        font-size: 1.3rem;
    }
    
    .bonus-subtitle {
        font-size: 1rem;
    }
}


/* Imagens nos boxes de dores e soluções */
.pain-image, .benefit-image {
    margin: 1.5rem 0 2rem 0;
    text-align: center;
    position: relative;
}

.pain-visual, .benefit-visual {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.benefit-visual {
    object-fit: contain;
    max-height: 200px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.pain-visual:hover, .benefit-visual:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.benefit-visual:hover {
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.6);
}

/* Efeito de brilho nas imagens */
.pain-image::before, .benefit-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 15px;
}

.pain-image:hover::before, .benefit-image:hover::before {
    opacity: 1;
}

/* Melhorar layout dos boxes para destacar imagens */
.pain-point, .benefit {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pain-point:hover, .benefit:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Estrutura de preços atualizada */
.pricing-breakdown {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-item {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-item:last-child {
    margin-bottom: 0;
}

.pricing-item .strikethrough {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-weight: 600;
}

/* Responsividade para imagens */
@media (max-width: 768px) {
    .pain-visual, .benefit-visual {
        max-width: 150px;
    }
    
    .benefit-visual {
        max-height: 120px;
    }
    
    .pricing-item {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .pain-visual, .benefit-visual {
        max-width: 120px;
    }
    
    .benefit-visual {
        max-height: 100px;
    }
    
    .pricing-breakdown {
        padding: 1rem;
    }
    
    .pricing-item {
        font-size: 0.9rem;
    }
}



/* Responsividade melhorada para imagens destacadas */
@media (max-width: 768px) {
    .pain-visual, .benefit-visual {
        max-width: 250px;
    }
    
    .benefit-visual {
        max-height: 180px;
    }
    
    .pain-image, .benefit-image {
        margin: 1.2rem 0 1.5rem 0;
    }
    
    .pain-point, .benefit {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .pain-visual, .benefit-visual {
        max-width: 200px;
    }
    
    .benefit-visual {
        max-height: 150px;
    }
    
    .pain-image, .benefit-image {
        margin: 1rem 0 1.2rem 0;
    }
    
    .pain-point, .benefit {
        padding: 1.2rem 0.8rem;
    }
}

/* Animação de entrada para as imagens */
@keyframes imageEntrance {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pain-visual, .benefit-visual {
    animation: imageEntrance 0.6s ease-out;
}

/* Efeito de foco nas imagens */
.pain-visual:focus, .benefit-visual:focus {
    outline: 3px solid rgba(212, 175, 55, 0.6);
    outline-offset: 5px;
}


/* Botão CTA abaixo do ebook */
.ebook-cta {
    margin-top: 2rem;
    text-align: center;
    width: 100%;
}

.ebook-preview {
    text-align: center;
    margin-bottom: 1rem;
}

.ebook-scroll-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin: 0 auto;
    max-width: 300px;
}

.ebook-scroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f4e4a6 0%, #d4af37 50%, #f4e4a6 100%);
}

.ebook-scroll-btn:active {
    transform: translateY(-1px);
}

.cta-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Efeito de brilho no botão */
.ebook-scroll-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.ebook-scroll-btn:hover::before {
    left: 100%;
}

/* Responsividade para o botão */
@media (max-width: 768px) {
    .ebook-scroll-btn {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
        max-width: 280px;
    }
    
    .cta-subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .ebook-scroll-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
        max-width: 260px;
    }
    
    .ebook-cta {
        margin-top: 1.5rem;
    }
}

