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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000, #0a0a0a, #000000);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 168, 120, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 168, 120, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 168, 120, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Telas */
.screen {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.screen.active {
    display: block;
}

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

/* Background Pattern */
.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(0, 168, 120, 0.1) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 168, 120, 0.1) 50%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.3;
    z-index: -1;
}



/* Contador Regresivo */
.countdown-container {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
    z-index: 10;
}

.countdown {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    animation: pulse 1s infinite;
}

.countdown i {
    color: #ff0000;
    font-size: 1.2rem;
    margin-right: 10px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

#countdown {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.countdown-text {
    font-size: 0.8rem;
    color: #ffffff;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 2.5rem;
    color: #00a878;
    text-shadow: 0 0 20px rgba(0, 168, 120, 0.8);
    animation: pulse 2s infinite;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00a878;
    text-shadow: 0 0 30px rgba(0, 168, 120, 0.8);
    margin-bottom: 10px;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #00a878, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero-section {
    text-align: center;
    position: relative;
}

.hero-image {
    margin-bottom: 30px;
}

.hero-image i {
    font-size: 4rem;
    color: #00a878;
    text-shadow: 0 0 30px rgba(0, 168, 120, 0.8);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 168, 120, 0.1), rgba(0, 43, 54, 0.3));
    border-radius: 15px;
    border: 2px solid #00a878;
    min-width: 120px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 120, 0.2), transparent);
    transition: left 0.5s;
}

.stat:hover::before {
    left: 100%;
}

.stat-icon {
    font-size: 1.5rem;
    color: #00a878;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 168, 120, 0.8);
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.stat .label {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-text strong {
    color: #00a878;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(0, 168, 120, 0.8);
}

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, #00a878, #00ff88);
    color: #000000;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(0, 168, 120, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 168, 120, 0.8);
    background: linear-gradient(135deg, #00ff88, #00a878);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary i {
    margin-right: 10px;
}

/* Progress Container */
.progress-container {
    margin-bottom: 40px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00a878, #00ff88);
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 0%;
    box-shadow: 0 0 20px rgba(0, 168, 120, 0.5);
}

.progress-text {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Perguntas */
.question-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.question-icon {
    margin-bottom: 0;
}

.question-icon i {
    font-size: 3rem;
    color: #00a878;
    text-shadow: 0 0 25px rgba(0, 168, 120, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
}



@keyframes glow {
    from { text-shadow: 0 0 25px rgba(0, 168, 120, 0.8); }
    to { text-shadow: 0 0 35px rgba(0, 168, 120, 1); }
}

#question-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.option-btn {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8), rgba(0, 43, 54, 0.8));
    border: 2px solid #00a878;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    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(0, 168, 120, 0.2), transparent);
    transition: left 0.5s;
}

.option-btn:hover {
    background: linear-gradient(135deg, rgba(0, 168, 120, 0.2), rgba(0, 43, 54, 0.8));
    transform: translateX(10px);
    box-shadow: 0 0 30px rgba(0, 168, 120, 0.3);
    border-color: #00ff88;
}

.option-btn:hover::before {
    left: 100%;
}

.option-letter {
    background: linear-gradient(135deg, #00a878, #00ff88);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 168, 120, 0.5);
}

.option-text {
    flex: 1;
}

.option-arrow {
    color: #00a878;
    opacity: 0;
    transition: all 0.3s ease;
}

.option-btn:hover .option-arrow {
    opacity: 1;
    transform: translateX(5px);
}



/* Resultado */
.result-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 168, 120, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 168, 120, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.result-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.result-icon {
    margin-bottom: 20px;
}

.result-icon i {
    font-size: 4rem;
    color: #00a878;
    text-shadow: 0 0 30px rgba(0, 168, 120, 0.8);
    animation: crownGlow 2s ease-in-out infinite alternate;
}

@keyframes crownGlow {
    from { text-shadow: 0 0 30px rgba(0, 168, 120, 0.8); }
    to { text-shadow: 0 0 40px rgba(0, 168, 120, 1); }
}

.result-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00a878;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 168, 120, 0.8);
}

.compatibility {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 168, 120, 0.2), rgba(0, 43, 54, 0.3));
    padding: 20px 40px;
    border-radius: 50px;
    border: 2px solid #00a878;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.compatibility::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 120, 0.3), transparent);
    animation: slide 3s infinite;
}

@keyframes slide {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.compatibility .percentage {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.compatibility .label {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Estadísticas Personales */
.personal-stats {
    background: linear-gradient(135deg, rgba(0, 43, 54, 0.8), rgba(42, 42, 42, 0.8));
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #00a878;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.personal-stats h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #00a878;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 168, 120, 0.8);
}

.personal-stats h3 i {
    margin-right: 10px;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 168, 120, 0.1);
    border-radius: 10px;
    border-left: 4px solid #00a878;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 120, 0.2), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item .stat-icon {
    background: linear-gradient(135deg, #00a878, #00ff88);
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 168, 120, 0.5);
}

.stat-content h4 {
    color: #00a878;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 168, 120, 0.5);
}

.stat-content p {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.method-result {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8), rgba(0, 43, 54, 0.8));
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #00a878;
    margin-bottom: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.method-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 120, 0.1), transparent);
    animation: slide 4s infinite;
}

.method-icon {
    margin-bottom: 20px;
}

.method-icon i {
    font-size: 3rem;
    color: #00a878;
    text-shadow: 0 0 25px rgba(0, 168, 120, 0.8);
}

.method-result h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #00a878;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 168, 120, 0.8);
}

.method-result p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.action-plan {
    background: linear-gradient(135deg, rgba(0, 43, 54, 0.8), rgba(42, 42, 42, 0.8));
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #00a878;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.action-plan h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #00a878;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 168, 120, 0.8);
}

.action-plan h3 i {
    margin-right: 10px;
}

.action-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 168, 120, 0.1);
    border-radius: 10px;
    border-left: 4px solid #00a878;
    position: relative;
    overflow: hidden;
}

.action-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 120, 0.2), transparent);
    transition: left 0.5s;
}

.action-step:hover::before {
    left: 100%;
}

.step-number {
    background: linear-gradient(135deg, #00a878, #00ff88);
    color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 168, 120, 0.5);
}

.step-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 168, 120, 0.2), rgba(0, 43, 54, 0.3));
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #00a878;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 120, 0.2), transparent);
    animation: slide 3s infinite;
}

.cta-icon {
    margin-bottom: 20px;
}

.cta-icon i {
    font-size: 3rem;
    color: #ff6b35;
    text-shadow: 0 0 25px rgba(255, 107, 53, 0.8);
    animation: giftGlow 2s ease-in-out infinite alternate;
}

@keyframes giftGlow {
    from { text-shadow: 0 0 25px rgba(255, 107, 53, 0.8); }
    to { text-shadow: 0 0 35px rgba(255, 107, 53, 1); }
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.cta-text strong {
    color: #ffffff;
    font-weight: 900;
}

.btn-hotmart {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-hotmart::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;
}

.btn-hotmart:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.8);
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

.btn-hotmart:hover::before {
    left: 100%;
}

.btn-hotmart i {
    margin-right: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .countdown-container {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat {
        min-width: auto;
    }
    
    .options {
        gap: 15px;
    }
    
    .option-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .result-header h1 {
        font-size: 2rem;
    }
    
    .compatibility .percentage {
        font-size: 2.5rem;
    }
    
    .method-result h2 {
        font-size: 1.5rem;
    }
    
    .action-plan h3 {
        font-size: 1.3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    

    
    .question-header {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-primary:active,
.btn-hotmart:active {
    animation: pulse 0.3s ease;
}
