* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
}

/* Barra de Contagem Regressiva */
.countdown-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.countdown-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-text {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 70px;
}

.time-number {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    color: #ffd700;
}

.time-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.9;
}

.time-separator {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 -2px;
}

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

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

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

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

.price-highlight {
    color: #00ff88;
    font-size: 3.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-item {
    margin: 0 10px;
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

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

.icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 25px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,255,136,0.4);
    transition: all 0.3s ease;
    margin: 30px 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,255,136,0.6);
}

.cta-button.large {
    font-size: 1.6rem;
    padding: 30px 60px;
}

.button-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: none;
    margin-top: 8px;
    opacity: 0.9;
}

.pulse {
    animation: pulse 2s infinite;
}

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

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-size: 0.95rem;
}

.trust-badges span {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

/* What You Get Section */
.what-you-get {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #2d3748;
}

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

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card.featured {
    border: 3px solid #00ff88;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.benefit-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.benefit-card.featured {
    position: relative;
}

.benefit-card.featured img {
    position: relative;
    z-index: 1;
}

.benefit-card.featured::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.3) 60%,
        rgba(255, 255, 255, 0.7) 80%,
        rgba(255, 255, 255, 1) 100%
    );
    border-radius: 10px;
    pointer-events: none;
    z-index: 2;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.benefit-card p {
    color: #718096;
    margin-bottom: 20px;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card ul li {
    padding: 8px 0;
    color: #4a5568;
    font-size: 0.95rem;
}

/* Social Proof */
.social-proof {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

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

.testimonial p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial strong {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Urgency Section */
.urgency {
    padding: 60px 20px;
    background: #fff5f5;
}

.urgency-box {
    text-align: center;
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid #ff6b6b;
}

.urgency-box h2 {
    font-size: 1.5rem;
    color: #c53030;
    margin-bottom: 20px;
}

.urgency-text {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #2d3748;
}

.strikethrough {
    text-decoration: line-through;
    color: #e53e3e;
    font-size: 1.5rem;
}

.price-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.old-price {
    font-size: 2rem;
    text-decoration: line-through;
    color: #a0aec0;
}

.new-price {
    font-size: 4rem;
    font-weight: 800;
    color: #00ff88;
    text-shadow: 2px 2px 4px rgba(0,255,136,0.2);
}

.discount-badge {
    background: #e53e3e;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
}

.payment-info {
    font-size: 1.1rem;
    color: #4a5568;
    margin-top: 20px;
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.delivery-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.delivery-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.guarantees {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 600;
}

.faq-icon {
    font-size: 2rem;
    color: #667eea;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #4a5568;
    line-height: 1.7;
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

.footer-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    
    .countdown-bar {
        padding: 10px 0;
    }
    
    .countdown-text {
        font-size: 0.85rem;
    }
    
    .countdown-timer {
        gap: 5px;
    }
    
    .time-unit {
        min-width: 55px;
        padding: 6px 8px;
    }
    
    .time-number {
        font-size: 1.4rem;
    }
    
    .time-label {
        font-size: 0.6rem;
    }
    
    .time-separator {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .price-highlight {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 20px 30px;
    }
    
    .cta-button.large {
        font-size: 1.2rem;
        padding: 25px 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .new-price {
        font-size: 3rem;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badges span {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantees {
        flex-direction: column;
        gap: 15px;
    }
}
