/* Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Cabeçalho e Hero */
.hero {
    background: linear-gradient(135deg, #1e5f2f, #3a8c5f);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.logo img {
    max-height: 80px;
    margin-bottom: 20px;
}

.headline {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffeb3b;
}

.value-prop {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #ff6b00;
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Imagem Destaque */
.featured-image {
    padding: 40px 0;
    background-color: white;
    text-align: center;
}

.main-image {
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Seção de Benefícios */
.benefits {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1e5f2f;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6b00;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
}

.benefit-item i {
    color: #1e5f2f;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
}

/* Por que é poderosa */
.why-powerful {
    padding: 60px 0;
    background-color: #fff;
}

.powerful-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.powerful-item {
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    background-color: #f9f9f9;
    border-left: 4px solid #1e5f2f;
}

.powerful-item i {
    color: #ff6b00;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
}

/* Seção FAQ */
.faq {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #1e5f2f;
}

.faq-toggle {
    color: #ff6b00;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #1e5f2f, #3a8c5f);
    text-align: center;
    color: white;
}

.cta-headline {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

/* Contador Regressivo */
.countdown-container {
    margin-bottom: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.countdown {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffeb3b;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.cta-button-large {
    display: inline-block;
    background-color: #ff6b00;
    color: white;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.cta-button-large:hover {
    background-color: #ff8c00;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.security-note {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-stat {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-quote {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-quote:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    color: #f0f0f0;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    margin-top: 15px;
    color: #1e5f2f;
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}

.contact-text {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }
    
    .subheadline {
        font-size: 1.4rem;
    }
    
    .value-prop {
        font-size: 1.1rem;
    }
    
    .cta-headline {
        font-size: 1.8rem;
    }
    
    .cta-button-large {
        padding: 15px 40px;
        font-size: 1.3rem;
    }
    
    .benefits-grid, .powerful-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Animações */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-button-large {
    animation: pulse 2s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.countdown {
    animation: blink 1s infinite;
} 