/* Variáveis CSS */
:root {
    --primary-color: #00DB94;
    --secondary-color: #FF8C00;
    --tertiary-color: #9370DB;
    --quaternary-color: #87CEEB;
    --background-color: #00DB9426;
    --text-color: #333;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('./fonts/Sofia-Pro-Regular-Az.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Sofia Pro', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Container principal do wizard */
.wizard-container {
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    /* background: ;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow); */
    position: relative;
}

/* Header do wizard */
.wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.btn-close-wizard,
.btn-back-wizard {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.btn-close-wizard:hover,
.btn-back-wizard:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.btn-back-wizard {
    font-size: 1rem;
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
}

/* Barra de progresso */
.progress-container {
    margin-bottom: 2rem;
}

.progress {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--primary-color);
    transition: width 0.6s ease;
}

/* Container das perguntas */
.question-container {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.question-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.question-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 2rem;
}

/* Botões de resposta */
.answer-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.answer-btn {
    padding: 1rem 2rem;
    border: 1px solid #333;
    border-radius: var(--border-radius);
    background: white;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 60px;
}

/* Cores dos botões baseadas no Vitl */
/* .answer-btn.option-1 {
    border-color: #666;
    background-color: transparent;
}

.answer-btn.option-2 {
    border-color: var(--tertiary-color);
    background-color: rgba(147, 112, 219, 0.1);
}

.answer-btn.option-3 {
    border-color: var(--quaternary-color);
    background-color: rgba(135, 206, 235, 0.1);
}

.answer-btn.option-4 {
    border-color: var(--primary-color);
    background-color: rgba(0, 219, 148, 0.1);
}

.answer-btn.option-5 {
    border-color: #FF69B4;
    background-color: rgba(255, 105, 180, 0.1);
} */

.answer-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.answer-btn.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Botões de múltipla escolha */
.answer-buttons.multiple-choice {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.answer-buttons.two-columns {
    grid-template-columns: 1fr 1fr;
}

.answer-buttons.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

/* Botão de continuar */
.continue-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    min-width: 150px;
}

.continue-btn:hover {
    background-color: #00c085;
    transform: translateY(-2px);
}

.continue-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Emojis */
.emoji {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Animações */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.fade-out {
    animation: fadeOut 0.3s ease-out;
}

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

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

/* Resultados */
.result-card {
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(0, 219, 148, 0.05);
}

.result-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.result-description {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.result-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.combo-card {
    background: linear-gradient(135deg, var(--primary-color), #00c085);
    color: white;
    border: none;
    margin-top: 1rem;
}

.combo-card .result-title,
.combo-card .result-description,
.combo-card .result-price {
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .wizard-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .question-title {
        font-size: 1.5rem;
    }
    
    .answer-buttons.multiple-choice {
        grid-template-columns: 1fr;
    }
    
    .answer-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .wizard-container {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    .question-title {
        font-size: 1.3rem;
    }
}

