/* ========================================
   MIND CODE - ESTILOS PRINCIPAIS
   Design Premium com Efeitos Avançados
   ======================================== */

/* ----------------------------------------
   VARIÁVEIS CSS (fácil de editar)
   ---------------------------------------- */
:root {
    /* Cores principais */
    --color-primary: #6C63FF;
    --color-primary-dark: #5A52D5;
    --color-secondary: #8B5CF6;
    --color-accent: #A855F7;
    --color-cyan: #22D3EE;
    --color-pink: #EC4899;
    
    /* Cores de fundo */
    --bg-dark: #0A0A12;
    --bg-darker: #050508;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    /* Cores de texto */
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0C0;
    --text-muted: #6B6B7B;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #6C63FF 0%, #A855F7 50%, #EC4899 100%);
    --gradient-secondary: linear-gradient(135deg, #22D3EE 0%, #6C63FF 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(108, 99, 255, 0.2) 0%, transparent 60%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(108, 99, 255, 0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(168, 85, 247, 0.1) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(34, 211, 238, 0.1) 0px, transparent 50%),
                     radial-gradient(at 80% 50%, rgba(236, 72, 153, 0.08) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, rgba(108, 99, 255, 0.1) 0px, transparent 50%);
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Bordas */
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----------------------------------------
   RESET E BASE
   ---------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
}

/* ----------------------------------------
   PARTÍCULAS DE FUNDO
   ---------------------------------------- */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(108, 99, 255, 0.6);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.5),
                0 0 20px rgba(108, 99, 255, 0.3);
}

.particle:nth-child(odd) {
    background: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5),
                0 0 20px rgba(168, 85, 247, 0.3);
}

.particle:nth-child(3n) {
    background: rgba(34, 211, 238, 0.4);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.5),
                0 0 20px rgba(34, 211, 238, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ----------------------------------------
   SEÇÕES
   ---------------------------------------- */
.section {
    min-height: 100vh;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    z-index: 10;
}

.section.active {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ----------------------------------------
   HEADER E LOGO
   ---------------------------------------- */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    z-index: 100;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    animation: gradientShift 5s ease infinite;
    position: relative;
    display: inline-block;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.5;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ----------------------------------------
   LANDING PAGE - HERO
   ---------------------------------------- */
.hero {
    max-width: 850px;
    text-align: center;
    z-index: 10;
    padding: var(--spacing-2xl) var(--spacing-lg);
}

.headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    text-shadow: 0 0 40px rgba(108, 99, 255, 0.3);
    animation: fadeInUp 1s ease-out;
}

.headline-highlight {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.subheadline {
    font-size: clamp(1.0625rem, 2.5vw, 1.3125rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    line-height: 1.7;
}

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

/* ----------------------------------------
   BOTÕES
   ---------------------------------------- */
.btn-primary {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: var(--text-primary);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 25px rgba(108, 99, 255, 0.4),
                0 0 0 0 rgba(108, 99, 255, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s backwards, pulse 3s ease-in-out infinite;
}

.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.6s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 35px rgba(108, 99, 255, 0.5),
                0 0 0 0 rgba(108, 99, 255, 0);
    background-position: 100% 50%;
}

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

.btn-primary:hover::after {
    opacity: 0.6;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(108, 99, 255, 0.5);
    transform: translateX(-5px);
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.2);
}

.btn-cta {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 1.3125rem;
    font-weight: 600;
    padding: var(--spacing-md) var(--spacing-2xl);
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 30px rgba(108, 99, 255, 0.5);
    position: relative;
    overflow: hidden;
    animation: pulse 2.5s ease-in-out infinite, gradientShift 5s ease infinite;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shimmer 3s infinite;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 50px rgba(108, 99, 255, 0.6),
                0 0 80px rgba(168, 85, 247, 0.3);
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 30px rgba(108, 99, 255, 0.5);
    }
    50% {
        box-shadow: 0 4px 45px rgba(108, 99, 255, 0.7),
                    0 0 60px rgba(168, 85, 247, 0.3);
    }
}

/* ----------------------------------------
   EFEITOS DE FUNDO
   ---------------------------------------- */
.bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
    background: radial-gradient(circle at 50% 50%, 
                rgba(108, 99, 255, 0.15) 0%, 
                rgba(168, 85, 247, 0.08) 25%,
                transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(108, 99, 255, 0.15);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(168, 85, 247, 0.12);
    bottom: 10%;
    right: -5%;
    animation-delay: -7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(34, 211, 238, 0.1);
    top: 60%;
    left: 10%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -50px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

/* ----------------------------------------
   QUIZ - BARRA DE PROGRESSO
   ---------------------------------------- */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-text {
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.progress-text span {
    color: var(--color-primary);
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    max-width: 450px;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.1) 50%, 
        transparent 100%);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 10%;
    transition: width var(--transition-normal);
    position: relative;
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.5);
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.8),
                0 0 30px rgba(108, 99, 255, 0.5);
}

/* ----------------------------------------
   QUIZ - CONTAINER DE PERGUNTAS
   ---------------------------------------- */
.quiz-container {
    max-width: 720px;
    width: 100%;
    margin-top: var(--spacing-2xl);
}

.question-container {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.question-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(108, 99, 255, 0.5), 
        rgba(168, 85, 247, 0.5), 
        transparent);
}

.question {
    opacity: 0;
    transform: translateX(40px);
    transition: all var(--transition-slow);
}

.question.active {
    opacity: 1;
    transform: translateX(0);
}

.question.exit {
    opacity: 0;
    transform: translateX(-40px);
}

.question-title {
    font-family: var(--font-display);
    font-size: clamp(1.3125rem, 3vw, 1.625rem);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    line-height: 1.45;
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----------------------------------------
   QUIZ - OPÇÕES DE RESPOSTA
   ---------------------------------------- */
.options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.option {
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all var(--transition-normal);
}

.option::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.option:hover {
    background: rgba(108, 99, 255, 0.08);
    border-color: rgba(108, 99, 255, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.15);
}

.option:hover::before {
    opacity: 1;
}

.option.selected {
    background: rgba(108, 99, 255, 0.12);
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.2),
                inset 0 0 20px rgba(108, 99, 255, 0.05);
}

.option.selected::before {
    opacity: 1;
    width: 5px;
}

.option.selected::after {
    opacity: 0.05;
}

/* Número da opção */
.option-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: var(--spacing-md);
    transition: all var(--transition-normal);
}

.option:hover .option-number {
    background: rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.4);
    color: var(--color-primary);
}

.option.selected .option-number {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.5);
}

/* ----------------------------------------
   QUIZ - NAVEGAÇÃO
   ---------------------------------------- */
.quiz-navigation {
    margin-top: var(--spacing-lg);
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

/* ----------------------------------------
   RESULTADO - CONTAINER
   ---------------------------------------- */
#result {
    background: var(--bg-darker);
    background-image: var(--gradient-mesh);
}

.result-container {
    max-width: 820px;
    width: 100%;
    padding: var(--spacing-xl);
}

.result-intro {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 0.8s ease-out;
}

.result-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

.result-highlight {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 5vw, 2.75rem);
    font-weight: 700;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    animation: gradientShift 5s ease infinite;
    text-shadow: 0 0 60px rgba(108, 99, 255, 0.5);
}

.result-intro > p:last-child {
    font-size: 1.1875rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ----------------------------------------
   RESULTADO - BLOCOS DINÂMICOS
   ---------------------------------------- */
.dynamic-blocks {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.result-block {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: blockReveal 0.7s ease-out forwards;
}

.result-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.result-block::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(108, 99, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.result-block:nth-child(1) { animation-delay: 0.2s; }
.result-block:nth-child(2) { animation-delay: 0.4s; }
.result-block:nth-child(3) { animation-delay: 0.6s; }
.result-block:nth-child(4) { animation-delay: 0.8s; }
.result-block:nth-child(5) { animation-delay: 1s; }

@keyframes blockReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-block h4 {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.result-block p {
    color: var(--text-secondary);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* ----------------------------------------
   RESULTADO - CONCLUSÃO
   ---------------------------------------- */
.result-conclusion {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUp 0.8s ease-out 1.2s backwards;
}

.result-conclusion h3 {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 4vw, 1.875rem);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.result-conclusion .highlight {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.result-conclusion p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.result-conclusion .good-news {
    color: var(--text-primary);
}

.result-conclusion .good-news strong {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-conclusion .cta-text {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

/* ----------------------------------------
   ANIMAÇÕES GERAIS
   ---------------------------------------- */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ----------------------------------------
   RESPONSIVIDADE - MOBILE FIRST
   ---------------------------------------- */
@media (max-width: 768px) {
    .section {
        padding: var(--spacing-md);
    }
    
    .hero {
        padding: var(--spacing-xl) var(--spacing-sm);
    }
    
    .question-container {
        padding: var(--spacing-lg);
    }
    
    .btn-primary,
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    
    .result-container {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .result-block {
        padding: var(--spacing-md);
    }
    
    .floating-orb {
        display: none;
    }
    
    .option {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .option-number {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .header {
        padding: var(--spacing-sm);
    }
    
    .question-title {
        font-size: 1.125rem;
    }
    
    .option {
        font-size: 0.9375rem;
    }
}

/* ----------------------------------------
   UTILITÁRIOS
   ---------------------------------------- */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

/* Scrollbar customizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-secondary), var(--color-accent));
}

/* Seleção de texto */
::selection {
    background: rgba(108, 99, 255, 0.4);
    color: var(--text-primary);
}
