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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); /* Roxo e Azul */
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8a2be2 0%, #ffffff 100%); /* Roxo e Branco */
    color: #333;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #6a11cb; /* Roxo */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.3);
}

.cta-button:hover {
    background: #5a0fb0; /* Roxo mais escuro */
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.4);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

/* Problem Section */
.problem {
    padding: 4rem 0;
    background: #f8f9fa;
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.problem-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Solution Section */
.solution {
    padding: 4rem 0;
    background: white;
}

.solution h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-item {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); /* Roxo e Azul */
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Content Section */
.content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.content-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.content-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.content-item:hover {
    transform: translateX(10px);
}

.content-number {
    background: linear-gradient(135deg, #8a2be2 0%, #ffffff 100%); /* Roxo e Branco */
    color: #333;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
}

.content-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.content-text p {
    color: #666;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); /* Roxo e Azul */
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.price-box {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.price {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.cents {
    font-size: 2rem;
    vertical-align: top;
}

.price-description {
    font-size: 1.1rem;
    opacity: 0.8;
}

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

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid #6a11cb; /* Roxo */
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #8a2be2 0%, #ffffff 100%); /* Roxo e Branco */
    color: #333;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .problem-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .content-item {
        flex-direction: column;
        text-align: center;
    }
    
    .content-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .problem h2,
    .solution h2,
    .content h2,
    .cta-section h2,
    .faq h2,
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

