/* Quiz, resultado, forms — tema escuro */

body {
    font-family: var(--font-sans);
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.container {
    width: 100%;
    max-width: 460px;
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

h1 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 18px 0 10px;
    color: var(--text-primary);
}

.container p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.perfil-text {
    font-size: 1.05rem;
}

.stake-box {
    padding: 18px 22px;
    background: var(--highlight-soft);
    border-left: 4px solid var(--highlight);
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.stake-title {
    font-weight: 600;
    color: var(--highlight);
    margin-bottom: 6px;
}

.stake-box p {
    margin: 0;
}

.cta-lead {
    font-weight: 600;
    margin: 20px 0 14px;
    color: var(--text-primary);
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s;
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

.option {
    padding: 14px 18px;
    margin: 8px 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-primary);
}

.option:hover {
    border-color: var(--accent);
}

.progress-bar {
    height: 6px;
    background: var(--bg-elevated);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.3s;
    border-radius: 10px;
}

.fade {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
