/* --- RESET E CONFIGURAÇÕES GLOBAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --gold-light: #FFF8DC;
    --dark-bg: #0A0A0A;
    --card-bg: #1A1A1A;
    --off-white: #FFFFFF;
    --grey: #CCCCCC;
    --grey-dark: #666666;
    --border-color: #333333;
    --red-urgent: #FF4444;
    --green-success: #00FF88;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
    --shadow-dark: 0 10px 50px rgba(0, 0, 0, 0.8);
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 50%, var(--dark-bg) 100%);
    color: var(--off-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

/* --- BARRA DE PROGRESSO FIXA --- */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow-dark);
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 14.28%; /* Começa em 1/7 */
    box-shadow: var(--shadow-gold);
}

.progress-text {
    font-weight: 900;
    font-size: 16px;
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1001;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* --- CONTAINER PRINCIPAL --- */
.container {
    max-width: 500px;
    width: 100%;
    background: var(--card-bg);
    border-radius: 25px;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-dark), var(--shadow-gold);
    overflow: hidden;
    margin-top: 80px;
    margin-bottom: 20px;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
    border-radius: 25px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* --- ANIMAÇÕES E TELAS --- */
.screen {
    padding: 40px;
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
}

@keyframes slideInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

/* --- LOGO E ELEMENTOS VISUAIS --- */
.logo-container-start {
    text-align: center;
    margin-bottom: 30px;
}

.logo-image-start {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto;
    border: 5px solid var(--gold);
    box-shadow: var(--shadow-gold), var(--shadow-dark);
    transition: transform 0.3s ease;
}

.logo-image-start:hover {
    transform: scale(1.05);
}

/* --- TÍTULOS AGRESSIVOS --- */
.screen-title-impact {
    font-family: var(--font-title);
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    animation: titlePulse 2s infinite;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8); }
    50% { transform: scale(1.02); text-shadow: 5px 5px 10px rgba(255, 215, 0, 0.5); }
}

.screen-subtitle-impact {
    font-size: 20px;
    color: var(--off-white);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.question-title {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--off-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* --- BOTÕES PRINCIPAIS --- */
.cta-button, .continue-quiz-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    border: none;
    padding: 22px 40px;
    font-size: 20px;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 30px;
    width: 100%;
    box-shadow: var(--shadow-gold), var(--shadow-dark);
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button::before, .continue-quiz-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover, .continue-quiz-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5), var(--shadow-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.cta-button:hover::before, .continue-quiz-btn:hover::before {
    left: 100%;
}

/* --- OPÇÕES DE RESPOSTA --- */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.option-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    color: var(--off-white);
    padding: 20px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.option-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.3s;
}

.option-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.option-btn:hover::before {
    left: 100%;
}

.option-btn.selected {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-color: var(--gold);
    color: var(--dark-bg);
    font-weight: 900;
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* --- GRID DE IMAGENS --- */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.image-option-btn {
    border: 3px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--card-bg);
    padding: 0;
    position: relative;
}

.image-option-btn:hover {
    border-color: var(--gold);
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-gold);
}

.image-option-btn.selected {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold), var(--shadow-dark);
}

.body-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-option-label {
    padding: 15px;
    font-weight: 700;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-option-btn.selected .image-option-label {
    background: var(--gold);
    color: var(--dark-bg);
}

/* --- DEPOIMENTOS --- */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    margin: 20px 0;
    text-align: center;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold), var(--shadow-dark);
}

.testimonial-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    border-radius: 15px;
    margin: 0 auto 15px;
    display: block;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--gold);
}

.testimonial-rating {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.author-name {
    font-weight: 900;
    font-size: 18px;
    margin: 8px 0;
    color: var(--gold);
}

.author-handle {
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-text {
    background: rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--gold);
    padding: 20px;
    margin-top: 15px;
    border-radius: 10px;
    text-align: left;
    font-style: italic;
    font-size: 16px;
    line-height: 1.5;
    color: var(--off-white);
}

/* --- ANÁLISE E PROGRESSO --- */
.analysis-bar-container {
    width: 100%;
    height: 25px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    margin: 40px 0 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.analysis-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 15px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-gold);
    position: relative;
}

.analysis-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.analysis-complete-icon {
    font-size: 60px;
    color: var(--gold);
    animation: popIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transform: scale(0);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

@keyframes popIn {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

/* --- TELA FINAL --- */
.final-screen-content {
    text-align: center;
}

.final-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.results-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.result-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-gold);
    transition: transform 0.3s ease;
}

.result-image:hover {
    transform: scale(1.05);
}

.feedback-text {
    font-size: 18px;
    font-style: italic;
    color: var(--gold);
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 2px solid var(--gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* --- TELA DE OFERTA --- */
.offer-screen-content {
    text-align: center;
}

.offer-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.price-container {
    background: rgba(255, 215, 0, 0.1);
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    box-shadow: var(--shadow-gold);
}

.original-price {
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 10px;
}

.price-striked {
    text-decoration: line-through;
    font-size: 24px;
    color: var(--red-urgent);
}

.current-price {
    font-size: 20px;
    color: var(--off-white);
    margin-bottom: 15px;
}

.price-highlight {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    animation: priceGlow 2s infinite alternate;
}

@keyframes priceGlow {
    0% { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8); }
    100% { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px var(--gold); }
}

.discount-badge {
    background: linear-gradient(135deg, var(--red-urgent), #ff6666);
    color: white;
    font-size: 24px;
    font-weight: 900;
    padding: 10px 20px;
    border-radius: 50px;
    position: absolute;
    top: -15px;
    right: -15px;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.5);
    animation: badgeBounce 1s infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.urgency-text {
    font-size: 20px;
    font-weight: 900;
    color: var(--red-urgent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 20px 0;
    animation: urgencyBlink 1.5s infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes urgencyBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

.benefits-list {
    text-align: left;
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid var(--border-color);
}

.benefit-item {
    font-size: 18px;
    color: var(--off-white);
    margin: 12px 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.benefit-item:last-child {
    border-bottom: none;
}

.offer-button {
    font-size: 22px;
    padding: 25px 45px;
    background: linear-gradient(135deg, var(--green-success), #00cc77);
    animation: offerButtonPulse 2s infinite;
}

.offer-button:hover {
    background: linear-gradient(135deg, #00ff99, var(--green-success));
    transform: translateY(-3px) scale(1.05);
}

@keyframes offerButtonPulse {
    0%, 100% { box-shadow: var(--shadow-gold), 0 0 0 0 rgba(0, 255, 136, 0.7); }
    50% { box-shadow: var(--shadow-gold), 0 0 0 10px rgba(0, 255, 136, 0); }
}

/* --- ANIMAÇÃO DE CONFETE/DINHEIRO --- */
@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 480px) {
    .container {
        margin: 70px 10px 10px;
        max-width: calc(100% - 20px);
    }
    
    .screen {
        padding: 30px 25px;
    }
    
    .screen-title-impact {
        font-size: 32px;
    }
    
    .question-title {
        font-size: 24px;
    }
    
    .progress-text {
        font-size: 14px;
    }
    
    .logo-image-start {
        width: 150px;
        height: 150px;
    }
}































