/* Teste de Tipo de Pele WellNerd - CSS */

.wellnerd-teste-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.wellnerd-teste-container * {
    box-sizing: border-box;
}

.teste-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #10b981, #0d5c3d);
    color: white;
    border-radius: 15px;
}

.teste-header h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    margin-top: 0;
}

.teste-header p {
    font-size: 1.1em;
    opacity: 0.9;
    margin-bottom: 0;
}

.question-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
    border: 2px solid #e8f5f0;
}

.question-number {
    background: #10b981;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.question-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.options {
    display: grid;
    gap: 12px;
}

.option {
    padding: 15px 20px;
    border: 2px solid #e8f5f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    align-items: center;
    user-select: none;
}

.option:hover {
    border-color: #10b981;
    background-color: #f0fdf4;
}

.option.selected {
    border-color: #10b981;
    background-color: #e8f5f0;
    color: #0d5c3d;
    font-weight: 500;
}

.option input[type="radio"] {
    margin-right: 12px;
    transform: scale(1.3);
    accent-color: #10b981;
    cursor: pointer;
}

.option label {
    cursor: pointer;
    flex: 1;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e8f5f0;
    border-radius: 4px;
    margin: 20px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #0d5c3d);
    transition: width 0.5s ease;
    border-radius: 4px;
    width: 8.33%;
}

.progress-text {
    text-align: center;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-next {
    background: #10b981;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-next:hover {
    background: #0d5c3d;
    transform: translateY(-2px);
}

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

.result-container {
    display: none;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
    border: 2px solid #10b981;
    text-align: center;
}

.result-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.result-title {
    font-size: 2.5em;
    color: #10b981;
    font-weight: bold;
    margin-bottom: 15px;
}

.result-subtitle {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 25px;
}

.result-description {
    background: #f0fdf4;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: left;
    border-left: 5px solid #10b981;
}

.care-routine {
    background: #e8f5f0;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: left;
}

.care-routine h4 {
    color: #0d5c3d;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.care-step {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

.care-step-number {
    background: #10b981;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 0.9em;
}

.btn-restart {
    background: #0d5c3d;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-restart:hover {
    background: #10b981;
}

.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 0.9em;
    color: #856404;
}

/* Responsivo */
@media (max-width: 768px) {
    .wellnerd-teste-container {
        padding: 15px;
    }
    
    .teste-header h2 {
        font-size: 1.8em;
    }
    
    .question-title {
        font-size: 1.1em;
    }
    
    .result-title {
        font-size: 2em;
    }
    
    .question-container {
        padding: 20px;
    }
    
    .teste-header {
        padding: 20px;
    }
}