/* O Guia para Fazer Parte dos 10% que Vencem Online Product Theme - Ultra Premium */
.vencer-online-page {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
    position: relative;
}

.vencer-online-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(217, 119, 6, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(180, 83, 9, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.vencer-online-product-page {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
    position: relative;
}

.vencer-online-product-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(217, 119, 6, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(180, 83, 9, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.vencer-online-product-page .product-container {
    position: relative;
    z-index: 1;
}

.vencer-online-product-page .product-showcase {
    background: white;
    border: 3px solid rgba(217, 119, 6, 0.2);
    box-shadow: 0 30px 90px rgba(217, 119, 6, 0.25);
}

.vencer-online-product-page .product-showcase::before {
    background: linear-gradient(90deg, #d97706, #b45309);
    height: 6px;
}

.vencer-online-product-page .product-visual {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    position: relative;
}

.vencer-online-product-page .product-visual::after {
    content: '🏆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.vencer-online-product-page .product-badge {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
    animation: vencerOnlineBadgePulse 2s ease-in-out infinite;
}

@keyframes vencerOnlineBadgePulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(217, 119, 6, 0.6);
    }
}

.vencer-online-product-page .product-name {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(217, 119, 6, 0.2));
}

.vencer-online-product-page .product-includes {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 5px solid #d97706;
    box-shadow: 0 5px 20px rgba(217, 119, 6, 0.1);
}

.vencer-online-product-page .product-features {
    background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(217, 119, 6, 0.1);
}

.vencer-online-product-page .feature {
    background: white;
    border: 2px solid rgba(217, 119, 6, 0.2);
    transition: all 0.3s ease;
}

.vencer-online-product-page .feature:hover {
    border-color: #d97706;
    box-shadow: 0 5px 20px rgba(217, 119, 6, 0.3);
    transform: translateX(10px);
}

.vencer-online-product-page .feature-icon {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
}

.vencer-online-product-page .price-new {
    color: #b45309;
    text-shadow: 0 0 20px rgba(217, 119, 6, 0.2);
}

.vencer-online-product-page .product-pricing {
    background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
    border: 2px solid rgba(217, 119, 6, 0.3);
}

.vencer-online-product-page .product-cta {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.4);
    position: relative;
}

.vencer-online-product-page .product-cta::after {
    content: '🏆';
    position: absolute;
    right: 2rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.vencer-online-product-page .product-cta:hover {
    box-shadow: 0 20px 50px rgba(217, 119, 6, 0.5);
    transform: translateY(-5px) scale(1.02);
}

.vencer-online-product-page .tag {
    transition: all 0.3s ease;
}

.vencer-online-product-page .tag:hover {
    background: rgba(217, 119, 6, 0.15);
    transform: translateY(-2px);
}

.vencer-online-product-page .product-content {
    position: relative;
}

.vencer-online-product-page .product-content::before {
    content: '🏆';
    position: absolute;
    bottom: -50px;
    right: -50px;
    font-size: 15rem;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.vencer-online-product-page .product-content > * {
    position: relative;
    z-index: 1;
}

/* Interactive Game Section - Vencer Online Theme */
.interactive-game-section {
    margin-top: 4rem;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.game-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(217, 119, 6, 0.2);
    border: 3px solid rgba(217, 119, 6, 0.15);
    position: relative;
    overflow: hidden;
}

.game-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #d97706, #b45309);
}

.game-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.game-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.game-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.quiz-container {
    margin-top: 2rem;
}

.quiz-question {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-number {
    text-align: center;
    margin-bottom: 1.5rem;
}

.question-number span {
    display: inline-block;
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
}

.question-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.quiz-options {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quiz-option {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid rgba(217, 119, 6, 0.2);
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.quiz-option:hover:not(:disabled) {
    background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
    border-color: #d97706;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(217, 119, 6, 0.3);
}

.quiz-option:disabled {
    cursor: not-allowed;
}

.quiz-option.correct {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: #10b981;
    animation: correctPulse 0.5s ease;
}

.quiz-option.incorrect {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-color: #ef4444;
    animation: shake 0.5s ease;
}

@keyframes correctPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

.quiz-feedback {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 15px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.feedback-correct {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left: 5px solid #10b981;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
}

.feedback-incorrect {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left: 5px solid #ef4444;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
}

.feedback-icon {
    font-size: 1.5rem;
}

.feedback-text {
    font-weight: 600;
    color: #333;
}

.quiz-result {
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.result-content {
    padding: 2rem;
}

.result-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.result-title {
    font-size: 2rem;
    font-weight: 800;
    color: #d97706;
    margin-bottom: 1rem;
}

.result-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.result-score {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid rgba(217, 119, 6, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #b45309;
}

.restart-quiz-btn {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid rgba(217, 119, 6, 0.3);
    border-radius: 15px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #b45309;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.restart-quiz-btn:hover {
    background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
    border-color: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(217, 119, 6, 0.3);
}

.game-cta {
    display: inline-block;
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: white;
    border-radius: 15px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
}

.game-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.5);
}

@media (max-width: 768px) {
    .game-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .game-title {
        font-size: 1.5rem;
    }

    .question-text {
        font-size: 1.2rem;
    }

    .quiz-option {
        padding: 1rem;
        font-size: 1rem;
    }

    .result-title {
        font-size: 1.5rem;
    }

    .restart-quiz-btn,
    .game-cta {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

