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

/* Cores personalizadas */
:root {
    --golden: #D4A574;
    --brown: #8B4513;
    --cream: #F5F5DC;
    --olive: #6B8E23;
    --urgent-red: #DC143C;
    --white: #FFFFFF;
    --gray-dark: #333333;
    --gray-light: #FAFAFA;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--golden) 100%);
    padding: 80px 0;
    text-align: center;
}

.badge {
    background: var(--urgent-red);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.main-title {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--brown);
}

.subtitle {
    font-size: 1.3rem;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--urgent-red) 0%, #FF6B6B 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    margin-bottom: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.secondary-cta {
    background: linear-gradient(135deg, var(--golden) 0%, var(--brown) 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem;
}

.secondary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.guarantee {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-top: 1rem;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    text-align: center;
}

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

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--urgent-red);
}

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

/* Solution Section */
.solution-section {
    background: var(--gray-light);
    padding: 80px 0;
    text-align: center;
}

.solution-image {
    margin-top: 3rem;
}

.featured-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.benefits-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--gray-light);
    padding: 80px 0;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--golden);
    transition: transform 0.3s ease;
}

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

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.author {
    font-weight: bold;
    color: var(--brown);
    margin-top: 1rem;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.modules {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.module-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.module-card h3 {
    color: var(--brown);
    margin-bottom: 1.5rem;
}

.module-card ul {
    list-style: none;
}

.module-card li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    background: var(--gray-light);
    padding: 80px 0;
}

.faq-items {
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--golden) 100%);
    padding: 80px 0;
    text-align: center;
}

.urgency-badge {
    background: var(--urgent-red);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.price-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    max-width: 400px;
    margin: 2rem auto;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.new-price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--urgent-red);
    margin-bottom: 0.5rem;
}

.savings {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.cta-description {
    max-width: 600px;
    margin: 2rem auto;
    font-size: 1.1rem;
}

.main-cta {
    display: block;
    margin: 2rem auto;
    width: fit-content;
}

.guarantees {
    margin: 2rem 0;
}

.guarantees p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.warning-box {
    background: #ffebee;
    border: 2px solid var(--urgent-red);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.warning-box p {
    color: var(--urgent-red);
    font-weight: bold;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--gray-dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer h3 {
    margin-bottom: 1rem;
}

.copyright {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-images {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-img, .benefit-img, .featured-img {
        width: 100%;
        max-width: 350px;
    }
    
    .benefits-grid, .problems-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        width: 100%;
        max-width: 400px;
    }
    
    .container {
        padding: 0 15px;
    }
}

