/* =========================================================================
   FÊNIX GRAND TOUR — PREMIUM STYLE ARCHITECTURE (estilo.css)
   ========================================================================= */
body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 650px;
    width: 90%;
    background: #0a0a0a;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #1c1c1e;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

/* Identidade Visual & Tipografia */
.brand-header {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: #8e8e93;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-subtitle {
    color: #aeaeb2;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.manifesto-box {
    background: #121214;
    border: 1px solid #1c1c1e;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.manifesto-box h3 {
    margin-top: 0;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.manifesto-box p {
    color: #8e8e93;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Elementos de Formulário Avançados */
label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #aeaeb2;
    margin-bottom: 8px;
    margin-top: 20px;
}

input[type="text"], input[type="email"], select, textarea {
    width: 100%;
    padding: 14px;
    background: #121214;
    border: 1px solid #242426;
    color: #ffffff;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #48484a;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row > div {
    flex: 1;
}

/* Grids de Checkboxes (Estilo Clean) */
.checkbox-group, .checkbox-grid, .checkbox-grid-small {
    background: #121214;
    border: 1px solid #242426;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-grid-small {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-grid label, .checkbox-group label, .checkbox-grid-small label {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.95rem;
}

input[type="checkbox"] {
    accent-color: #ffffff;
    width: 16px;
    height: 16px;
}

.scroll-categories {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
}

.scroll-categories h4 {
    margin: 20px 0 10px 0;
    font-size: 0.9rem;
    color: #8e8e93;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Componentes de Navegação & Botões */
.progress-container {
    background: #1c1c1e;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-bar {
    background: #ffffff;
    height: 100%;
    transition: width 0.3s ease;
}

.step-indicator {
    font-size: 0.8rem;
    color: #8e8e93;
    margin-bottom: 25px;
}

.button-group, .button-group-nav {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s, background-color 0.2s;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    flex: 2;
}

.btn-secondary {
    background: #1c1c1e;
    color: #ffffff;
    border: 1px solid #242426;
    flex: 1;
}

.btn:hover { opacity: 0.9; }

/* Dashboard/Resultado VIP */
.badge-tier {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 15px;
}

.curated-section {
    margin-top: 30px;
    border-top: 1px solid #1c1c1e;
    padding-top: 20px;
}

.card-missao {
    background: #121214;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #1c1c1e;
    border-left: 3px solid #ffffff;
}

.premium-note {
    font-size: 0.85rem;
    color: #8e8e93;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hidden { display: none !important; }