/* Base Styles */
:root {
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --dark-color: #111827;
    --light-color: #f9fafb;
    --gray-color: #6b7280;
    --light-gray: #e5e7eb;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

section {
    padding: 80px 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header Styles */
.header {
    padding: 20px 0;
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    max-width: 180px;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-3deg);
}

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

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    margin-left: 40px;
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Pain Points Section */
.pain-points {
    background-color: var(--dark-color);
    color: white;
    position: relative;
}

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

.pain-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background-color: rgba(255, 255, 255, 0.15);
}

.pain-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cta-secondary {
    text-align: center;
    margin-top: 40px;
}

/* Solution Section */
.solution {
    background-color: white;
}

.solution .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.solution-content {
    flex: 1;
    max-width: 600px;
}

.solution-image {
    flex: 1;
    max-width: 500px;
    margin-left: 40px;
}

.solution-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.solution-features {
    margin-top: 2rem;
}

.solution-feature {
    display: flex;
    margin-bottom: 2rem;
}

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

.feature-content {
    flex: 1;
}

.feature-content h3 {
    margin-bottom: 0.5rem;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light-gray);
}

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

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 30px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: var(--primary-color);
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    z-index: 1;
}

.step-content {
    flex: 1;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

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

.testimonial-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

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

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

.author-info h4 {
    margin-bottom: 0;
}

.author-info p {
    margin-bottom: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Results Section */
.results {
    background: var(--gradient-primary);
    color: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.result-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Pricing Section */
.pricing {
    background-color: white;
}

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

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.pricing-header {
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-value {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1.2rem;
    font-weight: 400;
}

.pricing-save {
    display: inline-block;
    background-color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-features {
    padding: 30px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.pricing-feature i {
    color: var(--success-color);
    margin-right: 10px;
}

.pricing-cta {
    padding: 0 30px 20px;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px 30px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.pricing-guarantee i {
    margin-right: 10px;
    color: var(--primary-color);
}

.spots-left {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    background-color: var(--light-gray);
}

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

.faq-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

/* Final CTA Section */
.final-cta {
    background: var(--gradient-secondary);
    color: white;
    text-align: center;
}

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

.final-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.final-cta-feature {
    display: flex;
    align-items: center;
    margin: 0 20px 20px;
}

.final-cta-feature i {
    margin-right: 10px;
}

.final-cta-button {
    margin-bottom: 2rem;
}

.final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.final-guarantee i {
    margin-right: 10px;
}

/* Bonus Section */
.bonus {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6e6ff 100%);
    padding: 80px 0;
    text-align: center;
}

.bonus-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.bonus-content::before {
    content: 'BÔNUS';
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 40px;
    font-weight: 700;
    transform: rotate(45deg);
    font-size: 0.8rem;
}

.bonus-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.bonus h2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.bonus h3 {
    margin-bottom: 1.5rem;
}

.bonus-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.bonus-features {
    margin-bottom: 2rem;
}

.bonus-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    text-align: left;
}

.bonus-feature i {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 3px;
}

.bonus-value {
    margin-top: 2rem;
    font-size: 1.2rem;
}

.strike {
    text-decoration: line-through;
    color: var(--gray-color);
}

.bonus-free {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
    margin-top: 0.5rem;
}

.bonus-feature p {
    margin-bottom: 0;
}

/* Pricing Bonus Feature */
.pricing-feature.bonus-feature {
    background-color: rgba(245, 158, 11, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px dashed var(--accent-color);
}

.pricing-feature.bonus-feature i {
    color: var(--accent-color);
}

.pricing-feature.bonus-feature p {
    font-weight: 500;
}

/* Footer Section */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-logo {
    max-width: 150px;
}

.footer-links {
    display: flex;
}

.footer-links a {
    color: white;
    margin-left: 20px;
}

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

.footer-copyright {
    text-align: center;
    color: var(--gray-color);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-image {
        max-width: 100%;
        margin-left: 0;
    }
    
    .feature {
        justify-content: center;
    }
    
    .solution .container {
        flex-direction: column;
    }
    
    .solution-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .solution-image {
        max-width: 100%;
        margin-left: 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .pain-grid, .testimonial-grid, .results-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-links {
        margin-top: 20px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .pricing-value {
        font-size: 2.5rem;
    }
    
    .final-cta-features {
        flex-direction: column;
        align-items: center;
    }
}
