/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.timer {
    font-size: 1.2em;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 60px;
}

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

.hero-title {
    font-size: 3.2em;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    text-align: left;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2em;
}

.btn-extra-large {
    padding: 25px 50px;
    font-size: 1.3em;
}

.pulse {
    animation: pulse 2s infinite;
}

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

.guarantee-text {
    margin-top: 15px;
    font-size: 0.9em;
    opacity: 0.8;
}

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

.product-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.floating-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffd700;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Section Styles */
.section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    justify-items: center;
}

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.problem-conclusion {
    text-align: center;
    font-size: 1.2em;
    color: #ee5a24;
    margin-top: 40px;
}

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

.solution-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.solution-text h3 {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #333;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 10px 0;
    font-size: 1.1em;
}

.benefits-list i {
    color: #27ae60;
    margin-right: 10px;
}

.transformation-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.before, .after {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex: 1;
    text-align: left;
}

.before h4 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.after h4 {
    color: #27ae60;
    margin-bottom: 15px;
}

.arrow {
    font-size: 2em;
    color: #667eea;
}

/* Health Benefits Section */
.health-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.health-benefits .section-title {
    color: white;
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}

.health-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.health-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.health-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
}

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

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stars {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #333;
    font-size: 1.1em;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9em;
}

/* Product Section */
.product {
    padding: 80px 0;
    background: white;
}

.main-product {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    padding: 8px 0;
    font-size: 1.1em;
}

.product-features i {
    color: #27ae60;
    margin-right: 10px;
}

.product-value {
    font-size: 1.2em;
    font-weight: 600;
}

.value-label {
    color: #666;
}

.value-price {
    color: #ee5a24;
    font-size: 1.3em;
}

/* Bonus Section */
.bonus-section {
    margin-bottom: 60px;
}

.bonus-title {
    text-align: center;
    font-size: 2em;
    color: #ee5a24;
    margin-bottom: 40px;
}

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

.bonus-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bonus-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.bonus-info h4 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
}

.bonus-info p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.bonus-value {
    font-weight: 600;
    color: #ee5a24;
}

/* Price Section */
.price-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.total-value {
    margin-bottom: 40px;
}

.value-breakdown {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.value-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.total-line {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(255,255,255,0.3);
    font-size: 1.2em;
}

.special-offer {
    margin-bottom: 40px;
}

.offer-badge {
    background: #ffd700;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.2em;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 10px;
}

.new-price {
    font-size: 3em;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 10px;
}

.installments {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.discount {
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
    display: inline-block;
}

.cta-section {
    margin-top: 30px;
}

.security-text {
    margin-top: 15px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: #f8f9fa;
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-badge {
    background: #27ae60;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.guarantee-content h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #333;
}

.guarantee-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #666;
}

.guarantee-reasons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.reason {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #27ae60;
}

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

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

.faq-item {
    background: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid #eee;
}

.faq-question h3 {
    font-size: 1.1em;
    color: #333;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 200px;
}

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

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    text-align: center;
}

.urgency-message {
    margin-bottom: 50px;
}

.urgency-message h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.final-cta-content h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.final-guarantees {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .main-product {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .before-after {
        flex-direction: column;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .bonus-item {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-reasons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-guarantees {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-timer {
        flex-direction: column;
        gap: 5px;
    }
    
    .timer {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .new-price {
        font-size: 2.2em;
    }
    
    .btn-primary {
        padding: 15px 25px;
        font-size: 1em;
    }
    
    .btn-large {
        padding: 18px 30px;
        font-size: 1.1em;
    }
    
    .btn-extra-large {
        padding: 20px 35px;
        font-size: 1.2em;
    }
}

