/* ============================================================
   Mentor Neuwiem — CSS Customizado (sobre Sneat / Bootstrap 5)
   Identidade "Amanhecer Quente / Anoitecer"
   Fatia 1 (fundação) + 1.1 (correção roxo) + 3 (dashboard)
   ============================================================ */

/* ============================================================
   1. PALETA — TEMA CLARO (Amanhecer)
   ============================================================ */
:root {
  --mentor-coral:        #E8A07A;
  --mentor-coral-deep:   #D9824F;
  --mentor-amber:        #D98E5A;
  --mentor-teal:         #3E5C5A;
  --mentor-teal-soft:    #587A78;

  --mentor-surface:      #FFFDFB;
  --mentor-surface-soft: #FEF6EC;
  --mentor-text:         #44403A;
  --mentor-text-soft:    #6E665E;
  --mentor-text-muted:   #8C8279;
  --mentor-line:         #EFE3D6;

  --mentor-primary:        var(--mentor-coral-deep);
  --mentor-primary-light:  #FCEDE2;
  --mentor-accent:         var(--mentor-amber);
  --mentor-success:        #7FB069;
  --mentor-danger:         #D9744E;

  --mentor-card-shadow:       0 12px 30px -20px rgba(120, 78, 46, .40);
  --mentor-card-hover-shadow: 0 18px 40px -22px rgba(120, 78, 46, .50);
  --mentor-radius:    16px;
  --mentor-radius-sm: 11px;

  /* ---- Overrides Bootstrap/Sneat (claro) ---- */
  --bs-body-font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bs-primary:     #D9824F;
  --bs-primary-rgb: 217, 130, 79;
  --bs-body-bg:     #FBF4EC;
  --bs-body-color:  #44403A;
  --bs-body-color-rgb: 68, 64, 58;
  --bs-border-color: #EFE3D6;

  /* ---- 1.1: paleta "suave" do Sneat (matava o roxo residual) ---- */
  --bs-primary-bg-subtle:     #FCEDE2;
  --bs-primary-border-subtle: #F3DEC8;
  --bs-primary-text-emphasis: #B5683C;
  --bs-menu-active-bg:    #FCEDE2;
  --bs-menu-active-color: #B5683C;
}

body { background-color: var(--bs-body-bg); }

.app-brand-text > span:first-child,
.mentor-display { font-family: 'Fraunces', Georgia, serif; }

/* ============================================================
   2. PALETA — TEMA ESCURO (Anoitecer)
   ============================================================ */
[data-bs-theme="dark"] {
  --mentor-surface:      #2B231C;
  --mentor-surface-soft: #332A22;
  --mentor-text:         #F1E8DC;
  --mentor-text-soft:    #CDBFB0;
  --mentor-text-muted:   #A89A8B;
  --mentor-line:         #3C3128;

  --mentor-coral:        #ECA985;
  --mentor-coral-deep:   #E8A07A;
  --mentor-primary:      #E8A07A;
  --mentor-primary-light:#3A2C22;

  --mentor-card-shadow:       0 16px 34px -22px rgba(0, 0, 0, .60);
  --mentor-card-hover-shadow: 0 22px 44px -22px rgba(0, 0, 0, .55);

  --bs-primary:        #E8A07A;
  --bs-primary-rgb:    232, 160, 122;
  --bs-body-bg:        #1F1813;
  --bs-body-bg-rgb:    31, 24, 19;
  --bs-body-color:     #F1E8DC;
  --bs-body-color-rgb: 241, 232, 220;
  --bs-border-color:   #3C3128;

  --bs-primary-bg-subtle:     #3A2C22;
  --bs-primary-border-subtle: #4A382C;
  --bs-primary-text-emphasis: #ECA985;
  --bs-menu-active-bg:    #3A2C22;
  --bs-menu-active-color: #ECA985;
}

[data-bs-theme="dark"] body,
[data-bs-theme="dark"] .layout-page,
[data-bs-theme="dark"] .content-wrapper { background-color: #1F1813 !important; }

[data-bs-theme="dark"] .bg-menu-theme,
[data-bs-theme="dark"] .menu,
[data-bs-theme="dark"] .bg-navbar-theme { background-color: #271F18 !important; }

[data-bs-theme="dark"] .card { background-color: var(--mentor-surface); }

/* Dark mode — test hero header */
[data-bs-theme="dark"] .mentor-test-hero { background: linear-gradient(135deg, var(--mentor-surface) 0%, #2A2018 100%); border-color: var(--mentor-line); }
[data-bs-theme="dark"] .mentor-test-hero-icon { background: rgba(232, 160, 122, 0.15); }
[data-bs-theme="dark"] .mentor-meta-badge { background: rgba(232, 160, 122, 0.1); border-color: rgba(232, 160, 122, 0.15); color: var(--mentor-coral); }

/* ============================================================
   3. DASHBOARD — componentes (espelham o protótipo)
   ============================================================ */

/* ---- Hero / aurora ---- */
.mentor-hero {
  position: relative; overflow: hidden; border-radius: 24px;
  padding: 34px 36px; border: 1px solid var(--mentor-line);
  box-shadow: var(--mentor-card-shadow);
  background:
    radial-gradient(120% 140% at 88% -25%, rgba(232,160,122,.55), rgba(232,160,122,0) 55%),
    radial-gradient(110% 120% at 102% 0%, rgba(217,142,90,.40), rgba(217,142,90,0) 50%),
    linear-gradient(120deg, #FEF6EC 0%, #FBEFE2 60%, #F7E6D6 100%);
}
[data-bs-theme="dark"] .mentor-hero {
  border-color: #42332f;
  background:
    radial-gradient(120% 150% at 86% -25%, rgba(236,169,133,.45), rgba(236,169,133,0) 52%),
    radial-gradient(120% 130% at 105% 5%, rgba(150,90,120,.40), rgba(150,90,120,0) 55%),
    linear-gradient(125deg, #3A2A3A 0%, #3B2A28 55%, #2C2220 100%);
}
.mentor-hero .mentor-sun {
  position: absolute; right: -30px; top: -55px; width: 230px; height: 230px;
  border-radius: 50%; pointer-events: none; filter: blur(1px);
  background: radial-gradient(circle, rgba(255,223,170,.95), rgba(232,160,122,.25) 60%, transparent 72%);
}
[data-bs-theme="dark"] .mentor-hero .mentor-sun {
  background: radial-gradient(circle, rgba(255,210,150,.55), rgba(236,150,110,.18) 58%, transparent 72%);
}
.mentor-hero h1 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 1.95rem;
  line-height: 1.12; letter-spacing: -.5px; margin-bottom: 8px; max-width: 560px; color: var(--mentor-text);
}
.mentor-hero p { font-size: 1.02rem; color: var(--mentor-teal-soft); font-weight: 600; max-width: 520px; margin-bottom: 20px; }
[data-bs-theme="dark"] .mentor-hero p { color: #D9C3B0; }
.mentor-wave { display: inline-block; animation: mentor-wave 2.4s ease-in-out infinite; transform-origin: 70% 70%; }
@keyframes mentor-wave { 0%,60%,100%{transform:rotate(0)} 10%{transform:rotate(14deg)} 25%{transform:rotate(-8deg)} 40%{transform:rotate(10deg)} }
.mentor-ghost-btn {
  display: inline-flex; align-items: center; gap: 8px; background: var(--mentor-surface);
  border: 1px solid var(--mentor-line); color: var(--mentor-text); font-weight: 700; font-size: .9rem;
  padding: 10px 18px; border-radius: 12px; cursor: pointer; transition: border-color .2s;
}
.mentor-ghost-btn:hover { border-color: var(--mentor-coral); color: var(--mentor-text); }

/* ---- "Comece por aqui" ---- */
.mentor-step-row { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 15px; transition: background .2s; }
.mentor-step-row:hover { background: rgba(232,160,122,.09); }
.mentor-step-ic {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(232,160,122,.28), rgba(217,142,90,.2));
  color: var(--mentor-coral-deep); font-size: 1.35rem;
}
.mentor-step-tx { flex: 1; min-width: 0; }
.mentor-step-tx .t { font-weight: 700; font-size: .98rem; color: var(--mentor-text); }
.mentor-step-tx .m { font-size: .83rem; color: var(--mentor-text-muted); }
.mentor-tag { font-size: .7rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; background: rgba(127,176,105,.16); color: #5C7A45; }
[data-bs-theme="dark"] .mentor-tag { color: #A7CB8F; }
.mentor-cta {
  background: linear-gradient(120deg, var(--mentor-coral), var(--mentor-amber)); color: #fff; border: none;
  font-weight: 700; font-size: .86rem; padding: 9px 16px; border-radius: 11px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  box-shadow: 0 10px 18px -11px rgba(217,142,90,.9); transition: transform .18s, filter .2s;
}
.mentor-cta:hover { transform: translateY(-2px); filter: brightness(1.03); color: #fff; }

/* ---- 3 passos ---- */
.mentor-mini-card { background: var(--mentor-surface-soft); border: 1px solid var(--mentor-line); border-radius: 16px; padding: 18px; height: 100%; }
.mentor-mini-card .num { font-family: 'Fraunces', Georgia, serif; font-size: 1.5rem; font-weight: 600; color: var(--mentor-coral-deep); line-height: 1; }
.mentor-mini-card .mt { font-weight: 700; font-size: .92rem; margin: 8px 0 4px; color: var(--mentor-text); }
.mentor-mini-card .mm { font-size: .8rem; color: var(--mentor-text-muted); line-height: 1.45; }

/* ---- Prévia da Roda ---- */
.mentor-wheel-card { display: flex; gap: 26px; align-items: center; }
.mentor-wheel-tx h4 { font-family: 'Fraunces', Georgia, serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; color: var(--mentor-text); }
.mentor-wheel-tx p { font-size: .88rem; color: var(--mentor-text-muted); line-height: 1.55; margin: 0; }
.mentor-prev-tag { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--mentor-teal); display: block; margin-bottom: 8px; }
[data-bs-theme="dark"] .mentor-wheel-tx .mentor-prev-tag { color: var(--mentor-teal-soft); }

/* ---- Coluna direita: ação rápida ---- */
.mentor-rail-h { font-family: 'Fraunces', Georgia, serif; font-size: 1.15rem; font-weight: 600; margin: 2px 2px 14px; color: var(--mentor-text); }
.mentor-qa { border-radius: 20px; padding: 22px; color: #fff; position: relative; overflow: hidden; box-shadow: var(--mentor-card-shadow); text-decoration: none; display: block; }
.mentor-qa:hover { color: #fff; }
.mentor-qa h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 3px; }
.mentor-qa span { font-size: .84rem; opacity: .92; font-weight: 600; }
.mentor-qa.coral { background: linear-gradient(135deg, #E8A07A, #D9824F); }
.mentor-qa.teal  { background: linear-gradient(135deg, #4F7370, #3E5C5A); }
.mentor-qa.warm  { background: linear-gradient(135deg, #E7B27C, #D98E5A); }
.mentor-qa .blob { position: absolute; right: 14px; bottom: -14px; width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; font-size: 2.1rem; color: #fff; }
.mentor-qa .go { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; background: rgba(255,255,255,.22); padding: 7px 14px; border-radius: 10px; font-weight: 700; font-size: .83rem; }

/* ---- Próximas avaliações ---- */
.mentor-up-row { display: flex; align-items: center; gap: 13px; padding: 13px 4px; border-bottom: 1px solid var(--mentor-line); }
.mentor-up-row:last-child { border-bottom: none; }
.mentor-up-ic { width: 38px; height: 38px; border-radius: 11px; background: rgba(62,92,90,.12); display: grid; place-items: center; flex-shrink: 0; color: var(--mentor-teal); font-size: 1.15rem; }
[data-bs-theme="dark"] .mentor-up-ic { background: rgba(134,176,172,.15); color: var(--mentor-teal-soft); }
.mentor-up-tx { flex: 1; min-width: 0; }
.mentor-up-tx .t { font-weight: 700; font-size: .92rem; color: var(--mentor-text); }
.mentor-up-tx .m { font-size: .78rem; color: var(--mentor-text-muted); }
.mentor-soon-tag { font-size: .68rem; font-weight: 800; padding: 3px 9px; border-radius: 999px; background: rgba(140,130,121,.16); color: var(--mentor-text-muted); text-decoration: none; white-space: nowrap; }
.mentor-soon-tag--iniciar { background: var(--mentor-coral); color: #fff; }
.mentor-soon-tag--iniciar:hover { background: var(--mentor-coral-deep); color: #fff; }
.mentor-soon-tag--refazer { background: rgba(62,92,90,.14); color: var(--mentor-teal); }
.mentor-soon-tag--refazer:hover { background: rgba(62,92,90,.25); color: var(--mentor-teal); }
.mentor-soon-tag--embreve { background: rgba(232,160,122,.18); color: var(--mentor-coral-deep); cursor: default; letter-spacing: .02em; }
[data-bs-theme="dark"] .mentor-soon-tag--embreve { background: rgba(217,130,79,.2); color: var(--mentor-amber-light); }
/* Linha "em breve" — ícone e texto levemente esmaecidos */
.mentor-up-row--embreve { opacity: .82; }
.mentor-up-ic--embreve { background: rgba(217,130,79,.13); color: var(--mentor-coral); }
[data-bs-theme="dark"] .mentor-up-ic--embreve { background: rgba(217,130,79,.18); color: var(--mentor-amber-light); }
/* Intro "Novidades chegando" */
.mentor-embreve-intro { font-size: .78rem; color: var(--mentor-text-muted); margin-bottom: .5rem; font-style: italic; }

/* ============================================================
   4. COMPONENTES EXISTENTES (re-skin — testes / resultado)
   ============================================================ */
.mentor-test-card { border: 1px solid var(--mentor-line); border-radius: var(--mentor-radius); box-shadow: var(--mentor-card-shadow); transition: transform .22s ease, box-shadow .22s ease; overflow: hidden; background: var(--mentor-surface); }
.mentor-test-card:hover { transform: translateY(-4px); box-shadow: var(--mentor-card-hover-shadow); }
.mentor-test-card .card-header-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 1rem; }
.mentor-test-card .badge-gratuito { background: rgba(127,176,105,.16); color: var(--mentor-success); font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.mentor-test-card .badge-pago { background: rgba(217,142,90,.16); color: var(--mentor-coral-deep); font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.mentor-test-card .tempo-estimado { font-size: .8rem; color: var(--mentor-text-muted); }

.mentor-roda-wrapper { background: var(--mentor-surface); border: 1px solid var(--mentor-line); border-radius: var(--mentor-radius); box-shadow: var(--mentor-card-shadow); padding: 2rem; }
.mentor-quadrante-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mentor-text-muted); margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--mentor-line); }
.mentor-slider-item { margin-bottom: 1.1rem; }
.mentor-slider-item label { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; font-weight: 600; color: var(--mentor-text-soft); margin-bottom: .3rem; }
.mentor-slider-item label .valor-badge { background: var(--mentor-primary-light); color: var(--mentor-coral-deep); font-weight: 700; font-size: .8rem; padding: 2px 8px; border-radius: 20px; min-width: 32px; text-align: center; transition: background .2s, color .2s; }
.mentor-slider-item label .valor-badge.alto { background: rgba(127,176,105,.18); color: var(--mentor-success); }
.mentor-slider-item label .valor-badge.baixo { background: rgba(217,116,78,.16); color: var(--mentor-danger); }
.mentor-slider-item input[type="range"] { width: 100%; height: 6px; border-radius: 3px; accent-color: var(--mentor-coral-deep); cursor: pointer; }

.mentor-roda-svg-container { position: sticky; top: 80px; background: var(--mentor-surface); border: 1px solid var(--mentor-line); border-radius: var(--mentor-radius); box-shadow: var(--mentor-card-shadow); padding: 1.5rem; text-align: center; }
.mentor-roda-svg-container h6 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--mentor-text-muted); margin-bottom: 1rem; font-weight: 700; }
#rodaSvg { width: 100%; max-width: 380px; height: auto; }

.mentor-btn-diagnostico { background: linear-gradient(120deg, var(--mentor-coral), var(--mentor-amber)); color: #fff; border: none; border-radius: var(--mentor-radius-sm); padding: .85rem 2rem; font-size: 1rem; font-weight: 700; width: 100%; margin-top: 1.5rem; cursor: pointer; transition: filter .2s, transform .15s; letter-spacing: .02em; box-shadow: 0 12px 22px -12px rgba(217,142,90,.85); }
.mentor-btn-diagnostico:hover:not(:disabled) { filter: brightness(1.03); transform: translateY(-2px); }
.mentor-btn-diagnostico:disabled { background: #E7D3C2; color: #fff; cursor: not-allowed; transform: none; box-shadow: none; }
.mentor-btn-diagnostico .spinner-border { width: 1.1rem; height: 1.1rem; border-width: 2px; }

.mentor-progresso { font-size: .8rem; color: var(--mentor-text-muted); text-align: center; margin-top: .5rem; }
.mentor-progresso span { color: var(--mentor-coral-deep); font-weight: 700; }

.mentor-resultado-header { background: linear-gradient(135deg, var(--mentor-coral) 0%, var(--mentor-amber) 100%); border-radius: var(--mentor-radius); color: #fff; padding: 2.5rem 2rem; margin-bottom: 2rem; box-shadow: 0 18px 40px -20px rgba(217,142,90,.55); }
.mentor-resultado-header h2 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; margin-bottom: .25rem; }
.mentor-resultado-header p { opacity: .9; margin: 0; }

/* Breadcrumb dos resultados */
.mentor-resultado-breadcrumb { margin-bottom: 1rem; }
.mentor-resultado-breadcrumb .breadcrumb { background: none; padding: 0; margin: 0; font-size: 0.85rem; }
.mentor-resultado-breadcrumb .breadcrumb-item a { color: var(--mentor-coral-deep); text-decoration: none; font-weight: 600; transition: color .2s; }
.mentor-resultado-breadcrumb .breadcrumb-item a:hover { color: var(--mentor-teal); text-decoration: underline; }
.mentor-resultado-breadcrumb .breadcrumb-item.active { color: var(--mentor-text-muted); font-weight: 500; }
.mentor-resultado-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--mentor-text-muted); }

.mentor-bloco-resultado { background: var(--mentor-surface); border: 1px solid var(--mentor-line); border-radius: var(--mentor-radius); box-shadow: var(--mentor-card-shadow); padding: 1.75rem; margin-bottom: 1.5rem; }
.mentor-bloco-resultado .bloco-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; }
.mentor-bloco-resultado h5 { font-weight: 700; font-size: 1rem; margin-bottom: 1rem; color: var(--mentor-text); }
.mentor-bloco-resultado .item-lista { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .75rem; font-size: .9rem; color: var(--mentor-text-soft); line-height: 1.5; }
.mentor-bloco-resultado .item-lista .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.bloco-pontos-fortes .bloco-icon { background: rgba(127,176,105,.18); } .bloco-pontos-fortes .dot { background: var(--mentor-success); }
.bloco-atencao .bloco-icon { background: rgba(217,116,78,.16); } .bloco-atencao .dot { background: var(--mentor-danger); }
.bloco-insights .bloco-icon { background: rgba(217,142,90,.18); } .bloco-insights .dot { background: var(--mentor-amber); }
.bloco-sugestoes .bloco-icon { background: rgba(62,92,90,.14); } .bloco-sugestoes .dot { background: var(--mentor-teal); }

.mentor-roda-resumo { background: var(--mentor-surface); border: 1px solid var(--mentor-line); border-radius: var(--mentor-radius); box-shadow: var(--mentor-card-shadow); padding: 1.5rem; text-align: center; margin-bottom: 1.5rem; }

.mentor-loading-overlay { position: fixed; inset: 0; background: rgba(251,244,236,.88); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 9999; backdrop-filter: blur(4px); }
[data-bs-theme="dark"] .mentor-loading-overlay { background: rgba(31,24,19,.88); }
.mentor-loading-overlay .loading-spinner { width: 56px; height: 56px; border: 4px solid var(--mentor-primary-light); border-top-color: var(--mentor-coral-deep); border-radius: 50%; animation: mentor-spin .8s linear infinite; }
.mentor-loading-overlay p { margin-top: 1rem; color: var(--mentor-coral-deep); font-weight: 700; font-size: .95rem; }
@keyframes mentor-spin { to { transform: rotate(360deg); } }

#mentorThemeToggle { cursor: pointer; }
#mentorThemeToggle i { color: var(--mentor-coral-deep); }

/* ============================================================
   4b. HEADER HERO PADRONIZADO — Topo dos testes (Wireframe B)
   ============================================================ */
.mentor-test-breadcrumb { margin-bottom: .75rem; }
.mentor-test-breadcrumb .breadcrumb { background: none; padding: 0; margin: 0; font-size: 0.82rem; }
.mentor-test-breadcrumb .breadcrumb-item a { color: var(--mentor-coral-deep); text-decoration: none; font-weight: 600; transition: color .2s; }
.mentor-test-breadcrumb .breadcrumb-item a:hover { color: var(--mentor-teal); text-decoration: underline; }
.mentor-test-breadcrumb .breadcrumb-item.active { color: var(--mentor-text-muted); font-weight: 500; }
.mentor-test-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--mentor-text-muted); }

.mentor-test-hero {
  text-align: center;
  background: linear-gradient(135deg, var(--mentor-surface-soft) 0%, #F5EDE3 100%);
  border: 1px solid var(--mentor-line);
  border-radius: var(--mentor-radius);
  padding: 2rem 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}
.mentor-test-hero-icon {
  font-size: 2.2rem;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 130, 79, 0.12);
  border-radius: 14px;
  margin-bottom: .75rem;
}
.mentor-test-hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  color: var(--mentor-teal);
  margin: 0 0 .5rem 0;
  line-height: 1.3;
}
.mentor-test-hero-desc {
  font-size: .9rem;
  color: var(--mentor-text-soft);
  margin: 0 auto .875rem;
  line-height: 1.6;
  max-width: 540px;
}
.mentor-test-hero-meta {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.mentor-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--mentor-teal);
  background: rgba(62, 92, 90, 0.07);
  border: 1px solid rgba(62, 92, 90, 0.1);
}

/* ============================================================
   5. Responsivo
   ============================================================ */
@media (max-width: 768px) {
  .mentor-roda-svg-container { position: static; margin-bottom: 1.5rem; }
  .mentor-roda-wrapper { padding: 1.25rem; }
  .mentor-resultado-header { padding: 1.75rem 1.25rem; }
  .mentor-hero { padding: 28px 22px; }
  .mentor-hero h1 { font-size: 1.55rem; }
  .mentor-wheel-card { flex-direction: column; text-align: center; }
  .mentor-test-hero { padding: 1.5rem 1rem 1.25rem; }
  .mentor-test-hero-title { font-size: 1.15rem; }
  .mentor-test-hero-desc { font-size: .84rem; }
  .mentor-meta-badge { font-size: .7rem; padding: 3px 9px; }
}

/* ---------- Logo sidebar — adaptação ao tema ---------- */
.mentor-logo-cutout {
  fill: var(--bs-menu-bg, #fff);
}
.mentor-logo-ray {
  stroke: #3E5C5A;
}
.mentor-logo-ray-dot {
  fill: #3E5C5A;
}
[data-bs-theme="dark"] .mentor-logo-cutout {
  fill: var(--bs-menu-bg, #232333);
}
[data-bs-theme="dark"] .mentor-logo-ray {
  stroke: #FBF4EC;
}
[data-bs-theme="dark"] .mentor-logo-ray-dot {
  fill: #FBF4EC;
}

/* Brand logo no menu recolhido — centralizar símbolo */
.layout-menu-collapsed:not(.layout-menu-hover) .app-brand-logo {
  margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════
   4c · Teste 05 — Roda da Inteligência Emocional
   ══════════════════════════════════════════════════════════ */

/* Wheel panel — sticky on desktop */
.ie-wheel-panel {
  background: var(--bs-body-bg, #fff);
  border: 1px solid var(--mentor-line, rgba(62,92,90,0.1));
  border-radius: var(--mentor-radius, 16px);
  padding: 1.5rem 1rem;
  position: sticky;
  top: 1rem;
}
@media (max-width: 991px) {
  .ie-wheel-panel { position: static; }
}

/* Domain card */
.ie-domain-card .card-header {
  background: transparent;
}

/* Competency row */
.ie-comp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.ie-comp-label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  min-width: 170px;
  flex-shrink: 0;
}
.ie-comp-label {
  font-size: 0.85rem;
  color: var(--mentor-teal);
}
.ie-info-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(62,92,90,0.07);
  border: 1px solid rgba(62,92,90,0.1);
  color: var(--bs-secondary-color);
  font-size: 0.6rem;
  font-weight: 700;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.ie-info-icon:hover { background: rgba(62,92,90,0.14); color: var(--mentor-teal); }

/* Tooltip */
.ie-info-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--mentor-teal);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 10px;
  line-height: 1.4;
  width: 240px;
  z-index: 20;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  display: none;
  animation: ieTooltipIn 0.15s ease;
}
.ie-info-tooltip::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 14px;
  width: 10px; height: 10px;
  background: var(--mentor-teal);
  transform: rotate(45deg);
  border-radius: 2px;
}
.ie-info-tooltip.show { display: block; }
@keyframes ieTooltipIn {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scale buttons */
.ie-scale-btns {
  display: flex;
  gap: 5px;
  margin-left: auto;
  flex-shrink: 0;
}
.ie-s-btn {
  width: 34px; height: 34px;
  border-radius: 9px;
  border: 2px solid rgba(62,92,90,0.13);
  background: var(--bs-body-bg, #fff);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bs-secondary-color);
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.ie-s-btn:hover {
  border-color: var(--mentor-coral);
  color: var(--mentor-coral);
  transform: scale(1.06);
}
.ie-s-btn.active {
  color: #fff !important;
  border-color: transparent !important;
  transform: scale(1.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Wheel tooltip */
.ie-wheel-tooltip {
  position: absolute;
  background: var(--mentor-teal);
  color: #fff;
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 8px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .ie-comp-row {
    flex-wrap: wrap;
    gap: 6px;
  }
  .ie-comp-label-wrap {
    min-width: auto;
    width: 100%;
  }
  .ie-scale-btns { margin-left: 0; }
  .ie-s-btn { width: 38px; height: 38px; }
}


/* ============================================================
   6. DASHBOARD — Cards de resumo rápido (hero)
   ============================================================ */
.mentor-stats-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.mentor-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--mentor-surface);
  border: 1px solid var(--mentor-line);
  border-radius: 14px;
  padding: 12px 18px;
  text-decoration: none;
  transition: border-color .2s, transform .15s, box-shadow .2s;
  min-width: 0;
}
.mentor-stat-card:hover {
  border-color: var(--mentor-coral);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -10px rgba(217, 130, 79, .25);
  text-decoration: none;
}
.mentor-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  background: linear-gradient(135deg, rgba(232,160,122,.22), rgba(217,142,90,.15));
  color: var(--mentor-coral-deep);
}
.mentor-stat-icon.teal {
  background: linear-gradient(135deg, rgba(62,92,90,.15), rgba(62,92,90,.08));
  color: var(--mentor-teal);
}
.mentor-stat-icon.muted {
  background: rgba(140,130,121,.12);
  color: var(--mentor-text-muted);
}
.mentor-stat-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.mentor-stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--mentor-text);
}
.mentor-stat-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mentor-text-muted);
  white-space: nowrap;
}

[data-bs-theme="dark"] .mentor-stat-card { background: var(--mentor-surface); }
[data-bs-theme="dark"] .mentor-stat-icon.teal { background: linear-gradient(135deg, rgba(134,176,172,.18), rgba(134,176,172,.08)); color: var(--mentor-teal-soft); }

@media (max-width: 768px) {
  .mentor-stats-row { gap: 8px; }
  .mentor-stat-card { flex: 1 1 calc(50% - 8px); padding: 10px 14px; }
  .mentor-stat-icon { width: 36px; height: 36px; font-size: 1.1rem; border-radius: 10px; }
  .mentor-stat-number { font-size: 1.2rem; }
  .mentor-stat-label { font-size: .72rem; }
}
@media (max-width: 420px) {
  .mentor-stat-card { flex: 1 1 100%; }
}


/* ============================================================
   7. LOGIN — Layout split (apresentação + formulário)
   ============================================================ */
.mentor-login-split {
  display: flex;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
  min-height: 620px;
  gap: 0;
}

/* ----- Lado esquerdo: showcase ----- */
.mentor-login-showcase {
  flex: 0 0 55%;
  background:
    radial-gradient(120% 140% at 15% 110%, rgba(232,160,122,.30), transparent 55%),
    radial-gradient(100% 100% at 85% -10%, rgba(217,142,90,.20), transparent 45%),
    linear-gradient(165deg, #FEF6EC 0%, #FBEFE2 50%, #F5E5D5 100%);
  border-radius: 24px 0 0 24px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mentor-login-showcase-inner { position: relative; z-index: 1; }

/* Dots decorativos */
.mentor-login-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, var(--mentor-coral) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: 16px 16px;
  opacity: .07;
}

.mentor-login-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.mentor-login-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}
.mentor-login-brand .brand-name { color: var(--mentor-coral-deep); font-weight: 400; }
.mentor-login-brand .brand-dot { color: var(--mentor-text-muted); font-weight: 300; }
.mentor-login-brand .brand-sub { color: var(--mentor-text-muted); font-weight: 300; font-size: 1rem; }

.mentor-login-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.85rem;
  line-height: 1.2;
  letter-spacing: -.4px;
  color: var(--mentor-teal);
  margin-bottom: 14px;
  max-width: 420px;
}
.mentor-login-sub {
  font-size: .95rem;
  color: var(--mentor-text-soft);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 400px;
}

/* Features/value props */
.mentor-login-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mentor-login-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.mentor-login-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  background: rgba(217, 130, 79, .12);
  color: var(--mentor-coral-deep);
}
.mentor-login-feature strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--mentor-text);
  margin-bottom: 2px;
}
.mentor-login-feature span {
  font-size: .82rem;
  color: var(--mentor-text-muted);
  line-height: 1.45;
}

/* ----- Lado direito: formulário ----- */
.mentor-login-form-side {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
}
.mentor-login-card {
  width: 100%;
  max-width: 400px;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Logo mobile — escondido em desktop */
.mentor-login-logo-mobile {
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
}
.mentor-login-logo-mobile .brand-name { color: var(--mentor-coral-deep); font-weight: 400; }
.mentor-login-logo-mobile .brand-dot { color: var(--mentor-text-muted); font-weight: 300; }
.mentor-login-logo-mobile .brand-sub { color: var(--mentor-text-muted); font-weight: 300; font-size: .95rem; }

/* ----- Responsivo ----- */
@media (max-width: 900px) {
  .mentor-login-split {
    flex-direction: column;
    max-width: 480px;
  }
  .mentor-login-showcase {
    flex: none;
    border-radius: 24px 24px 0 0;
    padding: 36px 28px 32px;
  }
  .mentor-login-headline { font-size: 1.45rem; }
  .mentor-login-form-side {
    flex: none;
    padding: 24px 12px 36px;
  }
  .mentor-login-logo-mobile { display: none; /* showcase visível em tablet */ }
}

@media (max-width: 600px) {
  .mentor-login-showcase {
    display: none; /* esconder em mobile para foco no form */
  }
  .mentor-login-form-side { padding: 24px 8px; }
  .mentor-login-logo-mobile { display: flex; }
  .mentor-login-card { max-width: 100%; }
}


/* ============================================================
   8. TERMOS — Página de documento legal
   ============================================================ */
.mentor-terms-page {
  max-width: 640px;
  margin: 0 auto;
}
.mentor-terms-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}
.mentor-terms-card {
  border-radius: var(--mentor-radius) !important;
  border: 1px solid var(--mentor-line) !important;
  box-shadow: var(--mentor-card-shadow) !important;
}
.mentor-terms-card .card-body {
  padding: 2.5rem 2rem;
}
.mentor-terms-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--mentor-teal);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .mentor-terms-card .card-body { padding: 1.75rem 1.25rem; }
  .mentor-terms-title { font-size: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════
   Seção 4d — Roda das Virtudes (Teste 06)
   ═══════════════════════════════════════════════════════════ */

/* Reutiliza as classes mentor-ie-* do Teste 05 (IE) */
/* Apenas overrides específicos para a Roda das Virtudes */

.rv-familia-sabedoria      { color: #3E5C5A; }
.rv-familia-coragem        { color: #C0392B; }
.rv-familia-humanitarias   { color: #5A7E8B; }
.rv-familia-justica        { color: #8B6E4E; }
.rv-familia-temperanca     { color: #D9824F; }
.rv-familia-transcendencia { color: #7B68AA; }

/* ═══════════════════════════════════════════════════════════
   Seção 4e — Roda da Liderança 360° (Teste 07)
   ═══════════════════════════════════════════════════════════ */

/* Reutiliza as classes ie-* do Teste 05 (IE) / 06 (Virtudes) */
/* Apenas cores por dimensão para referência em CSS */

.rl360-dim-lideranca       { color: #1A5276; }
.rl360-dim-adaptabilidade  { color: #7B68AA; }
.rl360-dim-relacoes        { color: #2E86AB; }
.rl360-dim-gestao          { color: #8B6E4E; }
.rl360-dim-comunicacao     { color: #D9824F; }
.rl360-dim-desenvolver     { color: #C0392B; }
.rl360-dim-desenvolvimento { color: #27AE60; }
.rl360-dim-produtividade   { color: #E67E22; }


/* ═══════════════════════════════════════════════════════════
   Seção 4f — Saúde Integral (Teste 08)
   ═══════════════════════════════════════════════════════════ */

/* Reutiliza as classes ie-* do Teste 05 (IE) / 06 (Virtudes) / 07 (Liderança 360°) */
/* Apenas overrides específicos para a Saúde Integral */

/* Cor principal dos botões ativos quando nenhum data-domain-color é fornecido */
.si-btn-active {
  background: #6BAE8E !important;
  color: #fff !important;
  border-color: transparent !important;
}

/* Cores por grupo para referência em futuras extensões */
.si-grupo-fisico       { color: #6BAE8E; }
.si-grupo-psiquico     { color: #4A9E78; }
.si-grupo-social       { color: #3D8B6A; }
.si-grupo-transpessoal { color: #2F7A5C; }


/* ═══════════════════════════════════════════════════════════
   Seção 9 — Rodapé de Resultados v2 (full-width)
   Adicionado em: 04/06/2026
   ═══════════════════════════════════════════════════════════ */

/*
  Os estilos .rf-* são embutidos no próprio partial resultado-footer.blade.php
  para facilitar manutenção e evitar dependência da ordem de carregamento do CSS.
  Esta seção existe apenas para overrides que precisam de maior especificidade
  ou para resetar comportamentos do Bootstrap/Sneat dentro do partial.
*/

/* Garantir que os botões rf-btn não herdem estilo de .btn do Bootstrap */
.rf-botoes-area .rf-btn {
  font-family: var(--bs-body-font-family);
}

/* Remover margin bottom de p dentro do alert de diagnóstico */
.rf-sobre-diagnostico p {
  margin-bottom: 0;
}


/* ═══════════════════════════════════════════════════════════
   Seção 4g — Mapa de Propósito / Ikigai (Teste 09)
   ═══════════════════════════════════════════════════════════ */

/* Reutiliza integralmente as classes ie-* do Teste 05 (IE) / 06 (Virtudes) / 07 (Liderança 360°) / 08 (Saúde Integral) */
/* Apenas cores por dimensão para referência e overrides específicos */

.mp-dim-amor     { color: #E8A87C; }
.mp-dim-talento  { color: #D98E5A; }
.mp-dim-missao   { color: #C4855A; }
.mp-dim-vocacao  { color: #B07D55; }


/* ═══════════════════════════════════════════════════════════
   Seção 4h — Qualidade dos Relacionamentos (Teste 10)
   ═══════════════════════════════════════════════════════════ */

/* Reutiliza integralmente as classes ie-* do Teste 05 (IE) / 06–09 */
/* Apenas cores por grupo para referência e overrides específicos */

.qr-grupo-nucleares { color: #C97B9E; }
.qr-grupo-sociais   { color: #B86D8C; }
.qr-grupo-internos  { color: #A55E78; }
.qr-grupo-cuidado   { color: #924F64; }


/* ═══════════════════════════════════════════════════════════
   Seção 4i — Autoconhecimento Emocional (Teste 11)
   ═══════════════════════════════════════════════════════════ */

/* Reutiliza integralmente as classes ie-* do Teste 05 (IE) / 06–10 */
/* Apenas cores por dimensão para referência e overrides específicos */

.ae-dim-identificacao  { color: #7B9EC9; }
.ae-dim-nomeacao       { color: #6A8FB8; }
.ae-dim-aceitacao      { color: #5A80A7; }
.ae-dim-gatilhos       { color: #4A71A0; }
.ae-dim-padroes        { color: #3A6290; }
.ae-dim-expressao      { color: #2F5480; }
.ae-dim-regulacao      { color: #264570; }
.ae-dim-autocompaixao  { color: #1D3760; }

/* Botões ativos do formulário — tom azul acinzentado */
.ae-btn-active {
  background: #7B9EC9 !important;
  color: #fff !important;
  border-color: transparent !important;
}


/* ═══════════════════════════════════════════════════════════
   Seção 4j — Gestão do Tempo e Energia (Teste 12)
   ═══════════════════════════════════════════════════════════ */

/* Reutiliza integralmente as classes ie-* do Teste 05 (IE) / 06–11 */
/* Apenas cores por grupo/dimensão e override do botão ativo */

.gte-dim-foco        { color: #D4A84B; }
.gte-dim-gestao      { color: #B07D30; }
.gte-dim-energia     { color: #8B6020; }
.gte-dim-alinhamento { color: #6B4A10; }

/* Botão ativo do formulário — âmbar dourado */
.gte-btn-active {
  background: #D4A84B !important;
  color: #fff !important;
  border-color: transparent !important;
}


/* ═══════════════════════════════════════════════════════════
   Seção 4k — Autoconfiança e Autoestima (Teste 13)
   ═══════════════════════════════════════════════════════════ */

/* Reutiliza integralmente as classes ie-* do Teste 05 (IE) / 06–12 */
/* Apenas cores por grupo/dimensão e override do botão ativo */

.aa-dim-valor_identidade     { color: #F5C842; }
.aa-dim-confianca_decisao    { color: #C8A020; }
.aa-dim-resiliencia_autonomia { color: #9A7A10; }
.aa-dim-autocompaixao        { color: #6A5410; }

/* Botão ativo do formulário — amarelo solar */
.aa-btn-active {
  background: #F5C842 !important;
  color: #1A2A28 !important;
  border-color: transparent !important;
}


/* ═══════════════════════════════════════════════════════════
   Seção 10 — Catálogo de Testes: Filtros por Intenção
   ═══════════════════════════════════════════════════════════ */

/* ── Barra de filtros ── */
.mtc-filter-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--mentor-text-muted);
  margin-bottom: .5rem;
}

.mtc-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.mtc-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem 1rem;
  border-radius: 40px;
  border: 1.5px solid var(--mentor-line);
  background: var(--mentor-surface);
  font-family: 'Nunito Sans', -apple-system, sans-serif;
  font-size: .825rem;
  font-weight: 600;
  color: var(--mentor-text-muted);
  cursor: pointer;
  transition: border-color .18s, background .18s, color .18s, box-shadow .18s;
  white-space: nowrap;
  line-height: 1;
}

.mtc-filter-btn:hover {
  border-color: var(--mentor-coral-deep);
  color: var(--mentor-coral-deep);
  background: rgba(217,130,79,.06);
}

.mtc-filter-btn.active {
  background: var(--mentor-coral-deep);
  border-color: var(--mentor-coral-deep);
  color: #fff;
  box-shadow: 0 2px 10px rgba(217,130,79,.30);
}

.mtc-filter-count {
  background: rgba(0,0,0,.12);
  border-radius: 20px;
  padding: 1px 7px;
  font-size: .72rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  line-height: 1.6;
}

.mtc-filter-btn.active .mtc-filter-count {
  background: rgba(255,255,255,.25);
}

/* ── Linha de resultado do filtro ── */
.mtc-result-text {
  font-size: .82rem;
  color: var(--mentor-text-muted);
  margin-bottom: 1rem;
}

.mtc-result-text strong {
  color: var(--mentor-teal);
  font-weight: 700;
}

/* ── Tag de área no card ── */
.mtc-area-tag {
  position: absolute;
  top: .75rem;
  right: .75rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  line-height: 1.6;
  pointer-events: none;
}

.mtc-tag-eu       { background: rgba(217,130,79,.14);  color: #9A4E1C; }
.mtc-tag-saude    { background: rgba(107,174,142,.16); color: #2A6E4A; }
.mtc-tag-relacoes { background: rgba(201,123,158,.14); color: #8A3060; }
.mtc-tag-lideranca{ background: rgba(62,92,90,.12);    color: #2A4240; }

/* Dark mode das tags */
[data-bs-theme="dark"] .mtc-tag-eu        { background: rgba(217,130,79,.20);  color: #E8A07A; }
[data-bs-theme="dark"] .mtc-tag-saude     { background: rgba(107,174,142,.20); color: #6BAE8E; }
[data-bs-theme="dark"] .mtc-tag-relacoes  { background: rgba(201,123,158,.20); color: #C97B9E; }
[data-bs-theme="dark"] .mtc-tag-lideranca { background: rgba(62,92,90,.25);    color: #6A9A98; }

/* ── Posicionamento relativo no card (âncora da tag) ── */
.mentor-test-card { position: relative; }

/* ── Card oculto pelo filtro ── */
.mtc-card-hidden { display: none !important; }

/* ── Animação de entrada ao filtrar ── */
@keyframes mtcFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mtc-appearing {
  animation: mtcFadeIn .22s ease forwards;
}

/* ── Dark mode — barra de filtros ── */
[data-bs-theme="dark"] .mtc-filter-btn {
  background: var(--mentor-surface);
  border-color: var(--mentor-line);
  color: var(--mentor-text-muted);
}

[data-bs-theme="dark"] .mtc-filter-btn:hover {
  border-color: var(--mentor-coral);
  color: var(--mentor-coral);
  background: rgba(232,160,122,.08);
}

[data-bs-theme="dark"] .mtc-filter-btn.active {
  background: var(--mentor-coral-deep);
  border-color: var(--mentor-coral-deep);
  color: #fff;
}

/* ============================================================
   11. MEUS RESULTADOS — MAPA DE CALOR (classes mrl-*)
   ============================================================ */

/* ── Cabeçalho do bloco ── */
.mrl-chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.mrl-chart-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: .95rem;
  font-weight: 400;
  color: var(--mentor-teal);
  margin-bottom: .2rem;
}

.mrl-chart-sub {
  font-size: .75rem;
  color: var(--mentor-text-muted);
}

/* ── Wrapper com scroll horizontal em mobile ── */
.mrl-heat-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Tabela principal ── */
.mrl-heat-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px;
  min-width: 380px;
}

.mrl-heat-table th {
  font-size: .72rem;
  font-weight: 700;
  color: var(--mentor-text-muted);
  text-align: center;
  padding: 4px 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Célula de rótulo (categoria) ── */
.mrl-row-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--mentor-text);
  padding: 10px 14px 10px 4px !important;
  text-align: right;
  white-space: nowrap;
  vertical-align: middle;
  background: transparent !important;
  border: none !important;
}

.mrl-row-label small {
  display: block;
  font-size: .68rem;
  font-weight: 400;
  color: var(--mentor-text-muted);
  margin-top: 1px;
}

/* ── Célula de dado ── */
.mrl-heat-cell {
  border-radius: 9px;
  padding: 11px 8px;
  text-align: center;
  vertical-align: middle;
  cursor: default;
  transition: transform .15s, box-shadow .15s;
  min-width: 68px;
}

.mrl-heat-cell:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(0,0,0,.13);
  z-index: 2;
  position: relative;
}

.mrl-heat-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
  line-height: 1.1;
}

.mrl-heat-n {
  font-size: .65rem;
  display: block;
  margin-top: 3px;
  opacity: .75;
}

/* ── Cores das células — modo claro ── */
.mrl-h-high  { background: #D8EDDB; color: #25612A; }
.mrl-h-mid   { background: #FEF0DC; color: #A0620E; }
.mrl-h-low   { background: #FAE0D8; color: #B04020; }
.mrl-h-empty { background: var(--mentor-line); color: var(--mentor-text-muted);
                font-size: .78rem; }

/* ── Cores das células — modo escuro ── */
[data-bs-theme="dark"] .mrl-h-high  { background: rgba(107,174,142,.22); color: #7DC895; }
[data-bs-theme="dark"] .mrl-h-mid   { background: rgba(212,168,75,.20);  color: #D4A84B; }
[data-bs-theme="dark"] .mrl-h-low   { background: rgba(217,116,78,.22);  color: #E8826A; }
[data-bs-theme="dark"] .mrl-h-empty { background: var(--mentor-line);    color: var(--mentor-text-muted); }

/* ── Legenda ── */
.mrl-legend {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mentor-line);
}

.mrl-legend-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--mentor-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.mrl-legend-items {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.mrl-legend-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: var(--mentor-text-muted);
}

.mrl-legend-box {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ── Nota de normalização ── */
.mrl-note {
  font-size: .71rem;
  color: var(--mentor-text-muted);
  margin-top: .6rem;
  font-style: italic;
}

/* ── Card wrapper do gráfico ── */
.mrl-chart-card {
  background: var(--mentor-surface);
  border: 1px solid var(--mentor-line);
  border-radius: var(--mentor-radius-sm);
  padding: 1.4rem 1.5rem 1.1rem;
  box-shadow: var(--mentor-card-shadow);
  margin-top: 1.5rem;
}

/* ── Filtros de resultado (mrl — reutiliza lógica mtc mas com id próprio) ── */
.mrl-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

/* ── Texto de contagem do filtro ── */
.mrl-result-text {
  font-size: .82rem;
  color: var(--mentor-text-muted);
  margin-bottom: .85rem;
}


/* ============================================================
   12. HOME PÚBLICA — classes hp-*
   Página: resources/views/welcome.blade.php
   Rota:   GET /  (pública, sem autenticação)
   ============================================================ */

/* Reset do wrapper do blankLayout para a home */
.hp-page-wrapper {
  min-height: 100vh;
  background: #FBF4EC;
  overflow-x: hidden;
}

/* ── NAV ── */
.hp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  background: rgba(251,244,236,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .5rem 1rem .5rem .6rem;
  border-radius: 100px;
  border: 1px solid rgba(62,92,90,.1);
}

.hp-nav-logo img { width: 26px; height: 26px; }

.hp-nav-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: #3E5C5A;
  letter-spacing: -.02em;
}

.hp-nav-buttons {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.hp-nav-login {
  font-size: .85rem;
  font-weight: 600;
  color: #3E5C5A;
  text-decoration: none;
  background: rgba(251,244,236,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: .5rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(62,92,90,.1);
  transition: background .2s;
}

.hp-nav-login:hover { background: #fff; color: #3E5C5A; }

.hp-nav-cta {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: #D9824F;
  padding: .5rem 1.3rem;
  border-radius: 100px;
  transition: all .25s;
  box-shadow: 0 2px 12px rgba(217,130,79,.3);
}

.hp-nav-cta:hover {
  background: #D98E5A;
  transform: translateY(-1px);
  color: #fff;
}

/* ── HERO ── */
.hp-hero {
  min-height: 100vh;
  background: #1A2A28;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hp-hero-shape-1 {
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,130,79,.15) 0%, transparent 65%);
  animation: hp-breathe 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hp-hero-shape-2 {
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62,92,90,.4) 0%, transparent 65%);
  animation: hp-breathe 10s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

.hp-hero-shape-3 {
  position: absolute; top: 30%; left: 40%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,122,.06) 0%, transparent 65%);
  animation: hp-breathe 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hp-breathe {
  from { transform: scale(1); opacity: .8; }
  to   { transform: scale(1.15); opacity: 1; }
}

.hp-hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hp-hero-deco-star {
  position: absolute; right: 8%; top: 50%;
  transform: translateY(-55%);
  opacity: .055;
  pointer-events: none;
}

.hp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hp-hero-issue {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hp-issue-line {
  height: 1px; width: 40px;
  background: rgba(217,130,79,.5);
  flex-shrink: 0;
}

.hp-issue-text {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(217,130,79,.7);
}

.hp-hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 2rem;
}

.hp-hero-headline em {
  font-style: italic;
  color: #E8A07A;
}

.hp-hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
}

.hp-hero-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  max-width: 520px;
}

.hp-hero-lead strong {
  color: rgba(255,255,255,.85);
  font-weight: 600;
}

.hp-hero-cta-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
  flex-shrink: 0;
}

.hp-btn-hero {
  background: #D9824F;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all .3s;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(217,130,79,.4);
  display: inline-block;
}

.hp-btn-hero:hover {
  background: #D98E5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(217,130,79,.55);
  color: #fff;
}

.hp-hero-free-tag {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-align: right;
}

.hp-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.25);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
  animation: hp-bob 2s ease-in-out infinite;
}

@keyframes hp-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(4px); }
}

.hp-scroll-line {
  width: 1px; height: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,.2), transparent);
}

/* ── MANIFESTO ── */
.hp-manifesto {
  padding: 7rem 5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.hp-manifesto-side {
  position: sticky;
  top: 100px;
}

.hp-manifesto-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #D9824F;
  margin-bottom: 1.5rem;
  display: block;
}

.hp-manifesto-nav {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.hp-manifesto-nav-item {
  font-size: .85rem;
  color: #7A8F8D;
  font-weight: 600;
  padding: .4rem 0 .4rem 1rem;
  border-left: 2px solid transparent;
}

.hp-manifesto-nav-item.active {
  color: #3E5C5A;
  border-left-color: #D9824F;
}

.hp-manifesto-block { margin-bottom: 4rem; }
.hp-manifesto-block:last-child { margin-bottom: 0; }

.hp-block-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: .85rem;
  font-weight: 300;
  color: #D9824F;
  margin-bottom: .5rem;
  display: block;
}

.hp-block-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #3E5C5A;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}

.hp-block-title em {
  font-style: italic;
  color: #D9824F;
}

.hp-block-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #7A8F8D;
  max-width: 560px;
}

.hp-block-body strong { color: #2C3E3B; font-weight: 600; }

.hp-block-highlight {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid #D9824F;
  background: rgba(217,130,79,.06);
  border-radius: 0 12px 12px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #3E5C5A;
}

/* ── VISUAL BREAK (rodas) ── */
.hp-visual-break {
  background: #3E5C5A;
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hp-vb-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #E8A07A;
  margin-bottom: 1.5rem;
  display: block;
}

.hp-vb-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #fff;
  letter-spacing: -.025em;
  margin-bottom: 1.5rem;
}

.hp-vb-body {
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hp-vb-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .9rem;
  color: #E8A07A;
  text-decoration: none;
  transition: gap .2s;
}

.hp-vb-cta:hover { gap: .75rem; color: #E8A07A; }

.hp-vb-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hp-wheels-stack {
  position: relative;
  width: 320px; height: 320px;
}

.hp-wheel-frame {
  position: absolute;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.hp-wheel-frame-main  { inset: 0; z-index: 3; }
.hp-wheel-frame-back1 { inset: -15px; z-index: 2; opacity: .5; transform: rotate(3deg); }
.hp-wheel-frame-back2 { inset: -30px; z-index: 1; opacity: .25; transform: rotate(-4deg); }

.hp-wheel-label {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  text-align: center;
}

/* ── CATÁLOGO ── */
.hp-catalog {
  padding: 7rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hp-catalog-header {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.hp-section-kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #D9824F;
  display: block;
  margin-bottom: 1rem;
}

.hp-section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #3E5C5A;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.hp-section-desc {
  color: #7A8F8D;
  font-size: .95rem;
  line-height: 1.75;
}

.hp-catalog-areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.hp-area-block {
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #F0E8DD;
  background: #fff;
  transition: all .3s;
}

.hp-area-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,42,40,.07);
  border-color: rgba(217,130,79,.2);
}

.hp-area-block-featured {
  background: #D9824F;
  border-color: transparent;
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hp-area-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.hp-area-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: #3E5C5A;
  margin-bottom: .5rem;
}

.hp-area-block-featured .hp-area-title { color: #fff; font-size: 1.8rem; }

.hp-area-tests {
  font-size: .8rem;
  color: #7A8F8D;
  line-height: 1.65;
}

.hp-area-block-featured .hp-area-tests { color: rgba(255,255,255,.7); }

.hp-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .75rem;
}

.hp-tag {
  background: rgba(62,92,90,.07);
  color: #3E5C5A;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .65rem;
  border-radius: 6px;
  white-space: nowrap;
}

.hp-area-block-featured .hp-tag {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.hp-area-cta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: 1.25rem;
  font-size: .85rem;
  font-weight: 700;
  color: #D9824F;
  text-decoration: none;
  transition: gap .2s;
}

.hp-area-block-featured .hp-area-cta { color: #fff; }
.hp-area-cta:hover { gap: .5rem; color: #D9824F; }
.hp-area-block-featured .hp-area-cta:hover { color: #fff; }

/* ── PULL QUOTE ── */
.hp-pull-quote {
  padding: 6rem 5rem;
  background: #F0E8DD;
  text-align: center;
  position: relative;
}

.hp-pq-deco {
  position: absolute; top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D9824F, transparent);
}

.hp-pq-text {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #3E5C5A;
  line-height: 1.35;
  letter-spacing: -.02em;
  max-width: 780px;
  margin: 0 auto 1.5rem;
}

.hp-pq-sub {
  font-size: .875rem;
  color: #7A8F8D;
  font-weight: 600;
  letter-spacing: .04em;
}

.hp-pq-sub span { color: #D9824F; }

/* ── PERSONAS ── */
.hp-personas {
  padding: 7rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hp-personas-header {
  text-align: center;
  margin-bottom: 4rem;
}

.hp-personas-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #3E5C5A;
  letter-spacing: -.025em;
  margin-bottom: .75rem;
}

.hp-personas-desc {
  color: #7A8F8D;
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.hp-personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hp-p-card {
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}

.hp-p-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
}

.hp-p-card:hover { transform: translateY(-5px); }

.hp-p-card-1 { background: #fff; border: 1px solid rgba(217,130,79,.15); }
.hp-p-card-1::before { background: linear-gradient(90deg, #D9824F, #E8A07A); }
.hp-p-card-1:hover { box-shadow: 0 16px 40px rgba(217,130,79,.1); }

.hp-p-card-2 { background: #fff; border: 1px solid rgba(62,92,90,.12); }
.hp-p-card-2::before { background: #3E5C5A; }
.hp-p-card-2:hover { box-shadow: 0 16px 40px rgba(62,92,90,.1); }

.hp-p-card-3 { background: #1A2A28; }
.hp-p-card-3::before { background: linear-gradient(90deg, #D98E5A, #D9824F); }
.hp-p-card-3:hover { box-shadow: 0 16px 40px rgba(26,42,40,.25); }

.hp-p-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.hp-p-card-1 .hp-p-num,
.hp-p-card-2 .hp-p-num { color: rgba(62,92,90,.08); }
.hp-p-card-3 .hp-p-num { color: rgba(255,255,255,.06); }

.hp-p-frase {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.hp-p-card-1 .hp-p-frase,
.hp-p-card-2 .hp-p-frase { color: #3E5C5A; }
.hp-p-card-3 .hp-p-frase { color: rgba(255,255,255,.8); }

.hp-p-who {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  display: block;
}

.hp-p-card-1 .hp-p-who { color: #D9824F; }
.hp-p-card-2 .hp-p-who { color: #3E5C5A; }
.hp-p-card-3 .hp-p-who { color: #E8A07A; }

.hp-p-desc {
  font-size: .85rem;
  line-height: 1.65;
}

.hp-p-card-1 .hp-p-desc,
.hp-p-card-2 .hp-p-desc { color: #7A8F8D; }
.hp-p-card-3 .hp-p-desc { color: rgba(255,255,255,.5); }

/* ── CTA FINAL ── */
.hp-final {
  background: #1A2A28;
  position: relative;
  overflow: hidden;
}

.hp-final-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(217,130,79,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(62,92,90,.5) 0%, transparent 50%);
  pointer-events: none;
}

.hp-final-content {
  position: relative; z-index: 1;
  padding: 8rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hp-final-kicker {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(217,130,79,.7);
  margin-bottom: 1.5rem;
}

.hp-final-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}

.hp-final-title em { font-style: italic; color: #E8A07A; }

.hp-final-body {
  color: rgba(255,255,255,.45);
  font-size: 1rem;
  line-height: 1.75;
}

.hp-final-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 380px;
}

.hp-final-cta-big {
  background: #D9824F;
  color: #fff;
  padding: 1.1rem 2rem;
  border-radius: 12px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  text-align: center;
  transition: all .3s;
  box-shadow: 0 4px 24px rgba(217,130,79,.3);
  display: block;
}

.hp-final-cta-big:hover {
  background: #c46d39;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(217,130,79,.45);
  color: #fff;
}

.hp-final-detail {
  font-size: .8rem;
  color: rgba(255,255,255,.2);
  text-align: center;
}

.hp-final-perks {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.25rem;
}

.hp-perk {
  display: flex;
  gap: .75rem;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  font-weight: 600;
}

.hp-perk-icon { color: #E8A07A; }

/* ── FOOTER ── */
.hp-footer {
  background: #0F1A18;
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.2);
  font-size: .75rem;
}

.hp-footer a { color: inherit; text-decoration: none; }
.hp-footer a:hover { color: rgba(255,255,255,.4); }

.hp-footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,.3);
  letter-spacing: -.02em;
}

/* ── ANIMAÇÕES DE ENTRADA ── */
.hp-reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: hp-reveal .9s cubic-bezier(.25,.46,.45,.94) forwards;
}

.hp-d1 { animation-delay: .05s; }
.hp-d2 { animation-delay: .2s; }
.hp-d3 { animation-delay: .38s; }
.hp-d4 { animation-delay: .55s; }

@keyframes hp-reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVO ── */
@media (max-width: 991px) {
  .hp-nav { padding: 1rem 1.5rem; }
  .hp-hero { padding: 6rem 1.5rem 4rem; }
  .hp-hero-headline { font-size: 2.6rem; }
  .hp-hero-bottom { grid-template-columns: 1fr; gap: 2rem; }
  .hp-hero-cta-block { align-items: flex-start; }
  .hp-hero-free-tag { text-align: left; }
  .hp-manifesto { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  .hp-manifesto-side { position: static; }
  .hp-visual-break { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  .hp-wheels-stack { width: 260px; height: 260px; }
  .hp-catalog { padding: 4rem 1.5rem; }
  .hp-catalog-header { grid-template-columns: 1fr; }
  .hp-catalog-areas { grid-template-columns: 1fr; }
  .hp-area-block-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .hp-pull-quote { padding: 4rem 1.5rem; }
  .hp-personas { padding: 4rem 1.5rem; }
  .hp-personas-grid { grid-template-columns: 1fr; }
  .hp-final-content { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 3rem; }
  .hp-footer { flex-direction: column; gap: .5rem; text-align: center; padding: 1.5rem; }
  .hp-hero-deco-star { display: none; }
}

/* ── NEUTRALIZAR o wrapper do blankLayout para a home ── */
.hp-page-wrapper * { box-sizing: border-box; }

/* ============================================================
   SEÇÃO 13 — Quiz "Qual teste é para mim?"
   Classes: quiz-*
   Exibido como modal Bootstrap 5 em: dashboard + testes/index
   ============================================================ */

/* ── Botão do catálogo de testes ── */
.quiz-catalogo-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem 1.25rem;
  border-radius: 2rem;
  border: 2px solid var(--mentor-coral);
  background: transparent;
  color: var(--mentor-coral);
  font-family: 'Nunito Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s, box-shadow .2s;
}
.quiz-catalogo-btn:hover {
  background: var(--mentor-coral);
  color: #fff;
  box-shadow: 0 4px 16px rgba(217,130,79,.3);
}

/* ── Card stat do dashboard (botão quiz) ── */
.quiz-stat-trigger {
  background: none;
  border: 2px dashed rgba(217,130,79,.4);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.quiz-stat-trigger:hover {
  border-color: var(--mentor-coral);
  background: rgba(217,130,79,.06);
}
.mentor-stat-icon.quiz-icon {
  background: rgba(217,130,79,.12);
  color: var(--mentor-coral);
}
.quiz-stat-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--mentor-coral);
  line-height: 1.3;
  text-align: left;
}

/* ── Modal ── */
.quiz-modal-dialog {
  max-width: 540px;
}
.quiz-modal-content {
  border: none;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  background: var(--bs-body-bg);
}

/* ── Header do modal ── */
.quiz-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: linear-gradient(135deg, rgba(217,130,79,.08) 0%, rgba(62,92,90,.06) 100%);
}
.quiz-header-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.quiz-modal-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--mentor-teal);
  margin: 0 0 .1rem;
}
.quiz-modal-subtitle {
  font-size: .78rem;
  color: var(--bs-secondary-color);
  margin: 0;
}
.quiz-close-btn {
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--bs-secondary-color);
  cursor: pointer;
  padding: .25rem;
  line-height: 1;
  border-radius: .5rem;
  transition: background .15s, color .15s;
}
.quiz-close-btn:hover {
  background: rgba(0,0,0,.06);
  color: var(--bs-body-color);
}

/* ── Body do modal ── */
.quiz-modal-body {
  padding: 1.75rem;
  min-height: 320px;
}

/* ── Barra de progresso ── */
.quiz-progress-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.quiz-progress-bar {
  flex: 1;
  height: 5px;
  background: rgba(0,0,0,.08);
  border-radius: 99px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mentor-coral), var(--mentor-teal));
  border-radius: 99px;
  transition: width .4s cubic-bezier(.4,0,.2,1);
}
.quiz-progress-label {
  font-size: .72rem;
  color: var(--bs-secondary-color);
  white-space: nowrap;
  font-weight: 600;
}

/* ── Steps ── */
.quiz-step {
  animation: none;
}
.quiz-step-hidden {
  display: none !important;
}
.quiz-step-in {
  animation: quiz-fade-in .35s ease both;
}
@keyframes quiz-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Pergunta ── */
.quiz-question {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--mentor-teal);
  margin-bottom: 1.1rem;
  line-height: 1.4;
}

/* ── Opções ── */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.quiz-opt {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  padding: .75rem 1rem;
  background: var(--bs-body-bg);
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: .9rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .875rem;
  color: var(--bs-body-color);
  text-align: left;
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .12s;
}
.quiz-opt:hover {
  border-color: var(--mentor-coral);
  background: rgba(217,130,79,.05);
  transform: translateX(3px);
}
.quiz-opt--selected {
  border-color: var(--mentor-coral) !important;
  background: rgba(217,130,79,.12) !important;
  transform: translateX(3px) !important;
}
.quiz-opt-emoji {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 1.75rem;
  text-align: center;
}

/* Modo escuro — opções */
[data-bs-theme="dark"] .quiz-opt {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
[data-bs-theme="dark"] .quiz-opt:hover {
  border-color: var(--mentor-coral);
  background: rgba(217,130,79,.1);
}

/* ── Resultado ── */
.quiz-result-header {
  text-align: center;
  margin-bottom: 1.25rem;
}
.quiz-result-icon {
  font-size: 2.5rem;
  margin-bottom: .5rem;
}
.quiz-result-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  color: var(--mentor-teal);
  margin-bottom: .35rem;
}
.quiz-result-desc {
  font-size: .82rem;
  color: var(--bs-secondary-color);
  margin: 0;
  line-height: 1.5;
}

/* Cards de resultado */
.quiz-result-cards {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.quiz-result-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: 1rem;
  background: var(--bs-body-bg);
  transition: box-shadow .2s;
}
.quiz-result-card--primary {
  border-color: var(--mentor-coral);
  background: rgba(217,130,79,.05);
  box-shadow: 0 2px 12px rgba(217,130,79,.12);
}
.quiz-rc-emoji {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 2.25rem;
  text-align: center;
}
.quiz-rc-info {
  flex: 1;
  min-width: 0;
}
.quiz-rc-nome {
  font-weight: 700;
  font-size: .9rem;
  color: var(--bs-body-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.quiz-rc-desc {
  font-size: .76rem;
  color: var(--bs-secondary-color);
  margin-top: .15rem;
  line-height: 1.4;
}
.quiz-rc-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  padding: .45rem .9rem;
  border-radius: 2rem;
  background: var(--mentor-coral);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, box-shadow .18s;
}
.quiz-rc-btn:hover {
  background: #c46d39;
  color: #fff;
  box-shadow: 0 4px 12px rgba(217,130,79,.35);
}

/* Botão refazer */
.quiz-refazer-btn {
  display: block;
  width: 100%;
  padding: .55rem;
  background: none;
  border: none;
  color: var(--bs-secondary-color);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  border-radius: .5rem;
  transition: color .15s, background .15s;
}
.quiz-refazer-btn:hover {
  color: var(--mentor-teal);
  background: rgba(62,92,90,.05);
}

/* ── Responsivo ── */
@media (max-width: 576px) {
  .quiz-modal-dialog { margin: .5rem; max-width: calc(100vw - 1rem); }
  .quiz-rc-nome { white-space: normal; }
  .quiz-catalogo-btn { font-size: .78rem; padding: .5rem 1rem; }
}

/* ── Variante destaque (full-width, banner) — catálogo de testes ── */
.quiz-catalogo-btn--destaque {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  padding: .9rem 1.25rem;
  border-radius: .9rem;
  border: 2px solid var(--mentor-coral);
  background: rgba(217,130,79,.07);
  color: var(--bs-body-color);
  font-family: 'Nunito Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background .2s, box-shadow .2s, border-color .2s;
}
.quiz-catalogo-btn--destaque i { color: var(--mentor-coral); font-size: 1.1rem; flex-shrink: 0; }
.quiz-catalogo-btn--destaque strong { color: var(--mentor-coral); font-weight: 700; }
.quiz-catalogo-btn--destaque:hover {
  background: rgba(217,130,79,.14);
  box-shadow: 0 4px 18px rgba(217,130,79,.2);
  border-color: #c46d39;
}
[data-bs-theme="dark"] .quiz-catalogo-btn--destaque {
  background: rgba(217,130,79,.1);
}


/* ════════════════════════════════════════════════════════════
   4l. PERFIL DE VALORES PESSOAIS (classes pv-*)
   Teste 14 — Grupo B · Cor de destaque variável por categoria
   ════════════════════════════════════════════════════════════ */

/* Cores de categoria */
.pv-cat-crescimento-text  { color: #6BAE8E; }
.pv-cat-conexao-text      { color: #7B9EC9; }
.pv-cat-contribuicao-text { color: #D9824F; }
.pv-cat-realizacao-text   { color: #D4A84B; }
.pv-cat-harmonia-text     { color: #C97B9E; }

/* Resultado — card de perfil */
.pv-perfil-card {
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}
.pv-perfil-nome {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.pv-perfil-cat {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bs-secondary-color);
}

/* Barra de distribuição */
.pv-barra-wrap {
  height: 8px;
  border-radius: 4px;
  background: var(--bs-border-color);
  overflow: hidden;
}
.pv-barra-fill {
  height: 8px;
  border-radius: 4px;
  transition: width .6s ease;
}

/* Badge de valor no resultado */
.pv-resultado-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .75rem;
  border-radius: 2rem;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO 13 — Sininho de Notificações
   Arquivo: ctp/css/mentor-custom.css
   Data: 07/06/2026
   ═══════════════════════════════════════════════════════════════ */

.mentor-notif-badge {
    position: absolute; top: 4px; right: 2px;
    min-width: 17px; height: 17px; padding: 0 4px;
    border-radius: 9px; background: var(--mentor-coral, #D9824F);
    color: #fff; font-size: 0.65rem; font-weight: 700;
    line-height: 17px; text-align: center; pointer-events: none;
}
#mentor-notif-wrap { position: relative; }
.mentor-notif-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    width: 340px; max-height: 480px;
    background: var(--bs-card-bg, #fff);
    border: 1px solid var(--bs-border-color);
    border-radius: .625rem;
    box-shadow: 0 8px 32px rgba(26,42,40,.15);
    z-index: 1080; display: flex; flex-direction: column; overflow: hidden;
}
.mentor-notif-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: .75rem 1rem;
    border-bottom: 2px solid var(--mentor-coral, #D9824F); flex-shrink: 0;
}
.mentor-notif-header-title {
    font-family: 'Fraunces', serif; font-size: .9rem; font-weight: 600;
    color: var(--mentor-teal, #3E5C5A);
}
.mentor-notif-mark-all {
    font-size: .72rem; font-weight: 600;
    color: var(--mentor-teal, #3E5C5A); background: transparent;
    border: 1px solid var(--mentor-teal, #3E5C5A);
    border-radius: 20px; padding: .15rem .6rem;
    cursor: pointer; transition: all .15s; white-space: nowrap;
}
.mentor-notif-mark-all:hover { background: var(--mentor-teal, #3E5C5A); color: #fff; }
.mentor-notif-list { overflow-y: auto; flex: 1; }
.mentor-notif-empty {
    padding: 2rem 1rem; text-align: center;
    color: var(--bs-secondary-color); font-size: .85rem;
}
.mentor-notif-item {
    display: flex; align-items: flex-start; gap: .75rem;
    padding: .75rem 1rem; cursor: pointer;
    border-bottom: 1px solid var(--bs-border-color);
    transition: background .12s; position: relative;
}
.mentor-notif-item:last-child { border-bottom: none; }
.mentor-notif-item:hover { background: var(--bs-tertiary-bg, #f8f9fa); }
.mentor-notif-item.unread { background: rgba(217,130,79,.07); }
.mentor-notif-item.read { opacity: .75; }
.mentor-notif-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: .1rem; }
.mentor-notif-content { flex: 1; min-width: 0; }
.mentor-notif-title {
    display: block; font-size: .82rem; font-weight: 600;
    color: var(--bs-body-color); line-height: 1.35; margin-bottom: .2rem;
}
.mentor-notif-time { display: block; font-size: .72rem; color: var(--bs-secondary-color); }
.mentor-notif-admin-badge {
    display: inline-block; font-size: .62rem; font-weight: 700;
    background: var(--mentor-coral, #D9824F); color: #fff;
    padding: .1rem .4rem; border-radius: 4px;
    margin-bottom: .2rem; letter-spacing: .03em;
}
.mentor-notif-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--mentor-coral, #D9824F);
    flex-shrink: 0; margin-top: .35rem;
}
@media (max-width: 480px) {
    .mentor-notif-dropdown { width: calc(100vw - 2rem); right: -1rem; }
}
[data-bs-theme="dark"] .mentor-notif-dropdown {
    background: var(--bs-card-bg); border-color: var(--bs-border-color);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
[data-bs-theme="dark"] .mentor-notif-item.unread { background: rgba(217,130,79,.12); }
