* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
}

.screen {
    display: none;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeIn 0.5s ease;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* INTRO */
.intro-content {
    text-align: center;
}

h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.elements-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.element-icon {
    font-size: 3em;
    animation: float 3s ease-in-out infinite;
}

.element-icon:nth-child(1) { animation-delay: 0s; }
.element-icon:nth-child(2) { animation-delay: 0.5s; }
.element-icon:nth-child(3) { animation-delay: 1s; }
.element-icon:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* BUTTONS */
.btn-primary, .btn-secondary, .btn-cta {
    padding: 15px 40px;
    font-size: 1.1em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
    margin-top: 20px;
}

.btn-cta {
    background: #ff6b6b;
    color: white;
    font-size: 1.3em;
    padding: 20px 50px;
    margin: 20px 0;
}

/* PROGRESS BAR */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.question-counter {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

/* QUESTIONS */
.question {
    display: none;
}

.question.active {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.question h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.answers {
    display: grid;
    gap: 15px;
}

.answer-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.answer-card:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateX(5px);
}

.answer-icon {
    font-size: 2.5em;
    margin-right: 15px;
}

.answer-icon.big {
    font-size: 4em;
    margin: 0;
}

.answer-text {
    flex: 1;
}

.answer-text strong {
    display: block;
    font-size: 1.2em;
    color: #333;
    margin-bottom: 5px;
}

.answer-text span {
    color: #666;
    font-size: 0.9em;
}

.answers.symbols {
    grid-template-columns: repeat(2, 1fr);
}

.answer-card.symbol {
    flex-direction: column;
    text-align: center;
    padding: 30px;
}

/* RESULT */
.result-content {
    animation: fadeIn 0.8s ease;
}

.energy-chart {
    margin: 30px 0;
}

.energy-bar {
    margin-bottom: 20px;
}

.energy-label {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.bar-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar {
    height: 30px;
    border-radius: 15px;
    transition: width 1s ease;
    position: relative;
}

.bar.fire { background: linear-gradient(90deg, #ff6b6b, #ff8e53); }
.bar.water { background: linear-gradient(90deg, #4facfe, #00f2fe); }
.bar.air { background: linear-gradient(90deg, #a8edea, #fed6e3); }
.bar.earth { background: linear-gradient(90deg, #38ef7d, #11998e); }

.percentage {
    font-weight: bold;
    color: #333;
    min-width: 50px;
}

.result-type {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #667eea;
}

.result-type h2 {
    color: #667eea;
    margin-bottom: 10px;
}

.result-section {
    margin: 30px 0;
    padding: 25px;
    border-radius: 15px;
    background: #fff;
    border: 2px solid #e0e0e0;
}

.result-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.result-section.alert {
    background: #fff5f5;
    border-color: #ff6b6b;
}

.result-section.cards {
    background: #f0f8ff;
    border-color: #4facfe;
}

.result-section.plan {
    background: #f0fff4;
    border-color: #38ef7d;
}

.strengths-list, .weaknesses-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.strengths-list div, .weaknesses-list div {
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #38ef7d;
}

.weaknesses-list div {
    border-left-color: #ff6b6b;
}

.tarot-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.tarot-card {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 2px solid #4facfe;
}

.tarot-card-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.tarot-card-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.tarot-card-desc {
    font-size: 0.9em;
    color: #666;
}

.action-plan {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.action-plan h4 {
    color: #38ef7d;
    margin-bottom: 10px;
}

.action-plan ul {
    list-style: none;
    padding: 0;
}

.action-plan li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.action-plan li:before {
    content: "✅ ";
    margin-right: 8px;
}

/* CTA */
.cta-section {
    text-align: center;
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.cta-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 20px 0;
}

.cta-list li {
    padding: 8px 0;
    font-size: 1.1em;
}

.discount {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffe066;
}

/* MOBILE */
@media (max-width: 768px) {
    .screen {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .answers.symbols {
        grid-template-columns: 1fr;
    }
    
    .tarot-cards-grid {
        grid-template-columns: 1fr;
    }
}









