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

:root {
    --primary: #9333ea;
    --secondary: #ec4899;
    --accent: #f97316;
    --success: #22c55e;
    --danger: #ef4444;
    --bg: #ffffff;
    --text: #1f2937;
    --text-light: #6b7280;
    --border: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 50%, #fed7aa 100%);
    padding: 60px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f9fafb;
}

.features h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Product Gallery */
.product-gallery {
    padding: 80px 0;
    background: white;
}

.product-gallery h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

.gallery-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.gallery-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-thumbnails img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.gallery-thumbnails img:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Unboxing Section */
.unboxing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
}

.unboxing h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

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

.unboxing-video {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.unboxing-video video {
    width: 100%;
    height: auto;
    display: block;
}

.unboxing-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
}

.unboxing-list {
    list-style: none;
}

.unboxing-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.unboxing-list li:last-child {
    border-bottom: none;
}

/* Before/After Section */
.before-after {
    padding: 80px 0;
    background: white;
}

.before-after h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

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

.case-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.case-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.case-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #000;
}

.case-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-label {
    position: absolute;
    top: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.case-label.before {
    left: 10px;
    background: #ef4444;
}

.case-label.after {
    right: 10px;
    background: #22c55e;
}

.case-info {
    padding: 20px;
}

.case-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
}

.case-weight {
    font-size: 20px;
    font-weight: bold;
    color: var(--success);
    margin-bottom: 12px;
}

.case-testimonial {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 12px;
}

.case-verified {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
}

/* Quiz Section */
.quiz-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 50%, #fed7aa 100%);
}

.quiz-container {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.quiz-container h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

.quiz-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 16.66%;
    transition: width 0.3s;
}

.progress-text {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.quiz-question {
    margin-bottom: 30px;
}

.quiz-question label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
}

.quiz-question input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.quiz-question input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.option-btn {
    padding: 12px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--text);
}

.option-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.option-btn.selected {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: var(--primary);
}

.quiz-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.quiz-actions button {
    flex: 1;
}

/* Result Section */
.result-header {
    text-align: center;
    margin-bottom: 30px;
}

.result-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--success);
}

.result-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.result-card {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.result-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.result-card p {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text);
}

.result-card strong {
    color: var(--text);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.countdown-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border);
}

.countdown-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--danger);
}

.countdown-label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.discount {
    font-size: 24px;
    font-weight: bold;
    color: var(--danger);
    margin-bottom: 10px;
}

.final-price {
    font-size: 20px;
    color: var(--success);
    margin-bottom: 5px;
}

.offer-text {
    font-size: 12px;
    color: var(--danger);
    font-weight: 600;
}

.guarantee {
    background: #f0fdf4;
    border: 1px solid #86efac;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    color: #166534;
    margin-top: 20px;
}

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

.faq h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f3e8ff;
    color: var(--primary);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

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

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

.faq-answer.show {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

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

.cta-final h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

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

.cta-final .cta-button {
    background: white;
    color: var(--primary);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .unboxing-content {
        grid-template-columns: 1fr;
    }

    .result-info {
        grid-template-columns: 1fr;
    }

    .quiz-container {
        padding: 30px;
    }

    .quiz-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar-content {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button.large {
        width: 100%;
    }

    .quiz-actions {
        flex-direction: column;
    }

    .quiz-actions button {
        width: 100%;
    }

    .features h2,
    .product-gallery h2,
    .unboxing h2,
    .before-after h2,
    .faq h2,
    .cta-final h2 {
        font-size: 28px;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .quiz-container {
        padding: 20px;
    }

    .logo {
        font-size: 14px;
    }

    .cta-button {
        padding: 10px 16px;
        font-size: 12px;
    }

    .stat-number {
        font-size: 20px;
    }

    .result-card {
        padding: 15px;
    }

    .result-card h3 {
        font-size: 14px;
    }

    .result-card p {
        font-size: 12px;
    }

    .countdown-number {
        font-size: 18px;
    }

    .countdown-label {
        font-size: 10px;
    }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    animation: pulse-bg 2s ease-in-out infinite;
}

.urgency-text {
    font-weight: 500;
}

.urgency-text strong {
    font-weight: 800;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Highlight Number */
.highlight-number {
    color: var(--accent);
    font-size: 1.2em;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.trust-badges .badge {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Field Hints */
.field-hint {
    font-size: 12px;
    color: var(--text-light);
    margin-top: -5px;
    margin-bottom: 10px;
}

.required {
    color: var(--danger);
}

/* Quiz Option Button Selected State */
.option-btn.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Result Card Highlight */
.result-card.highlight {
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
    border: 2px solid var(--primary);
}

/* Discount Badge */
.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--danger), var(--accent));
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 800;
    margin: 10px 0;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Installments */
.installments {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

/* Bonus List */
.bonus-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.bonus-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
}

/* Final CTA Benefits */
.final-cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.benefit-item {
    background: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Final Note */
.final-note {
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

/* Footer Improvements */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .unboxing-content {
        grid-template-columns: 1fr;
    }
    
    .quiz-container {
        padding: 30px 20px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .urgency-banner {
        font-size: 12px;
        padding: 10px 5px;
    }
    
    .final-cta-benefits {
        grid-template-columns: 1fr 1fr;
    }
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Smooth Transitions */
* {
    transition: opacity 0.3s ease;
}

button, a, input {
    transition: all 0.3s ease;
}
