/* Estilos Gerais */
:root {
    --primary-color: #8e44ad;
    --secondary-color: #9b59b6;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #2c3e50;
    --light-bg: #f9f9f9;
    --gray-bg: #f0f0f0;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

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

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rounded-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Header / Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-cover {
    max-width: 80%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition);
}

.ebook-cover:hover {
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 2rem;
}

/* Intro Section */
.intro {
    background-color: var(--light-bg);
}

.intro h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
}

/* Problem Section */
.problem {
    background-color: #fff;
}

.problem-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.problem-image {
    flex: 1;
}

.problem-text {
    flex: 1;
}

.problem h2 {
    color: var(--accent-color);
}

/* Solution Section */
.solution {
    background-color: var(--light-bg);
}

.solution-header {
    text-align: center;
    margin-bottom: 3rem;
}

.solution-header h2 {
    color: var(--primary-color);
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.solution-text {
    flex: 1;
}

.solution-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ebook-mockup {
    max-width: 90%;
    box-shadow: var(--box-shadow);
}

/* Benefits Section */
.benefits {
    background-color: #fff;
    text-align: center;
}

.benefits h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

/* Chapters Section */
.chapters {
    background-color: var(--light-bg);
}

.chapters h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.chapters-content {
    display: flex;
    gap: 40px;
}

.chapters-list {
    flex: 2;
}

.chapters-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chapter {
    display: flex;
    margin-bottom: 25px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.chapter-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-size: 1.5rem;
    font-weight: 700;
}

.chapter h3, .chapter p {
    padding: 15px;
    margin: 0;
}

.chapter h3 {
    padding-bottom: 5px;
}

/* Differentials Section */
.differentials {
    background-color: #fff;
}

.differentials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.differential {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.differential-icon {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.differential-text h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial {
    padding: 20px;
}

.testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
}

.quote {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    margin-top: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.testimonial-controls {
    margin-top: 20px;
}

.testimonial-controls button {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--light-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-controls button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--light-text);
}

/* Audience Section */
.audience {
    background-color: var(--light-bg);
    text-align: center;
}

.audience h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.audience-card {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.audience-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

/* Bonus Section */
.bonus {
    background-color: #fff;
    text-align: center;
}

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

.bonus-header h2 {
    color: var(--primary-color);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.bonus-card {
    display: flex;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: left;
}

.bonus-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-size: 1.5rem;
    font-weight: 700;
}

.bonus-content {
    padding: 20px;
    flex: 1;
}

.bonus-value {
    margin-top: 10px;
    font-weight: 600;
    color: var(--accent-color);
}

.bonus-total {
    font-size: 1.2rem;
    font-weight: 600;
}

.bonus-total span {
    color: var(--accent-color);
    font-size: 1.4rem;
}

/* Guarantee Section */
.guarantee {
    background-color: var(--light-bg);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.guarantee-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.guarantee-image img {
    max-width: 200px;
}

.guarantee-text {
    flex: 2;
}

.guarantee h2 {
    color: var(--primary-color);
}

/* Offer Section */
.offer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    text-align: center;
}

.offer-header {
    margin-bottom: 3rem;
}

.offer-box {
    background-color: #fff;
    color: var(--text-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.offer-original {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.offer-original span {
    text-decoration: line-through;
    opacity: 0.7;
}

.offer-current {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency, .cents {
    font-size: 1.5rem;
    align-self: flex-start;
    margin-top: 10px;
}

.cents {
    align-self: flex-end;
    margin-bottom: 10px;
}

.offer-payment {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.offer-includes {
    margin: 30px 0;
    text-align: left;
}

.offer-includes ul {
    list-style-type: none;
    margin-top: 10px;
}

.offer-includes li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.offer-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.offer-cta {
    margin-top: 30px;
}

.offer-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.offer-secure img {
    height: 30px;
    margin-right: 10px;
}

/* FAQ Section */
.faq {
    background-color: var(--light-bg);
    text-align: center;
}

.faq h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.faq-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    text-align: left;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    text-align: left;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Final CTA Section */
.final-cta {
    background-color: #fff;
    text-align: center;
}

.final-cta h2 {
    color: var(--primary-color);
}

.final-cta p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.final-cta-button {
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 50px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: var(--light-text);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    margin: 0 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Guarantee Seal */
.guarantee-seal {
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    border: 3px solid white;
    box-shadow: var(--box-shadow);
}

.guarantee-seal-days {
    font-size: 36px;
    line-height: 1;
}

.guarantee-seal-text {
    font-size: 14px;
    margin-top: 5px;
}

/* Secure Payment Icon */
.secure-payment-icon {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.secure-payment-icon:before {
    content: '🔒';
    font-size: 20px;
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .intro-content,
    .problem-content,
    .solution-content,
    .chapters-content,
    .guarantee-content {
        flex-direction: column;
    }
    
    .problem-image {
        order: -1;
    }
    
    .chapters-image {
        margin-top: 30px;
    }
    
    .guarantee-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .benefit-card,
    .audience-card {
        padding: 20px;
    }
    
    .offer-box {
        padding: 30px 20px;
    }
    
    .offer-current {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .ebook-cover {
        transform: none;
    }
    
    .ebook-cover:hover {
        transform: translateY(-5px);
    }
    
    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}
