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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 5px;
}

.container {
    width: 100%;
    max-width: 500px;
    min-width: 320px;
}

.page {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo */
.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo h1 {
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Banner */
.banner {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-height: 200px;
}

.banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    z-index: 2;
    width: 90%;
}

.banner-text h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

.banner-text h3 {
    font-size: 26px;
    font-weight: 800;
    color: #4A90E2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    line-height: 1.1;
}

/* Content */
.content {
    text-align: center;
    padding: 0 15px;
}

.celebration {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

.highlight {
    color: #4F46E5;
    font-weight: 600;
}

.description {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.special-week {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.offer {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.incentive {
    font-size: 14px;
    margin-bottom: 30px;
    color: #666;
    font-style: italic;
}

/* Buttons */
.start-button, .retry-button, .claim-button, .continue-button {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 400px;
}

.start-button:hover, .retry-button:hover, .claim-button:hover, .continue-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Progress */
.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 12px;
    background-color: #E5E7EB;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3B82F6, #1E40AF);
    border-radius: 6px;
    transition: width 0.5s ease;
    width: 0%;
}

.discount-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 25px;
    padding: 8px 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.discount-icon {
    font-size: 16px;
}

.discount-info {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.discount-label {
    font-size: 12px;
    font-weight: 600;
    color: #3B82F6;
}

.discount-sublabel {
    font-size: 10px;
    color: #666;
}

.discount-value {
    font-size: 18px;
    font-weight: 800;
    color: #000;
}

/* Quiz Content */
.quiz-content {
    text-align: center;
}

.question-title {
    font-size: 20px;
    color: #4F46E5;
    margin-bottom: 20px;
    font-weight: 600;
}

.question-text {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.option-button {
    background: white;
    border: 3px solid;
    border-radius: 15px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.option-button.green {
    border-color: #10B981;
    color: #10B981;
}

.option-button.blue {
    border-color: #3B82F6;
    color: #3B82F6;
}

.option-button.yellow {
    border-color: #F59E0B;
    color: #F59E0B;
}

.option-button.purple {
    border-color: #8B5CF6;
    color: #8B5CF6;
}

.option-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.option-button.green:hover {
    background-color: #10B981;
    color: white;
}

.option-button.blue:hover {
    background-color: #3B82F6;
    color: white;
}

.option-button.yellow:hover {
    background-color: #F59E0B;
    color: white;
}

.option-button.purple:hover {
    background-color: #8B5CF6;
    color: white;
}

.option-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

/* Options List */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.option-list-button {
    background: white;
    border: 3px solid;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Intermediate Page */
.intermediate-content {
    text-align: center;
    padding: 20px;
}

.intermediate-title {
    font-size: 24px;
    color: #4F46E5;
    margin-bottom: 25px;
    font-weight: 700;
}

.statistic {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.call-to-action {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.incentive-text {
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
    color: #10B981;
    font-weight: 500;
}

/* Error Page */
.error-content {
    text-align: center;
    padding: 40px 20px;
}

.error-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.error-title {
    font-size: 24px;
    color: #EF4444;
    margin-bottom: 15px;
    font-weight: 700;
}

.error-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #000;
    font-weight: 500;
}

/* Success Page */
.success-content {
    text-align: center;
    padding: 20px;
}

.success-title {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.success-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
}

.green-text {
    color: #10B981;
    font-weight: 600;
}

.red-text {
    color: #EF4444;
    font-weight: 600;
}

.video-container {
    margin: 30px 0;
}

.video-placeholder {
    background: linear-gradient(135deg, #1E40AF, #3B82F6);
    border-radius: 15px;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.coupon-text {
    font-size: 18px;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.discount-text {
    font-size: 16px;
    margin-bottom: 10px;
}

.click-text {
    font-size: 14px;
    margin-bottom: 25px;
}

.reward-text {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 36px;
    }
    
    .banner {
        min-height: 150px;
    }
    
    .banner img {
        height: 150px;
    }
    
    .banner-text h2 {
        font-size: 18px;
    }
    
    .banner-text h3 {
        font-size: 22px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .discount-badge {
        align-self: center;
    }
}



/* Página Cupom Reservado */
.coupon-reserved-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.coupon-title {
    font-size: 28px;
    font-weight: 700;
    color: #EF4444;
    margin-bottom: 15px;
    text-decoration: underline;
}

.coupon-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #000;
    font-weight: 400;
}

.coupon-message {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}

.cupons-highlight {
    color: #6366F1;
    font-weight: 600;
}

.coupon-reservation {
    font-size: 16px;
    margin-bottom: 50px;
    color: #000;
    line-height: 1.5;
}

.coupon-stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.coupon-circle-section {
    flex: 1;
    text-align: center;
}

.circle-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.circle-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.circle-progress {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: conic-gradient(#3B82F6 14.4deg, #E5E7EB 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-progress::before {
    content: '';
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    position: absolute;
}

.circle-percentage {
    position: absolute;
    font-size: 32px;
    font-weight: 800;
    color: #000;
    z-index: 1;
}

.coupon-available-section {
    flex: 1;
    text-align: center;
}

.available-text {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 400;
}

.hexagon-container {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F9FA;
    border-radius: 20px;
    border: 2px solid #E5E7EB;
}

.hexagon-image {
    width: 80px;
    height: 80px;
}

.continue-challenge-button {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.continue-challenge-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Opções da Fruta */
.fruit-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.fruit-option-button {
    background: white;
    border: 3px solid #E5E7EB;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #000;
}

.fruit-option-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #3B82F6;
    background-color: #3B82F6;
    color: white;
}

/* Opções Finais */
.final-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.final-option-button {
    background: white;
    border: 3px solid #E5E7EB;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.final-option-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #3B82F6;
    background-color: #3B82F6;
    color: white;
}

.final-option-button .emoji {
    font-size: 24px;
}

.final-option-button .text {
    flex: 1;
}

/* Página de Carregamento */
.loading-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.loading-progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.loading-progress-bar {
    width: 300px;
    height: 8px;
    background-color: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.loading-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3B82F6, #1E40AF);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 84%;
}

.progress-percentage {
    font-size: 14px;
    font-weight: 600;
    color: #3B82F6;
    min-width: 35px;
}

.loading-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.loading-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.reclame-aqui-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    margin: 0 auto;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.reclame-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.reclame-logo-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.reclame-logo-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.reclame-info {
    flex: 1;
    text-align: left;
}

.reclame-title {
    font-size: 16px;
    color: #10B981;
    font-weight: 700;
    line-height: 1.2;
}

.reclame-subtitle {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
    line-height: 1.2;
}

.reclame-description {
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 15px;
    text-align: left;
}

.stars-container {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.star {
    font-size: 16px;
}

/* Video Container */
.video-container {
    margin: 30px 0;
    position: relative;
}

.video-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive para novas páginas */
@media (max-width: 480px) {
    .coupon-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .circle-container {
        width: 120px;
        height: 120px;
    }
    
    .circle-progress {
        width: 120px;
        height: 120px;
    }
    
    .circle-progress::before {
        width: 90px;
        height: 90px;
    }
    
    .circle-percentage {
        font-size: 28px;
    }
    
    .hexagon-container {
        width: 120px;
        height: 120px;
    }
    
    .hexagon-image {
        width: 60px;
        height: 60px;
    }
    
    .fruit-options {
        grid-template-columns: 1fr;
    }
    
    .coupon-title {
        font-size: 24px;
    }
    
    .coupon-subtitle {
        font-size: 18px;
    }
    
    .continue-challenge-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

