/* ============================================================
   CURRÍCULO INTERATIVO · Rhomma Consultoria
   Identidade visual alinhada à página Vagas Decifradas
   + Complemento: página Memória & DISC
   ============================================================ */

:root {
  --navy: #1e3150;
  --navy-dark: #16253d;
  --navy-deep: #0f1b2e;
  --gold: #c9a84c;
  --gold-light: #e2c87a;
  --off: #f6f4ef;
  --white: #ffffff;
  --text: #2b3446;
  --muted: #6b7487;
  --line: #e4e0d6;
  --green: #4caf7d;
  --ok: #4caf7d;
  --erro: #c9564c;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--off);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── ANIMAÇÕES ─── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.reveal { opacity:0; transform:translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ─── BOTÕES ─── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--gold); color: var(--navy-deep);
  font-size: 13px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; border-radius: 4px; transition: all .25s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,.3); }
.btn-gold.dark:hover { box-shadow: 0 12px 28px rgba(15,27,46,.18); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; background: transparent; color: rgba(255,255,255,.95);
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; border: 2px solid rgba(201,168,76,.7);
  border-radius: 4px; transition: all .25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,168,76,.08); }
.btn-outline.sm { padding: 11px 20px; font-size: 12px; }

/* ─── NAVBAR ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(201,168,76,.25);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-back { color: #cfd6e2; font-size: 14px; font-weight: 500; letter-spacing: .3px; transition: color .2s; }
.nav-back:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--navy-deep);
  padding: 10px 20px; border-radius: 4px; font-weight: 600; font-size: 13px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* ─── HERO (bloco navy · duas cores com os cards) ─── */
.hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 70%);
  color: #fff;
  padding: 80px 24px 130px; /* respiro extra embaixo p/ cards sobrepostos */
}
.hero-inner { max-width: 1140px; margin: 0 auto; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
  opacity:0; animation: fadeUp .6s .15s ease forwards;
}
.hero-eyebrow::before { content:''; width: 42px; height: 2px; background: var(--gold); flex-shrink: 0; }
.hero-eyebrow span {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px); font-weight: 400; line-height: 1.15;
  max-width: 760px; margin-bottom: 20px;
  opacity:0; animation: fadeUp .6s .3s ease forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.75; color: #c3cbd9;
  max-width: 640px; margin-bottom: 36px;
  opacity:0; animation: fadeUp .6s .45s ease forwards;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity:0; animation: fadeUp .6s .6s ease forwards;
}

/* Hero anchors (usado na página Memória & DISC) */
.hero-anchors {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 32px;
  opacity: 0; animation: fadeUp .6s .75s ease forwards;
}
.hero-anchor {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: #c3cbd9;
  padding-bottom: 3px; border-bottom: 1px solid rgba(201,168,76,.35);
  transition: color .2s, border-color .2s;
}
.hero-anchor:hover { color: var(--gold-light); border-color: var(--gold); }

/* ─── CARDS DE DESTAQUE (atravessam navy → claro) ─── */
.destaques { max-width: 1140px; margin: -72px auto 0; padding: 0 24px; position: relative; z-index: 5; }
.destaques-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.destaque-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 10px 30px rgba(15,27,46,.10);
}
.destaque-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(15,27,46,.16); }
.dc-top { display: flex; align-items: center; justify-content: space-between; }
.dc-badge {
  background: var(--navy); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 1.5px; padding: 4px 12px; border-radius: 4px;
}
.dc-marker { color: var(--gold); font-size: 12px; opacity: .8; }
.destaque-card h3 {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400;
  color: var(--navy); line-height: 1.25;
}
.destaque-card p { font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ─── BASE DE SEÇÃO ─── */
.section { padding: 90px 24px; }
.container { max-width: 1140px; margin: 0 auto; }
.section-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
}
.section-label::before { content:''; width: 42px; height: 2px; background: var(--gold); flex-shrink: 0; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px); font-weight: 400; line-height: 1.18;
  color: var(--navy); margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.white { color: var(--white); }
.section-title.white em { color: var(--gold-light); }
.section-sub { font-size: 14.5px; line-height: 1.75; color: var(--muted); max-width: 620px; }
.section-sub.white { color: #c3cbd9; }

/* ─── O QUE É ─── */
.oque { background: var(--off); padding-top: 80px; }
.oque-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: start; }
.oque-text p { font-size: 14.5px; line-height: 1.8; color: var(--muted); margin-bottom: 18px; }
.oque-text p strong { color: var(--navy); font-weight: 600; }
.oque-quote {
  padding: 22px 26px; margin-top: 6px;
  background: var(--white); border: 1px solid var(--line);
  border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0;
}
.oque-quote p {
  font-family: 'Playfair Display', serif; font-size: 18px; font-style: italic;
  color: var(--navy); line-height: 1.55; margin: 0;
}
.garantias { display: flex; flex-direction: column; gap: 14px; padding-top: 68px; }
.garantia {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 18px 22px; display: flex; flex-direction: column; gap: 4px;
  position: relative; overflow: hidden;
}
.garantia::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background: var(--gold); }
.garantia strong {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--navy);
}
.garantia span { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ─── PARA QUEM ─── */
.paraquem { background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 80%); }
.paraquem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.paraquem-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.2);
  border-radius: 10px; padding: 30px 26px; transition: all .25s; position: relative; overflow: hidden;
}
.paraquem-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background: var(--gold); transform: scaleX(0); transition: transform .3s;
}
.paraquem-card:hover::after { transform: scaleX(1); }
.paraquem-card:hover { background: rgba(201,168,76,.06); transform: translateY(-3px); }
.paraquem-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 10px;
}
.paraquem-card p { font-size: 14px; line-height: 1.7; color: #c3cbd9; }

/* ─── COMO FUNCIONA ─── */
.como { background: var(--white); }
.como-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.como-step {
  background: var(--off); border: 1px solid var(--line); border-radius: 10px;
  padding: 28px 24px; position: relative; overflow: hidden; transition: all .25s;
}
.como-step::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background: var(--gold); transform: scaleX(0); transition: transform .3s;
}
.como-step:hover::after { transform: scaleX(1); }
.como-step:hover { background: var(--white); box-shadow: 0 10px 26px rgba(15,27,46,.08); }
.cs-num {
  font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 400;
  color: rgba(201,168,76,.35); line-height: 1; margin-bottom: 12px;
}
.como-step h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px;
}
.como-step p { font-size: 13.5px; line-height: 1.7; color: var(--muted); }

/* ─── MODELO ─── */
.modelo { background: var(--off); }
.modelo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.modelo-text > p { font-size: 14.5px; line-height: 1.8; color: var(--muted); margin-bottom: 22px; }
.modelo-url-box {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; margin-bottom: 26px;
  background: var(--white); border: 1px solid var(--line);
  border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0;
}
.modelo-url-box span { font-size: 13px; color: var(--muted); font-family: monospace; flex: 1; overflow-wrap: anywhere; }
.modelo-url-box a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); white-space: nowrap;
}
.modelo-visual-wrap { position: relative; }
.modelo-visual {
  position: relative; height: 360px; border-radius: 10px;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 80%);
  border: 1px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.modelo-visual::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,.07) 0%, transparent 70%);
}
.modelo-visual-inner { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.modelo-visual-inner p {
  font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic;
  color: rgba(255,255,255,.55); margin-bottom: 20px; line-height: 1.4;
}
.modelo-visual-accent {
  position: absolute; bottom: -12px; right: -12px;
  width: 72px; height: 72px; background: var(--gold); border-radius: 6px; z-index: -1;
}

/* ─── TIPOS DE MEMÓRIA (página Memória & DISC) ─── */
.mem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px;
}
.mem-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 28px 26px; display: flex; flex-direction: column; height: 100%;
}
.mem-card h3 {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500;
  color: var(--navy); margin-bottom: 8px; line-height: 1.3;
}
.mem-tempo {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.mem-card p { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; flex: 1; }
.mem-ex {
  font-size: 13px; line-height: 1.6; color: var(--text);
  background: var(--off); border-left: 3px solid var(--gold);
  padding: 10px 14px; border-radius: 0 6px 6px 0;
}
.mem-ex strong { color: var(--navy); }

.hemi-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px;
}
.hemi-card {
  background: var(--off); border: 1px solid var(--line); border-radius: 10px;
  padding: 28px 26px; height: 100%;
}
.hemi-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--navy);
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.hemi-card dl { display: flex; flex-direction: column; gap: 14px; }
.hemi-card dt {
  font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px;
}
.hemi-card dd { font-size: 13.5px; line-height: 1.65; color: var(--muted); }

/* ─── PERFIS DISC (página Memória & DISC) ─── */
.perfil-section { padding: 90px 24px; background: var(--white); }
.perfil-section.como { background: var(--off); }

.perfil-head { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; }
.perfil-letra {
  width: 64px; height: 64px; flex-shrink: 0; border-radius: 10px;
  background: var(--accent, var(--navy)); color: var(--white);
  font-family: 'Playfair Display', serif; font-size: 25px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.perfil-head h2 {
  font-family: 'Playfair Display', serif; font-size: 25px;
  font-weight: 400; color: var(--navy);
}
.perfil-tracos {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent, var(--gold));
  margin-bottom: 40px;
}

/* Grid dos 4 blocos — as duas colunas de cada linha ficam com a MESMA altura
   (comportamento padrão do CSS grid: align-items:stretch) */
.perfil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.perfil-bloco {
  background: var(--off); border: 1px solid var(--line); border-radius: 10px;
  padding: 26px 28px;
  height: 100%;
  display: flex; flex-direction: column;
}
.perfil-section.como .perfil-bloco { background: var(--white); }
.perfil-bloco h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy);
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--accent, var(--gold));
  display: inline-block; align-self: flex-start;
}
.perfil-bloco ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.perfil-bloco li {
  font-size: 14px; line-height: 1.65; color: var(--muted);
  padding-left: 16px; position: relative;
}
.perfil-bloco li::before {
  content: '◆'; position: absolute; left: 0; top: 1px;
  font-size: 8px; color: var(--accent, var(--gold));
}
.perfil-bloco li strong { color: var(--navy); font-weight: 600; }

/* Mix de memória (barras) */
.mem-mix { display: flex; flex-direction: column; gap: 20px; flex: 1; }
.mem-mix-item { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.mem-mix-item strong { display: block; color: var(--navy); font-size: 14px; margin-bottom: 4px; }
.mem-mix-bar {
  margin-top: 8px; height: 6px; border-radius: 3px; background: var(--line); overflow: hidden;
}
.mem-mix-fill {
  height: 100%; border-radius: 3px; background: var(--accent, var(--gold));
}

/* Resumo (Técnica ideal / Ferramentas / Revisão) */
.perfil-resumo {
  margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.perfil-resumo > div {
  background: var(--navy); border-radius: 8px; padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.perfil-resumo strong {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light);
}
.perfil-resumo span { font-size: 14px; color: #dfe4ee; line-height: 1.5; }

/* ─── TABELA COMPARATIVA (página Memória & DISC) ─── */
.tabela-wrap {
  margin-top: 40px; overflow-x: auto; border: 1px solid var(--line);
  border-radius: 10px; background: var(--white);
}
table.comparativa { width: 100%; border-collapse: collapse; min-width: 640px; }
table.comparativa thead th {
  background: var(--navy); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; text-align: left;
  padding: 14px 18px;
}
table.comparativa tbody td {
  padding: 16px 18px; font-size: 14px; color: var(--text);
  border-top: 1px solid var(--line); vertical-align: middle;
}
table.comparativa tbody tr:hover { background: var(--off); }
table.comparativa .dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  margin-right: 8px; vertical-align: middle;
}

.dica-ouro {
  margin-top: 32px; padding: 26px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 14px rgba(30,49,80,.06);
}
.dica-ouro h4 {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy);
  margin-bottom: 10px;
}
.dica-ouro h4::before {
  content: '\25C6'; color: var(--gold); font-size: 9px; line-height: 1;
}
.dica-ouro p { font-size: 14.5px; line-height: 1.75; color: var(--text); }
.dica-ouro p strong { color: var(--navy); font-weight: 600; }

/* ─── CTA FINAL ─── */
.cta-final {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 80%);
  padding: 96px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,.06) 0%, transparent 70%);
}
.cta-final .inner { position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px); font-weight: 400;
  color: var(--white); line-height: 1.15; margin-bottom: 18px;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub { font-size: 14.5px; color: #c3cbd9; max-width: 560px; margin: 0 auto 40px; line-height: 1.75; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
  background: #0a1322; padding: 26px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-top: 1px solid rgba(201,168,76,.15);
}
footer img { height: 44px; width: auto; opacity: .9; }
footer span { font-size: 12px; color: rgba(255,255,255,.3); }
footer a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .2s; }
footer a:hover { color: var(--gold-light); }

/* ─── QUIZ DE VERIFICAÇÃO ─── */
.quiz-start {
  margin-top: 40px; padding: 44px 36px; text-align: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 2px 14px rgba(30,49,80,.06);
}
.quiz-start-icon {
  width: 52px; height: 52px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,.12); border-radius: 50%;
  color: var(--gold); font-size: 15px;
}
.quiz-start-title {
  font-family: 'Playfair Display', serif; font-size: 25px; font-weight: 400;
  color: var(--navy); margin-bottom: 10px;
}
.quiz-start-desc {
  font-size: 14.5px; line-height: 1.75; color: var(--muted);
  max-width: 470px; margin: 0 auto 20px;
}
.quiz-start-meta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 26px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--navy);
}
.quiz-start-meta span:nth-child(even) { color: var(--gold); }
.quiz-start-btn { border: none; cursor: pointer; }

.quiz-final[hidden] { display: none; }
.quiz-final.visible { animation: quizIn .4s ease; }
@keyframes quizIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-final { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.quiz-container {
  background: var(--white); padding: 24px 26px; border-radius: 10px;
  border: 1px solid var(--line);
}
.quiz-question {
  font-family: 'Playfair Display', serif; font-size: 17px;
  color: var(--navy); margin-bottom: 16px; font-weight: 600; line-height: 1.4;
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  background: var(--off); padding: 14px 16px; border-radius: 8px;
  cursor: pointer; transition: all .2s; border: 1px solid var(--line);
  border-left: 4px solid var(--line); color: var(--muted); font-size: 14.5px;
}
.quiz-option:hover { border-color: var(--gold); border-left-color: var(--gold); color: var(--navy); transform: translateX(4px); }
.quiz-option.selected { border-color: var(--gold); border-left-color: var(--gold); background: rgba(201,168,76,.08); color: var(--navy); font-weight: 600; }
.quiz-option.correct { background: #ebf5ee; border-color: var(--ok); border-left-color: var(--ok); color: #2e7d54; font-weight: 600; }
.quiz-option.incorrect { background: #fbeceb; border-color: var(--erro); border-left-color: var(--erro); color: var(--erro); font-weight: 600; }

.quiz-actions { margin-top: 4px; }
.btn-success {
  background: var(--navy); color: #fff; border: none;
  padding: 14px 28px; font-size: 13px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif;
  border-radius: 4px; cursor: pointer; transition: all .25s;
}
.btn-success:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15,27,46,.25); }

.quiz-feedback {
  padding: 14px 18px; border-radius: 8px;
  font-weight: 600; font-size: 14px; display: none;
}
.quiz-feedback.show { display: block; }
.quiz-feedback.correct { background: #ebf5ee; color: #2e7d54; border-left: 4px solid var(--ok); }
.quiz-feedback.incorrect { background: #fbeceb; color: var(--erro); border-left: 4px solid var(--erro); }

/* Botão de certificado bloqueado até aprovação no quiz */
.cert-btn.locked { opacity: .55; }
.cert-btn.locked:hover { transform: none; box-shadow: none; }
.cert-lock-note {
  font-size: 13px; color: #c3cbd9; font-style: italic; text-align: center; max-width: 420px;
}

/* ─── RESPONSIVO ─── */
@media (max-width: 980px) {
  .hero { padding: 56px 20px 110px; }
  .destaques { margin-top: -64px; }
  .oque-inner, .modelo-inner { grid-template-columns: 1fr; gap: 40px; }
  .garantias { padding-top: 0; }
  .paraquem-grid { grid-template-columns: 1fr; }
  .como-steps { grid-template-columns: 1fr 1fr; }

  /* Memória & DISC */
  .mem-grid { grid-template-columns: 1fr; }
  .hemi-grid { grid-template-columns: 1fr; }
  .perfil-grid { grid-template-columns: 1fr; }
  .perfil-resumo { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav-back { display: none; }
  .como-steps { grid-template-columns: 1fr; }
  .hero-title { font-size: 30px; }
  footer { flex-direction: column; text-align: center; }
}
