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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
    overflow-x: hidden;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #cd853f 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pancake" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pancake)"/></svg>');
    opacity: 0.3;
}

header .container {
    position: relative;
    z-index: 2;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff7849 0%, #f9a825 100%);
}

/* Seção Problema/Solução */
.problem-solution {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
}

.problem-solution h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #8b4513;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.problem-solution h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.problem-solution p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.story-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    margin: 40px auto;
    display: block;
    transition: transform 0.3s ease;
}

.story-image:hover {
    transform: scale(1.02);
}

/* Seção de Características do Produto */
.product-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f5f1 0%, #ede4d3 100%);
}

.product-features h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: #8b4513;
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #ff6b35;
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #8b4513;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5d4037;
}

/* Seção de Depoimentos */
.testimonials {
    padding: 100px 0;
    background: #fff;
}

.testimonials h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: #8b4513;
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    border: 2px solid #e8d5c4;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    color: #ff6b35;
    position: absolute;
    top: -20px;
    left: 30px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #ff6b35;
    display: block;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #5d4037;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #8b4513;
    font-size: 1rem;
}

/* Seção CTA Principal */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #cd853f 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="30" height="30"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.urgency-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
}

.price-display {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
}

.current-price {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffd700;
    margin: 20px 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

.payment-info {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-buy {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 25px 60px;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-buy:hover::before {
    left: 100%;
}

.btn-buy:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.7);
    background: linear-gradient(135deg, #ff7849 0%, #f9a825 100%);
}

.guarantee-text {
    margin-top: 30px;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
    font-weight: 600;
}

/* Seção de Bônus */
.bonus-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffecb3 100%);
    text-align: center;
    border: 5px dashed #ffa726;
    margin: 0;
    position: relative;
}

.bonus-section::before {
    content: '🎁';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    background: #fff3e0;
    padding: 0 20px;
}

.bonus-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #e65100;
    margin-bottom: 30px;
}

.bonus-section p {
    font-size: 1.3rem;
    color: #bf360c;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.bonus-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.bonus-image:hover {
    transform: scale(1.05);
}

/* Seção FAQ */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: #8b4513;
    text-align: center;
    margin-bottom: 60px;
}

.faq-item {
    background: #faf8f5;
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-item h3 {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #fff;
    padding: 25px 30px;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item p {
    padding: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5d4037;
    margin: 0;
}

/* Footer */
footer {
    background: #2c1810;
    color: #d4a574;
    padding: 60px 0 40px;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-size: 1rem;
}

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

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

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

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .problem-solution h2,
    .product-features h2,
    .testimonials h2,
    .faq-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .current-price {
        font-size: 3.5rem;
    }
    
    .btn-buy {
        padding: 20px 40px;
        font-size: 1.3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .bonus-section h2 {
        font-size: 2rem;
    }
    
    .bonus-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 60px 0 40px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .current-price {
        font-size: 3rem;
    }
    
    .btn-buy {
        padding: 18px 35px;
        font-size: 1.2rem;
    }
    
    .problem-solution,
    .product-features,
    .testimonials,
    .cta-section,
    .bonus-section,
    .faq-section {
        padding: 60px 0;
    }
}

