/* 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: #333;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #2E8B57;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.nav a:hover {
    color: #2E8B57;
}

.cta-button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2E8B57 0%, #4169E1 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

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

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.countdown-container {
    margin-bottom: 2rem;
}

.countdown-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.countdown {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
}

.price-container {
    margin-bottom: 2rem;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 1rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

.hero-cta {
    font-size: 1.2rem;
    padding: 15px 30px;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.problem-image img {
    width: 100%;
    border-radius: 15px;
}

.problem-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.problem-item i {
    color: #dc3545;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.statistic {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #dc3545;
    margin-top: 2rem;
}

.statistic strong {
    color: #dc3545;
    font-size: 1.2rem;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: #fff;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.benefit-item i {
    color: #2E8B57;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.testimonial-quick {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2E8B57;
    margin-top: 2rem;
}

.testimonial-quick blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-quick cite {
    color: #666;
}

.solution-image {
    text-align: center;
}

.solution-image img {
    width: 80%;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.timeline {
    text-align: left;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-time {
    background: #2E8B57;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 700;
    margin-right: 1.5rem;
    min-width: 80px;
    text-align: center;
}

.timeline-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.benefits-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-images img {
    width: 100%;
    border-radius: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.testimonial-card h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    color: #2E8B57;
}

.testimonial-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.about-image img {
    width: 100%;
    border-radius: 15px;
}

.credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.credential-item i {
    color: #4169E1;
    margin-right: 1rem;
    font-size: 1.5rem;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    text-align: center;
}

.offer .section-title {
    color: white;
}

.countdown-large {
    margin: 2rem 0;
}

.countdown-display {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 20px 40px;
    border-radius: 20px;
    display: inline-block;
}

.price-display {
    margin: 3rem 0;
}

.old-price-large {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.current-price-large {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.discount {
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
}

.offer-includes {
    margin: 3rem 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.include-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.include-item i {
    color: #28a745;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.cta-button-large {
    background: #28a745;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin: 2rem 0;
}

.cta-button-large:hover {
    background: #218838;
    transform: translateY(-3px);
}

.security-badges {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #fff;
}

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

.faq-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    color: #2E8B57;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #2E8B57;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #2E8B57;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-content,
    .problem-content,
    .solution-content,
    .benefits-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .countdown-display {
        font-size: 2.5rem;
        padding: 15px 25px;
    }
    
    .current-price-large {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

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

.hero-content,
.section-title {
    animation: fadeInUp 0.8s ease-out;
}

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


/* Correções para exibição das imagens */
img {
    opacity: 1 !important;
    transition: none !important;
    display: block;
    max-width: 100%;
    height: auto;
}

/* Garantir que as imagens sejam carregadas corretamente */
.hero-image img,
.problem-image img,
.solution-image img,
.benefits-images img,
.about-image img,
.testimonial-card img {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Prevenção de problemas de lazy loading */
.lazy-loading-fix {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}



.benefits-images img {
    width: 300px; /* Largura padrão */
    height: 200px; /* Altura padrão */
    object-fit: contain; /* Redimensiona a imagem para caber dentro do contêiner, mantendo a proporção */
    margin: 0 auto; /* Centraliza a imagem */
}

