/* profile.css — test "Descubre tu perfil / Discover Your Rider Profile".
   Oscuro + acento lima (#D4FF3D). Opciones táctiles grandes (>=48px),
   barra de progreso, slide animado entre preguntas y tarjetas de resultado. */

/* --- barra de progreso --- */
.pq-progress-row { display: flex; align-items: center; gap: 14px; margin-bottom: clamp(28px, 4vw, 44px); }
.pq-progress { flex: 1; height: 6px; border-radius: 999px; background: rgba(242,243,240,0.1); overflow: hidden; }
.pq-progress-fill { height: 100%; border-radius: 999px; background: #D4FF3D;
                    transition: width .45s cubic-bezier(.2,.8,.2,1); }
.pq-step { font-size: 13px; color: #6E727A; white-space: nowrap; letter-spacing: 0.02em; }

/* --- slide entre preguntas --- */
@keyframes pqFwd  { from { opacity: 0; transform: translateX(46px); }  to { opacity: 1; transform: none; } }
@keyframes pqBack { from { opacity: 0; transform: translateX(-46px); } to { opacity: 1; transform: none; } }
.pq-anim-fwd  { animation: pqFwd  .4s cubic-bezier(.2,.8,.2,1) both; }
.pq-anim-back { animation: pqBack .4s cubic-bezier(.2,.8,.2,1) both; }

/* --- pregunta + opciones --- */
.pq-question { margin: 0 0 clamp(22px, 3.5vw, 34px); font-family: 'Space Grotesk', ui-sans-serif, sans-serif;
               font-weight: 600; letter-spacing: -0.04em; line-height: 1.05;
               font-size: clamp(24px, 4vw, 40px); color: #F2F3F0; }
.pq-options { display: grid; gap: 12px; }
.pq-option { display: flex; align-items: center; gap: 16px; width: 100%; min-height: 64px;
             padding: 16px 18px; border-radius: 14px; cursor: pointer; text-align: left;
             background: rgba(11,11,12,0.7); border: 1px solid rgba(242,243,240,0.12);
             font-family: inherit; color: #F2F3F0;
             transition: border-color .2s ease, background .2s ease, transform .2s ease; }
@media (hover:hover) { .pq-option:hover { border-color: #D4FF3D; transform: translateY(-2px); } }
.pq-option:active { transform: scale(0.99); }
.pq-option.picked { border-color: #D4FF3D; background: rgba(212,255,61,0.08); }
.pq-icon { font-size: 26px; line-height: 1; flex: 0 0 auto; }
.pq-texts { display: flex; flex-direction: column; gap: 3px; }
.pq-label { font-size: 16px; font-weight: 600; line-height: 1.3; }
.pq-sub { font-size: 13px; color: #6E727A; line-height: 1.4; }

/* --- volver / loading --- */
.pq-back { margin-top: 22px; background: transparent; border: none; cursor: pointer; padding: 12px 0;
           font-family: inherit; font-size: 14px; color: #6E727A; transition: color .25s ease; }
.pq-back:hover { color: #D4FF3D; }
.pq-loading { padding: clamp(48px, 8vw, 100px) 0; text-align: center; color: #6E727A; font-size: 16px; }

/* =========================== resultados =========================== */

/* --- bloque de perfil --- */
.pr-profile { text-align: center; padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 48px);
              border-radius: 16px; background: rgba(212,255,61,0.05);
              border: 1px solid rgba(212,255,61,0.2); margin-bottom: clamp(24px, 4vw, 40px); }
.pr-kicker { font-size: 13px; letter-spacing: 0.04em; color: #6E727A; margin-bottom: 14px; }
.pr-emoji { font-size: clamp(44px, 7vw, 64px); line-height: 1; margin-bottom: 14px; }
.pr-name { margin: 0 0 12px; font-family: 'Space Grotesk', ui-sans-serif, sans-serif; font-weight: 600;
           letter-spacing: -0.04em; line-height: 1; font-size: clamp(28px, 5vw, 48px); color: #D4FF3D; }
.pr-desc { margin: 0 auto; max-width: 52ch; font-size: clamp(14px, 1.8vw, 16px); color: #A9ADB4; line-height: 1.6; }

.pr-note { margin: 0 0 20px; font-size: 13px; color: #FF9900; text-align: center; }
.pr-kicker2 { font-size: 13px; letter-spacing: 0.04em; color: #D4FF3D; margin: clamp(24px,4vw,40px) 0 16px; }
.pr-also { font-size: 14px; color: #6E727A; margin: clamp(24px, 4vw, 36px) 0 14px; }

/* --- tarjeta recomendada --- */
.pr-card { display: grid; grid-template-columns: minmax(180px, 280px) 1fr; gap: clamp(18px, 3vw, 32px);
           padding: clamp(18px, 3vw, 32px); border-radius: 16px;
           background: rgba(11,11,12,0.7); border: 1px solid rgba(212,255,61,0.25); }
.pr-card.secondary { border-color: rgba(242,243,240,0.14); }
.pr-img { align-self: start; aspect-ratio: 1; border-radius: 12px; overflow: hidden;
          background: rgba(242,243,240,0.04); border: 1px solid rgba(242,243,240,0.1); }
.pr-img img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 10px; box-sizing: border-box; }
.pr-body { min-width: 0; }
.pr-brand { font-size: 12px; color: #6E727A; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.pr-title { font-family: 'Space Grotesk', ui-sans-serif, sans-serif; font-weight: 600; letter-spacing: -0.03em;
            font-size: clamp(19px, 2.6vw, 26px); color: #F2F3F0; line-height: 1.15; margin-bottom: 10px; }
.pr-editorial { margin: 0 0 12px; font-size: 14px; color: #A9ADB4; line-height: 1.6; }
.pr-rating { font-size: 14px; color: #D4FF3D; margin-bottom: 14px; }

.pr-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.pr-pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px;
           font-size: 13px; color: #F2F3F0; background: rgba(242,243,240,0.06);
           border: 1px solid rgba(242,243,240,0.12); white-space: nowrap; }

/* --- barra de compatibilidad --- */
.pr-score { margin-bottom: 20px; }
.pr-score-track { height: 8px; border-radius: 999px; background: rgba(242,243,240,0.1); overflow: hidden; margin-bottom: 8px; }
.pr-score-fill { height: 100%; border-radius: 999px; background: #D4FF3D; transition: width .8s cubic-bezier(.2,.8,.2,1); }
.pr-score-label { font-size: 13px; color: #D4FF3D; font-weight: 600; }

/* --- botones --- */
.pr-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.pr-buy { display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
          padding: 12px 22px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 15px;
          background: #FF9900; color: #0B0B0C; transition: background .25s ease, color .25s ease; }
.pr-buy:hover { background: #0B0B0C; color: #FF9900; box-shadow: inset 0 0 0 1px #FF9900; }
.pr-sheet { display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
            padding: 12px 22px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 15px;
            background: #333333; color: #F2F3F0; transition: background .25s ease; }
.pr-sheet:hover { background: #444444; }

/* --- repetir --- */
.pr-retry-row { text-align: center; margin-top: clamp(28px, 5vw, 48px); }
.pr-retry { display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
            padding: 13px 26px; border-radius: 999px; cursor: pointer; font-family: inherit;
            font-size: 15px; font-weight: 600; background: transparent; color: #D4FF3D;
            border: 1px solid rgba(212,255,61,0.45); transition: background .25s ease, color .25s ease; }
.pr-retry:hover { background: #D4FF3D; color: #0B0B0C; }

/* --- mobile --- */
@media (max-width: 640px) {
  .pr-card { grid-template-columns: 1fr; }
  .pr-img { max-width: 260px; margin: 0 auto; width: 100%; }
  .pr-buttons a { flex: 1 1 100%; }
}
