/* Reset and Base Styles */
* {
    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;
}

/* Countdown Timer Section */
.countdown-section {
    background: linear-gradient(135deg, #084CBE 0%, #0a5cd6 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.countdown-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.countdown-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.countdown-text i {
    font-size: 1.3rem;
    color: #FFD108;
    animation: pulse 2s infinite;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.time-unit {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.time-unit span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD108;
}

.time-unit label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Stock Counter */
.stock-counter {
    background: linear-gradient(135deg, #FFD108 0%, #ffda2d 100%);
    color: #333;
    padding: 12px 0;
    text-align: center;
}

.stock-ticker {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stock-ticker i {
    color: #e74c3c;
    animation: shake 1s infinite;
}

#stock-count {
    font-weight: 700;
    color: #e74c3c;
    font-size: 1.2rem;
}

.region-warning {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23084CBE" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #084CBE;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.price-block {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    border: 1.5px solid #FFD108;
    max-width: 360px;
    transition: box-shadow 0.3s ease;
}

.price-block:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.price-original {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.crossed-price {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
    font-weight: 500;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
}


.shipping-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #084CBE;
    font-size: 1.1rem;
}

.shipping-note i {
    color: #FFD108;
}

.cta-button {
    background: linear-gradient(135deg, #084CBE 0%, #0a5cd6 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(8,76,190,0.3);

    /* Centralizar horizontalmente */
    margin-left: auto;
    margin-right: auto;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(8,76,190,0.4);
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.4rem;
}


.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Rules Section */
.rules-section {
    padding: 80px 0;
    background: white;
}

.rules-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #084CBE;
    margin-bottom: 50px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rule-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #FFD108;
}

.rule-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #084CBE 0%, #0a5cd6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rule-icon i {
    color: white;
    font-size: 1.5rem;
}

.rule-content h3 {
    font-size: 1.3rem;
    color: #084CBE;
    margin-bottom: 10px;
}

.rule-content p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #084CBE;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD108 0%, #ffda2d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #084CBE;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #084CBE;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Product Details Section */
.product-details {
    padding: 80px 0;
    background: white;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.product-info h2 {
    font-size: 2.5rem;
    color: #084CBE;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #084CBE 0%, #0a5cd6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature h4 {
    color: #084CBE;
    margin-bottom: 5px;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #084CBE;
    margin-bottom: 50px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #084CBE;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #084CBE 0%, #0a5cd6 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

#final-stock {
    color: #FFD108;
    font-weight: 700;
    font-size: 1.4rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #FFD108;
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .countdown-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown-text {
        font-size: 1rem;
    }
    
    .time-unit span {
        font-size: 1.2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .price-block {
        padding: 20px;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .cta-button.large {
        padding: 18px 35px;
        font-size: 1.2rem;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .rule-card {
        flex-direction: column;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-info h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .faq-section h2,
    .rules-section h2,
    .how-it-works h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-unit {
        padding: 6px 8px;
    }
    
    .time-unit span {
        font-size: 1rem;
    }
    
    .stock-ticker {
        font-size: 1rem;
    }
    
    .region-warning {
        font-size: 0.8rem;
    }
    
    .rules-section,
    .how-it-works,
    .product-details,
    .faq-section,
    .cta-section {
        padding: 50px 0;
    }
    
    .rule-card,
    .step {
        padding: 20px 15px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
}