:root {
    --ouro: #c9a84c;
    --ouro-escuro: #8B6914;
    --vinho: #6b1f2a;
    --azul-noite: #0d1b2e;
    --azul-medio: #1a2f4a;
    --creme: #f5f0e8;
    --branco: #fdfbf7;
    --texto: #1a1208;
    --texto-suave: #5a4a2a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--azul-noite);
    color: var(--creme);
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* Stars background */
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
      radial-gradient(1px 1px at 10% 20%, rgba(201,168,76,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.2) 0%, transparent 100%),
      radial-gradient(1px 1px at 60% 10%, rgba(201,168,76,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 80% 80%, rgba(255,255,255,0.15) 0%, transparent 100%),
      radial-gradient(1px 1px at 50% 40%, rgba(201,168,76,0.25) 0%, transparent 100%),
      radial-gradient(2px 2px at 20% 90%, rgba(201,168,76,0.2) 0%, transparent 100%),
      radial-gradient(1px 1px at 90% 30%, rgba(255,255,255,0.2) 0%, transparent 100%),
      radial-gradient(1px 1px at 70% 50%, rgba(201,168,76,0.15) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
  }

  .container {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* HERO */
  .hero {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
  }

  .hero-cross {
    font-size: 28px;
    color: var(--ouro);
    margin-bottom: 20px;
    display: block;
    letter-spacing: 8px;
    opacity: 0.8;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 8vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--branco);
    letter-spacing: -1px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--ouro);
  }

  .hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ouro), transparent);
    margin: 24px auto;
  }

  .hero-sub {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201,168,76,0.7);
  }

  .hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: rgba(245,240,232,0.75);
    max-width: 560px;
    margin: 20px auto 0;
    line-height: 1.7;
  }

  /* SCREENS */
  .screen { display: none; }
  .screen.active { display: block; }

  /* PROGRESS */
  .progress-bar {
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    height: 3px;
    margin: 0 auto 40px;
    max-width: 500px;
    overflow: hidden;
  }
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ouro-escuro), var(--ouro));
    border-radius: 100px;
    transition: width 0.6s cubic-bezier(.4,0,.2,1);
  }

  .eixo-label {
    text-align: center;
    margin-bottom: 32px;
  }
  .eixo-numero {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 1px solid var(--ouro);
    border-radius: 50%;
    line-height: 34px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ouro);
    margin-bottom: 10px;
  }
  .eixo-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--ouro);
    display: block;
  }

  /* QUESTION CARD */
  .question-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 36px 40px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeUp 0.5s ease forwards;
  }

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

  .q-number {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ouro);
    opacity: 0.6;
    margin-bottom: 14px;
  }

  .q-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--branco);
    margin-bottom: 24px;
  }

  .q-textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 10px;
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--creme);
    resize: vertical;
    min-height: 100px;
    outline: none;
    transition: border-color 0.3s;
    line-height: 1.6;
  }
  .q-textarea:focus { border-color: var(--ouro); }
  .q-textarea::placeholder { color: rgba(245,240,232,0.3); }

  /* Bifurcação */
  .bifurcacao {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .bifurcacao-btn {
    flex: 1;
    min-width: 160px;
    padding: 18px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 12px;
    color: var(--creme);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
  }
  .bifurcacao-btn:hover, .bifurcacao-btn.selected {
    background: rgba(201,168,76,0.15);
    border-color: var(--ouro);
    color: var(--ouro);
  }

  /* SCALE */
  .scale-options {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    margin-top: 16px;
  }
  .scale-btn {
    flex: 1;
    padding: 14px 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 10px;
    color: rgba(245,240,232,0.6);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s;
  }
  .scale-btn:hover, .scale-btn.selected {
    background: rgba(201,168,76,0.2);
    border-color: var(--ouro);
    color: var(--ouro);
  }
  .scale-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 10px;
    color: rgba(245,240,232,0.35);
    letter-spacing: 1px;
  }

  /* BUTTONS */
  .btn-primary {
    display: block;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--ouro-escuro), var(--ouro));
    color: var(--azul-noite);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.3);
  }
  .btn-secondary {
    display: block;
    width: 100%;
    padding: 14px 32px;
    background: transparent;
    color: rgba(201,168,76,0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 12px;
  }
  .btn-secondary:hover { border-color: var(--ouro); color: var(--ouro); }

  /* TERMO */
  .termo-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 32px 36px;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245,240,232,0.8);
  }
  .termo-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--ouro);
    margin-bottom: 16px;
    letter-spacing: 1px;
  }
  .termo-check {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    cursor: pointer;
  }
  .termo-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--ouro);
    cursor: pointer;
  }
  .termo-check span {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(245,240,232,0.7);
  }

  /* RESULTADO */
  .perfil-badge {
    text-align: center;
    padding: 48px 20px;
  }
  .perfil-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  .perfil-nome {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    font-style: italic;
    color: var(--ouro);
    margin-bottom: 8px;
  }
  .perfil-subtitulo {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(201,168,76,0.5);
    margin-bottom: 32px;
  }
  .perfil-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,240,232,0.85);
    max-width: 560px;
    margin: 0 auto 40px;
  }

  .eixos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
  }
  .eixo-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
  }
  .eixo-card-titulo {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ouro);
    margin-bottom: 12px;
  }
  .eixo-score-bar {
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    height: 6px;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .eixo-score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ouro-escuro), var(--ouro));
    border-radius: 100px;
    transition: width 1s cubic-bezier(.4,0,.2,1) 0.5s;
  }
  .eixo-score-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--ouro);
  }

  .proximos-passos {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 32px 36px;
    margin: 24px 0;
    text-align: left;
  }
  .proximos-passos h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--ouro);
    margin-bottom: 20px;
  }
  .passo {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    align-items: flex-start;
  }
  .passo-num {
    width: 28px;
    height: 28px;
    border: 1px solid var(--ouro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--ouro);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .passo-texto {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(245,240,232,0.85);
  }

  .rodape-editorial {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(201,168,76,0.15);
    margin-top: 40px;
  }
  .rodape-editorial p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(201,168,76,0.4);
    line-height: 2;
  }

  .section-gap { padding: 0 0 40px; }

  @media (max-width: 600px) {
    .question-card { padding: 24px 20px; }
    .eixos-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 38px; }
    .bifurcacao { flex-direction: column; }
  }

  @media print {
    body { background: white !important; color: black !important; }
    .screen { display: none !important; }
    #screen-6 { display: block !important; }
    .btn-primary, .btn-secondary { display: none !important; }
    .perfil-badge, .eixos-grid, .proximos-passos { display: block !important; }
  }