/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F5F1E8;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Color Variables */
:root {
    --primary-blue: #4A90A4;
    --primary-green: #7BA05B;
    --primary-gold: #D4A574;
    --neutral-beige: #F5F1E8;
    --neutral-gray: #E8E8E8;
    --earth-brown: #8B6F47;
    --accent-coral: #E07A5F;
    --white: #FFFFFF;
    --dark: #333333;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-coral), #D4654A);
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 122, 95, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 122, 95, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(74, 144, 164, 0.8), rgba(123, 160, 91, 0.8)), 
                url("https://images.unsplash.com/photo-1507692049790-de58290a4334?w=1200&h=800&fit=crop") center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .hero-content {
        flex: 1;
        max-width: 50%;
        text-align: left;
    }

    .hero-image {
        flex: 1;
        max-width: 40%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .ebook-cover {
        max-width: 100%;
        height: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.instant-download {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

/* Botões de compra entre seções */
.section-cta {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-top: 3px solid var(--primary-gold);
    border-bottom: 3px solid var(--primary-gold);
    margin: 40px 0;
}

.section-cta .btn-primary {
    margin: 0 10px 10px 0;
}

.section-cta-text {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Problem/Solution Section */
.problem-solution {
    background: var(--white);
}

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

.problem-item {
    text-align: center;
    padding: 2rem;
    background: var(--neutral-beige);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

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

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

.solution-text {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-description {
    font-size: 1.2rem;
    color: var(--dark);
}

/* Benefits Section */
.benefits {
    background: var(--neutral-beige);
}

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

.benefit-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.benefit-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* About Author Section */
.about-author {
    background: var(--white);
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

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

.author-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-gold);
}

.author-bio {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.author-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-green);
    border-left: 4px solid var(--primary-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* Testimonials Section */
.testimonials {
    background: var(--neutral-beige);
}

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

.testimonial-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-blue);
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.social-proof {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-green);
}

/* Urgency/Bonus Section */
.urgency-bonus {
    background: var(--primary-blue);
    color: var(--white);
}

.urgency-bonus .section-title {
    color: var(--white);
}

.urgency-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.bonus-item {
    background: var(--white);
    color: var(--dark);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

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

.bonus-value {
    color: var(--accent-coral);
    font-weight: 600;
    font-size: 1.1rem;
}

.offer-summary {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.total-value {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

.your-price {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 2rem;
}

.savings {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.3rem;
}

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

.guarantee {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--neutral-beige);
    padding: 2rem;
    border-radius: 15px;
}

.faq-question {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-answer {
    color: var(--dark);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: var(--primary-green);
    color: var(--white);
}

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

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

.final-cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.offer-recap {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: left;
}

.offer-recap h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.offer-list {
    list-style: none;
    max-width: 400px;
    margin: 0 auto;
}

.offer-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.final-price {
    margin: 2rem 0;
}

.price-text {
    font-size: 1.5rem;
    font-weight: 600;
}

.security-badges {
    margin-top: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--earth-brown);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .problems-grid,
    .benefits-grid,
    .testimonials-grid,
    .bonuses-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .author-photo {
        width: 200px;
        height: 200px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .problem-item,
    .benefit-item,
    .testimonial-item,
    .bonus-item,
    .faq-item {
        padding: 1.5rem;
    }
    
    .offer-recap,
    .offer-summary {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.problem-item:hover,
.benefit-item:hover,
.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* Contador Regressivo */
.countdown-container {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    animation: pulse-glow 2s infinite;
}

.countdown-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
    min-width: 70px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
    opacity: 0.9;
}

.countdown-message {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.95;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 107, 107, 0.5);
    }
}

/* Responsividade do contador */
@media (max-width: 480px) {
    .countdown-unit {
        min-width: 60px;
        padding: 8px 12px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

