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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Utilitários */
.highlight {
    color: #2d8f47;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

/* Botões CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2d8f47 0%, #1e6b35 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 143, 71, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 143, 71, 0.4);
    background: linear-gradient(135deg, #1e6b35 0%, #2d8f47 100%);
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d8f47;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.badge-text {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-discount {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
}

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

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: white;
}

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

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d8f47 0%, #1e6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.social-proof-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d8f47;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Guarantee Section */
.guarantee {
    padding: 5rem 0;
    background: white;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.guarantee-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.guarantee-text > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.guarantee-item i {
    font-size: 2rem;
    color: #2d8f47;
    margin-top: 0.2rem;
}

.guarantee-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.guarantee-item p {
    color: #666;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    border-radius: 15px;
    border: 2px solid #2d8f47;
}

.badge-item i {
    font-size: 2rem;
    color: #2d8f47;
}

.badge-item span {
    font-weight: 600;
    color: #1a1a1a;
}

/* Special Offer Section */
.special-offer {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.offer-box {
    background: white;
    color: #1a1a1a;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.offer-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.offer-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.pricing {
    margin-bottom: 2.5rem;
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.old-price {
    text-align: center;
}

.old-price .price-label {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.old-price .price-value {
    font-size: 1.8rem;
    font-weight: 600;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    text-align: center;
}

.new-price .price-label {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.new-price .price-value {
    font-size: 3rem;
    font-weight: 800;
    color: #2d8f47;
}

.payment-options {
    color: #666;
    font-size: 1.1rem;
}

.countdown-timer {
    margin-bottom: 2.5rem;
}

.countdown-timer h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.time-unit {
    background: linear-gradient(135deg, #2d8f47 0%, #1e6b35 100%);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
}

.time-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.time-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d8f47;
    font-weight: 500;
}

.benefit-item i {
    font-size: 1.2rem;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d8f47 0%, #1e6b35 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.final-cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit i {
    font-size: 1.5rem;
    color: #f7931e;
}

.final-cta .cta-button {
    background: white;
    color: #2d8f47;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.final-cta .cta-button:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

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

.guarantee-text i {
    margin-right: 0.5rem;
    color: #f7931e;
}

/* Footer */
.footer {
    background: #1a1a1a;
    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 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d8f47;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.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 ease;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.copyright {
    color: #666;
    font-size: 0.8rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timer {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 0.8rem;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .final-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-proof-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .offer-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-features {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-button.extra-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .benefit-card,
    .testimonial-card {
        padding: 2rem;
    }
    
    .offer-box {
        padding: 2rem;
    }
}



/* Kits Section */
.kits {
    padding: 5rem 0;
    background: white;
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
}

.kit-card {
    background: #f8fffe;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e8f5f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.kit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.kit-card.featured {
    border-color: #2d8f47;
    background: linear-gradient(135deg, #e8f5f0 0%, #f8fffe 100%);
}

.kit-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.4);
    z-index: 10;
}

.kit-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.kit-image {
    max-width: 80%;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.kit-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.kit-price {
    margin-bottom: 1.5rem;
}

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

.kit-price .new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d8f47;
}

.kit-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.kit-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-size: 1rem;
}

.kit-benefits li i {
    color: #2d8f47;
    font-size: 1.2rem;
}

.cta-button.small {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .kits-grid {
        grid-template-columns: 1fr;
    }
}

