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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    padding: 15px 0;
    text-align: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.headline {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
}

.stat .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Quiz Section */
.quiz-section {
    padding: 80px 0;
    background: white;
}

.quiz-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.quiz-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #666;
}

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #f97316, #ea580c);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 20%;
}

.question {
    margin-bottom: 30px;
}

.question h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.option:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.option.selected {
    border-color: #2563eb;
    background: #2563eb;
    color: white;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Quiz Result */
.quiz-result {
    max-width: 600px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.result-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.result-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.urgency-level {
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Product Section */
.product-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1e3a8a;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.product-details h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1e3a8a;
}

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

.product-list li {
    padding: 8px 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.price-section {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.old-price {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.current-price {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.current-price span {
    font-size: 2.5rem;
    font-weight: 900;
    color: #dc2626;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #dc2626;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.urgency-alert {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.urgency-alert p {
    margin-bottom: 5px;
    font-weight: 600;
}

.urgency-alert span {
    color: #dc2626;
    font-weight: 700;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-cta {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-cta {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-size: 1.3rem;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.btn-cta.pulse {
    animation: pulse 2s infinite;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    text-align: center;
}

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

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.security-badges span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.author {
    font-weight: 700;
    color: #1e3a8a;
}

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

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

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

.guarantee {
    margin-top: 20px !important;
    font-size: 1rem !important;
    opacity: 0.9 !important;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .headline {
        font-size: 1.8rem;
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .quiz-container {
        padding: 25px;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .quiz-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-cta {
        font-size: 1.1rem;
        padding: 18px 35px;
    }
    
    .cta-box h2, .final-cta h2 {
        font-size: 2rem;
    }
    
    .quiz-title, .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.5rem;
    }
    
    .quiz-container {
        padding: 20px;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 15px 25px;
    }
    
    .current-price span {
        font-size: 2rem;
    }
}

