/* =========================================================
   Comparador de Corretoras — Design premium
   Todos os seletores scoped dentro de .lcr-cmp-wrapper
   ========================================================= */

/* ── @property para animação smooth do ring ─────────────── */
@property --lcr-pct {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

/* ── Tokens locais ───────────────────────────────────────── */
.lcr-cmp-wrapper {
  --cmp-gold:        #efd7a0;
  --cmp-gold-a12:    rgba(239,215,160,.12);
  --cmp-gold-a20:    rgba(239,215,160,.20);
  --cmp-gold-a45:    rgba(239,215,160,.45);
  --cmp-gold-glow:   rgba(239,215,160,.14);
  --cmp-card-bg:     rgba(16,21,28,.88);
  --cmp-border:      rgba(239,215,160,.11);
  --cmp-green:       #4ade80;
  --cmp-red:         #fca5a5;
  --cmp-txt:         #e6e8eb;
  --cmp-muted:       #8a939e;
  --cmp-radius:      clamp(14px,2vw,20px);
  --cmp-ring-c:      238.76;
  padding: 0;
}

/* ── Tipografia ──────────────────────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-main-titulo {
  font-size: clamp(1.5rem,3vw+.5rem,2.1rem);
  font-weight: 900;
  font-family: Akrobat,system-ui,sans-serif;
  color: var(--cmp-txt);
  margin: 0 0 32px;
  letter-spacing: -.01em;
}

.lcr-cmp-wrapper .lcr-cmp-sec-title {
  font-size: clamp(.75rem,1.2vw+.3rem,.9rem);
  font-weight: 700;
  font-family: Akrobat,system-ui,sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cmp-gold);
  margin: 0 0 18px;
}

.lcr-cmp-wrapper .lcr-cmp-section {
  margin-bottom: clamp(32px,6vw,56px);
}

/* ── HERO ────────────────────────────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-hero {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: clamp(12px,2.5vw,24px);
  align-items: center;
  margin-bottom: clamp(32px,6vw,56px);
}

/* ── Broker card ─────────────────────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(10px,2vw,14px);
  padding: clamp(16px,3.5vw,28px) clamp(14px,3vw,24px);
  border-radius: var(--cmp-radius);
  background: var(--cmp-card-bg);
  border: 1px solid var(--cmp-border);
  border-top: 4px solid var(--card-top-color, rgba(239,215,160,.18));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0,0,0,.38);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
  animation: lcr-card-in .5s ease both;
}

.lcr-cmp-wrapper .lcr-cmp-hero .lcr-cmp-card:first-child { animation-delay: .05s; }
.lcr-cmp-wrapper .lcr-cmp-hero .lcr-cmp-card:last-child  { animation-delay: .15s; }

@keyframes lcr-card-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lcr-cmp-wrapper .lcr-cmp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}

/* Winner */
.lcr-cmp-wrapper .lcr-cmp-card--winner {
  border-color: var(--cmp-gold-a45);
  border-top-color: var(--cmp-gold);
  background: radial-gradient(ellipse 80% 55% at 50% -5%,rgba(239,215,160,.1) 0%,transparent 65%), var(--cmp-card-bg);
  box-shadow:
    0 0 0 1px rgba(239,215,160,.28),
    0 0 64px -8px rgba(239,215,160,.22),
    0 8px 32px rgba(0,0,0,.38);
}

.lcr-cmp-wrapper .lcr-cmp-card--winner:hover {
  box-shadow:
    0 0 0 1px rgba(239,215,160,.36),
    0 0 80px -6px rgba(239,215,160,.28),
    0 16px 48px rgba(0,0,0,.5);
}

/* Winner banner */
.lcr-cmp-wrapper .lcr-cmp-winner-banner {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 7px 10px;
  background: linear-gradient(90deg,rgba(239,215,160,.18) 0%,rgba(239,215,160,.05) 70%,transparent 100%);
  border-bottom: 1px solid var(--cmp-gold-a20);
  font-size: .7rem;
  font-weight: 700;
  font-family: Akrobat,system-ui,sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cmp-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.lcr-cmp-wrapper .lcr-cmp-trophy {
  width: 14px;
  height: 14px;
  color: var(--cmp-gold);
  flex-shrink: 0;
}

/* Espaço para banner/badge */
.lcr-cmp-wrapper .lcr-cmp-card--winner .lcr-cmp-logo-circle,
.lcr-cmp-wrapper .lcr-cmp-card--winner .lcr-cmp-badge-wrap {
  margin-top: 22px;
}

.lcr-cmp-wrapper .lcr-cmp-badge-wrap {
  min-height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lcr-cmp-wrapper .lcr-cmp-badge-wrap--empty { min-height: 0; }

.lcr-cmp-wrapper .lcr-cmp-badge {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 999px;
  background: var(--cmp-gold-a12);
  border: 1px solid var(--cmp-gold-a20);
  color: var(--cmp-gold);
  font-size: .68rem;
  font-weight: 700;
  font-family: Akrobat,system-ui,sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Logo circle */
.lcr-cmp-wrapper .lcr-cmp-logo-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(10,14,20,.9);
  border: 1.5px solid var(--cmp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.lcr-cmp-wrapper .lcr-cmp-card--winner .lcr-cmp-logo-circle {
  border-color: var(--cmp-gold-a45);
  box-shadow: 0 0 16px rgba(239,215,160,.15);
}

.lcr-cmp-wrapper .lcr-cmp-logo-circle .lcr-cmp-logo {
  max-width: 58px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lcr-cmp-wrapper .lcr-cmp-brk-name {
  font-size: clamp(.92rem,2vw,1.05rem);
  font-weight: 700;
  font-family: Akrobat,system-ui,sans-serif;
  color: var(--cmp-txt);
  letter-spacing: .01em;
}

.lcr-cmp-wrapper .lcr-cmp-name-fallback {
  font-size: clamp(.78rem,2vw,.95rem);
  font-weight: 900;
  font-family: Akrobat,system-ui,sans-serif;
  color: var(--cmp-txt);
  text-align: center;
  padding: 4px;
}

/* ── Score ring ──────────────────────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-ring-wrap {
  position: relative;
  width: clamp(130px,18vw,160px);
  height: clamp(130px,18vw,160px);
  flex-shrink: 0;
}

.lcr-cmp-wrapper .lcr-cmp-ring {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.lcr-cmp-wrapper .lcr-cmp-ring-track {
  fill: none;
  stroke: rgba(239,215,160,.1);
  stroke-width: 7;
}

.lcr-cmp-wrapper .lcr-cmp-ring-fill {
  fill: none;
  stroke: var(--cmp-gold);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: calc(var(--lcr-pct) * 238.76) calc(238.76 - var(--lcr-pct) * 238.76);
  animation: lcr-ring-draw 1.4s cubic-bezier(.4,0,.15,1) .3s forwards;
  opacity: .88;
}

.lcr-cmp-wrapper .lcr-cmp-ring--winner .lcr-cmp-ring-fill {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(239,215,160,.7));
}

@keyframes lcr-ring-draw {
  from { --lcr-pct: 0; }
  to   { --lcr-pct: var(--lcr-target, 0); }
}

.lcr-cmp-wrapper .lcr-cmp-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  pointer-events: none;
}

.lcr-cmp-wrapper .lcr-cmp-score-num {
  font-size: clamp(2rem,5vw,2.8rem);
  font-weight: 900;
  font-family: Akrobat,system-ui,sans-serif;
  color: var(--cmp-gold);
  line-height: 1;
  letter-spacing: -.02em;
}

.lcr-cmp-wrapper .lcr-cmp-score-max {
  font-size: clamp(.62rem,1.5vw,.78rem);
  font-weight: 700;
  color: var(--cmp-muted);
  line-height: 1;
  margin-top: 1px;
}

/* Stars */
.lcr-cmp-wrapper .lcr-cmp-stars {
  font-size: clamp(.85rem,2vw,1rem);
  display: flex;
  gap: 1px;
  justify-content: center;
}

.lcr-cmp-wrapper .lcr-cmp-stars-filled { color: var(--cmp-gold); }
.lcr-cmp-wrapper .lcr-cmp-stars-half   { color: var(--cmp-gold); opacity: .4; }
.lcr-cmp-wrapper .lcr-cmp-stars-empty  { color: rgba(255,255,255,.12); }

/* Quick stats */
.lcr-cmp-wrapper .lcr-cmp-quick-stats {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.lcr-cmp-wrapper .lcr-cmp-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: clamp(.72rem,1.5vw,.82rem);
  color: var(--cmp-muted);
  line-height: 1.3;
}

.lcr-cmp-wrapper .lcr-cmp-stat-icon { font-size: .9rem; line-height: 1; flex-shrink: 0; }

/* Tagline */
.lcr-cmp-wrapper .lcr-cmp-tagline {
  font-size: clamp(.78rem,1.5vw,.88rem);
  color: var(--cmp-muted);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

/* CTA */
.lcr-cmp-wrapper .lcr-cmp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: clamp(9px,2vw,12px) 16px;
  border-radius: 10px;
  border: 1.5px solid var(--cmp-gold-a45);
  background: transparent;
  color: var(--cmp-gold);
  font-weight: 700;
  font-family: Akrobat,system-ui,sans-serif;
  font-size: clamp(.82rem,2vw,.95rem);
  text-align: center;
  text-decoration: none;
  letter-spacing: .03em;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  margin-top: auto;
}

.lcr-cmp-wrapper .lcr-cmp-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

.lcr-cmp-wrapper .lcr-cmp-cta:hover {
  background: var(--cmp-gold);
  color: #0c1014;
  border-color: var(--cmp-gold);
  text-decoration: none;
}

/* ── Coluna VS central ───────────────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-vs-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 0;
  animation: lcr-card-in .5s ease .1s both;
}

.lcr-cmp-wrapper .lcr-cmp-vs {
  width: clamp(40px,6vw,52px);
  height: clamp(40px,6vw,52px);
  border-radius: 50%;
  background: #0c1014;
  border: 1px solid var(--cmp-border);
  box-shadow: 0 0 20px rgba(239,215,160,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(.65rem,1.5vw,.78rem);
  font-weight: 900;
  font-family: Akrobat,system-ui,sans-serif;
  letter-spacing: .04em;
  color: var(--cmp-gold);
  flex-shrink: 0;
}

/* Score duel bars */
.lcr-cmp-wrapper .lcr-cmp-score-duel {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  align-items: center;
}

.lcr-cmp-wrapper .lcr-cmp-duel-bar {
  width: clamp(28px,4vw,38px);
  height: 80px;
  border-radius: 4px;
  background: rgba(255,255,255,.05);
  overflow: hidden;
  position: relative;
}

.lcr-cmp-wrapper .lcr-cmp-duel-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 4px;
  height: var(--pct, 0%);
  transition: height 1s cubic-bezier(.4,0,.2,1) .5s;
}

.lcr-cmp-wrapper .lcr-cmp-duel-fill--b1 {
  background: linear-gradient(to top, rgba(239,215,160,.6), rgba(239,215,160,.25));
}

.lcr-cmp-wrapper .lcr-cmp-duel-fill--b2 {
  background: linear-gradient(to top, var(--cmp-gold), rgba(239,215,160,.5));
}

/* ── Grid comparativo ───────────────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-grid {
  border-radius: var(--cmp-radius);
  border: 1px solid var(--cmp-border);
  background: var(--cmp-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.lcr-cmp-wrapper .lcr-cmp-grid-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 14px 20px;
  background: rgba(239,215,160,.04);
  border-bottom: 1px solid var(--cmp-border);
  gap: 12px;
  align-items: center;
}

.lcr-cmp-wrapper .lcr-cmp-grid-feat-col {
  font-size: .75rem;
  font-weight: 700;
  font-family: Akrobat,system-ui,sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cmp-muted);
}

.lcr-cmp-wrapper .lcr-cmp-grid-brk-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 700;
  font-family: Akrobat,system-ui,sans-serif;
  text-align: center;
}

.lcr-cmp-wrapper .lcr-cmp-grid-brk-logo {
  max-width: 120px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.lcr-cmp-wrapper .lcr-cmp-grid-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  gap: 12px;
  align-items: center;
  transition: background .15s ease;
}

.lcr-cmp-wrapper .lcr-cmp-grid-row:last-child { border-bottom: none; }

.lcr-cmp-wrapper .lcr-cmp-grid-row:hover { background: rgba(255,255,255,.028); }

.lcr-cmp-wrapper .lcr-cmp-grid-row--dest { background: rgba(239,215,160,.05); }
.lcr-cmp-wrapper .lcr-cmp-grid-row--dest:hover { background: rgba(239,215,160,.08); }

.lcr-cmp-wrapper .lcr-cmp-grid-feat {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.lcr-cmp-wrapper .lcr-cmp-grid-icon { display: inline-flex; align-items: center; flex-shrink: 0; }
.lcr-cmp-wrapper .lcr-cmp-grid-icon svg { width: 18px; height: 18px; color: rgba(239,215,160,.55); }

.lcr-cmp-wrapper .lcr-cmp-grid-label { font-size: .92rem; font-weight: 500; color: var(--cmp-txt); line-height: 1.4; }

.lcr-cmp-wrapper .lcr-cmp-grid-nota {
  flex-basis: 100%;
  font-size: .72rem;
  color: var(--cmp-muted);
  font-style: italic;
  line-height: 1.3;
}

.lcr-cmp-wrapper .lcr-cmp-grid-val {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}

.lcr-cmp-wrapper .lcr-cmp-grid-val-main {
  font-size: clamp(.78rem, 1.4vw, .86rem);
  font-weight: 400;
  color: var(--cmp-txt);
  line-height: 1.4;
}

.lcr-cmp-wrapper .lcr-cmp-grid-val-sub {
  font-size: .72rem;
  color: var(--cmp-muted);
  line-height: 1.3;
}

.lcr-cmp-wrapper .lcr-cmp-grid-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(239,215,160,.1);
  border: 1px solid rgba(239,215,160,.22);
  color: var(--cmp-gold);
  font-size: .75rem;
  font-weight: 700;
  font-family: Akrobat,system-ui,sans-serif;
  letter-spacing: .03em;
}

/* ── Prós & Contras ──────────────────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px,2.5vw,20px);
}

.lcr-cmp-wrapper .lcr-cmp-pc-card {
  border-radius: var(--cmp-radius);
  background: var(--cmp-card-bg);
  border: 1px solid var(--cmp-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: clamp(14px,3vw,22px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lcr-cmp-wrapper .lcr-cmp-pc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cmp-border);
}

.lcr-cmp-wrapper .lcr-cmp-pc-logo {
  max-width: 64px;
  max-height: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lcr-cmp-wrapper .lcr-cmp-pc-name {
  font-size: .88rem;
  font-weight: 700;
  font-family: Akrobat,system-ui,sans-serif;
  color: var(--cmp-txt);
}

.lcr-cmp-wrapper .lcr-cmp-pros-list,
.lcr-cmp-wrapper .lcr-cmp-cons-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lcr-cmp-wrapper .lcr-cmp-pros-list li,
.lcr-cmp-wrapper .lcr-cmp-cons-list li {
  font-size: clamp(.78rem,1.5vw,.86rem);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: var(--cmp-txt);
}

.lcr-cmp-wrapper .lcr-cmp-pros-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cmp-green);
  font-weight: 700;
}

.lcr-cmp-wrapper .lcr-cmp-cons-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--cmp-red);
  font-weight: 700;
}

/* ── Veredito ────────────────────────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-verdict {
  border-radius: var(--cmp-radius);
  border: 1px solid var(--cmp-gold-a20);
  background: linear-gradient(135deg,rgba(239,215,160,.1) 0%,rgba(239,215,160,.03) 50%,transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: clamp(24px,5vw,40px) clamp(20px,4vw,36px);
}

.lcr-cmp-wrapper .lcr-cmp-verdict-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  font-family: Akrobat,system-ui,sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cmp-gold);
  margin-bottom: 12px;
}

.lcr-cmp-wrapper .lcr-cmp-verdict-inner {
  display: flex;
  align-items: center;
  gap: clamp(12px,2.5vw,24px);
  flex-wrap: wrap;
}

.lcr-cmp-wrapper .lcr-cmp-verdict-logo {
  max-width: 90px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.lcr-cmp-wrapper .lcr-cmp-verdict-name-text {
  font-size: 1.1rem;
  font-weight: 900;
  font-family: Akrobat,system-ui,sans-serif;
  color: var(--cmp-gold);
  flex-shrink: 0;
}

.lcr-cmp-wrapper .lcr-cmp-verdict-body {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lcr-cmp-wrapper .lcr-cmp-verdict-name {
  font-size: clamp(1.1rem,2.5vw,1.4rem);
  font-weight: 900;
  font-family: Akrobat,system-ui,sans-serif;
  color: var(--cmp-txt);
}

.lcr-cmp-wrapper .lcr-cmp-verdict-tagline {
  font-size: clamp(.75rem,1.5vw,.85rem);
  color: var(--cmp-muted);
  margin: 0;
  line-height: 1.4;
}

.lcr-cmp-wrapper .lcr-cmp-verdict-score-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}

.lcr-cmp-wrapper .lcr-cmp-verdict-score-num {
  font-size: clamp(2.4rem,6vw,3.4rem);
  font-weight: 900;
  font-family: Akrobat,system-ui,sans-serif;
  color: var(--cmp-gold);
  line-height: 1;
}

.lcr-cmp-wrapper .lcr-cmp-verdict-score-max {
  font-size: .9rem;
  font-weight: 700;
  color: var(--cmp-muted);
  padding-bottom: .15em;
}

.lcr-cmp-wrapper .lcr-cmp-verdict-cta {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1.5px solid var(--cmp-gold-a45);
  background: transparent;
  color: var(--cmp-gold);
  font-weight: 700;
  font-family: Akrobat,system-ui,sans-serif;
  font-size: .9rem;
  text-decoration: none;
  letter-spacing: .03em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.lcr-cmp-wrapper .lcr-cmp-verdict-cta:hover {
  background: var(--cmp-gold);
  color: #0c1014;
  border-color: var(--cmp-gold);
  text-decoration: none;
}

/* ── CTA dupla ───────────────────────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px,2.5vw,20px);
  margin-top: clamp(20px,4vw,32px);
}

.lcr-cmp-wrapper .lcr-cmp-action-card {
  border-radius: var(--cmp-radius);
  background: var(--cmp-card-bg);
  border: 1px solid var(--cmp-border);
  border-top: 3px solid var(--brk-accent, var(--cmp-gold));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: clamp(18px,3vw,28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lcr-cmp-wrapper .lcr-cmp-action-card:hover {
  box-shadow: 0 0 24px -4px rgba(79,142,245,.22);
}

.lcr-cmp-wrapper .lcr-cmp-action-name {
  font-size: clamp(1rem,2.5vw,1.2rem);
  font-weight: 900;
  font-family: Akrobat,system-ui,sans-serif;
  color: var(--cmp-txt);
}

.lcr-cmp-wrapper .lcr-cmp-action-tagline {
  font-size: clamp(.75rem,1.5vw,.85rem);
  color: var(--cmp-muted);
  margin: 0;
  line-height: 1.5;
}

.lcr-cmp-wrapper .lcr-cmp-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(10px,2vw,13px) 16px;
  margin-top: auto;
  border-radius: 10px;
  background: var(--brk-accent, var(--cmp-gold));
  color: #0c1014;
  font-weight: 700;
  font-family: Akrobat,system-ui,sans-serif;
  font-size: clamp(.82rem,2vw,.95rem);
  text-decoration: none;
  letter-spacing: .02em;
  transition: opacity .2s ease, transform .1s ease;
}

.lcr-cmp-wrapper .lcr-cmp-action-btn:hover {
  opacity: .85;
  transform: translateY(-1px);
  text-decoration: none;
  color: #0c1014;
}

/* ── Erro ────────────────────────────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-erro {
  background: rgba(252,165,165,.09);
  border: 1px solid rgba(252,165,165,.38);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--cmp-red);
  font-size: .9rem;
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 680px) {
  .lcr-cmp-wrapper .lcr-cmp-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .lcr-cmp-wrapper .lcr-cmp-vs-col {
    flex-direction: row;
    gap: 8px;
    justify-content: center;
  }

  .lcr-cmp-wrapper .lcr-cmp-score-duel {
    flex-direction: row;
    gap: 5px;
  }

  .lcr-cmp-wrapper .lcr-cmp-duel-bar {
    width: 60px;
    height: clamp(26px,4vw,34px);
  }

  .lcr-cmp-wrapper .lcr-cmp-duel-fill {
    left: 0; top: 0; bottom: 0; right: auto;
    width: var(--pct, 0%);
    height: 100%;
    background: linear-gradient(to right, var(--from), var(--to));
  }

  .lcr-cmp-wrapper .lcr-cmp-duel-fill--b1 {
    --from: rgba(239,215,160,.35);
    --to: rgba(239,215,160,.6);
  }

  .lcr-cmp-wrapper .lcr-cmp-duel-fill--b2 {
    --from: rgba(239,215,160,.6);
    --to: var(--cmp-gold);
  }

  .lcr-cmp-wrapper .lcr-cmp-proscons-grid {
    grid-template-columns: 1fr;
  }

  .lcr-cmp-wrapper .lcr-cmp-grid-head,
  .lcr-cmp-wrapper .lcr-cmp-grid-row {
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 11px 13px;
    gap: 8px;
  }

  .lcr-cmp-wrapper .lcr-cmp-grid-label { font-size: .8rem; }
  .lcr-cmp-wrapper .lcr-cmp-grid-val-main { font-size: .8rem; }

  .lcr-cmp-wrapper .lcr-cmp-verdict-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .lcr-cmp-wrapper .lcr-cmp-verdict-cta {
    width: 100%;
    text-align: center;
  }

  .lcr-cmp-wrapper .lcr-cmp-cta-section {
    grid-template-columns: 1fr;
  }

  /* Ring menor em mobile */
  .lcr-cmp-wrapper .lcr-cmp-ring-wrap {
    width: clamp(116px, 32vw, 140px);
    height: clamp(116px, 32vw, 140px);
  }

  /* Score num mais compacto */
  .lcr-cmp-wrapper .lcr-cmp-score-num { font-size: 2rem; }

  /* Título de secção legível */
  .lcr-cmp-wrapper .lcr-cmp-sec-title { font-size: .95rem; padding-left: 12px; }

  /* VS col compacta entre cards empilhados */
  .lcr-cmp-wrapper .lcr-cmp-vs-col { padding: 2px 0; margin: -4px 0; }

  /* Ícone da grid oculto para dar mais espaço à label */
  .lcr-cmp-wrapper .lcr-cmp-grid-icon { display: none; }

  /* Disclaimer compacto */
  .lcr-cmp-disclaimer { padding: 11px 13px; gap: 8px; }

  /* Sticky bar compacta */
  .lcr-cmp-wrapper .lcr-cmp-sticky-bar { padding: 8px 12px; margin-bottom: 20px; }
}

@media (max-width: 420px) {
  .lcr-faq-section .lcr-faq-a p { font-size: .82rem; }
  .lcr-cmp-wrapper .lcr-cmp-rating { width: 28px; height: 28px; font-size: .9rem; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .lcr-cmp-wrapper .lcr-cmp-card,
  .lcr-cmp-wrapper .lcr-cmp-vs-col,
  .lcr-cmp-wrapper .lcr-cmp-ring-fill,
  .lcr-cmp-wrapper .lcr-cmp-duel-fill,
  .lcr-cmp-wrapper .lcr-cmp-cta,
  .lcr-cmp-wrapper .lcr-cmp-verdict-cta {
    animation: none;
    transition: none;
  }

  .lcr-cmp-wrapper .lcr-cmp-ring-fill {
    stroke-dasharray: var(--lcr-fill) var(--lcr-gap);
  }
}

/* ═══════════════════════════════════════════════
   REDESIGN VISUAL — melhorias de impacto
   ═══════════════════════════════════════════════ */

/* ── Wrapper ───────────────────────────────────── */
.lcr-cmp-wrapper {
  --b1-accent: #4f8ef5;
  --b2-accent: #4ade80;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Barra sticky ──────────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10,14,20,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cmp-border);
  padding: 10px 16px;
  transform: translateY(-110%);
  pointer-events: none;
  transition: transform .3s ease;
}

.lcr-cmp-wrapper .lcr-cmp-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.lcr-cmp-wrapper .lcr-cmp-sticky-brk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-family: Akrobat, system-ui, sans-serif;
  font-size: .95rem;
  color: var(--cmp-txt);
}

.lcr-cmp-wrapper .lcr-cmp-sticky-brk img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.lcr-cmp-wrapper .lcr-cmp-sticky-brk--b1 { color: var(--b1-accent); }
.lcr-cmp-wrapper .lcr-cmp-sticky-brk--b2 { color: var(--b2-accent); }

.lcr-cmp-wrapper .lcr-cmp-sticky-vs {
  font-size: .7rem;
  font-weight: 900;
  font-family: Akrobat, system-ui, sans-serif;
  letter-spacing: .08em;
  color: var(--cmp-muted);
  padding: 3px 8px;
  border: 1px solid var(--cmp-border);
  border-radius: 999px;
}

/* ── Hero cards — altura uniforme e glow colorido ── */
.lcr-cmp-wrapper .lcr-cmp-card {
  min-height: 440px;
  justify-content: center;
}

/* Sem scores: altura ditada pelo conteúdo */
.lcr-cmp-wrapper .lcr-cmp-hero--no-scores .lcr-cmp-card {
  min-height: 0;
}

.lcr-cmp-wrapper .lcr-cmp-hero .lcr-cmp-card:first-child {
  box-shadow:
    0 8px 32px rgba(0,0,0,.38),
    0 0 56px -14px rgba(79,142,245,.22);
}

.lcr-cmp-wrapper .lcr-cmp-hero .lcr-cmp-card:last-child {
  box-shadow:
    0 8px 32px rgba(0,0,0,.38),
    0 0 56px -14px rgba(74,222,128,.22);
}

/* Winner card — glow dourado já existe, reforçar */
.lcr-cmp-wrapper .lcr-cmp-hero .lcr-cmp-card--winner {
  box-shadow:
    0 0 0 1px rgba(239,215,160,.28),
    0 0 72px -10px rgba(239,215,160,.3),
    0 8px 32px rgba(0,0,0,.4);
}

/* ── Score ring — maior ─────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-ring-wrap {
  width: clamp(148px, 20vw, 176px);
  height: clamp(148px, 20vw, 176px);
}

/* Actualizar dasharray para nova circumferência (r=44 → circ≈276.46) */
.lcr-cmp-wrapper .lcr-cmp-ring-fill {
  stroke-dasharray: calc(var(--lcr-pct) * var(--lcr-circ, 276.46))
                    calc(var(--lcr-circ, 276.46) - var(--lcr-pct) * var(--lcr-circ, 276.46));
  stroke-width: 7;
}

.lcr-cmp-wrapper .lcr-cmp-ring-track {
  stroke-width: 7;
}

.lcr-cmp-wrapper .lcr-cmp-score-num {
  font-size: clamp(2.2rem, 5.5vw, 3rem);
}

/* ── VS coluna — sem barras, círculo mais impactante ── */
.lcr-cmp-wrapper .lcr-cmp-score-duel { display: none; }

.lcr-cmp-wrapper .lcr-cmp-vs {
  width: clamp(54px, 7vw, 64px);
  height: clamp(54px, 7vw, 64px);
  font-size: clamp(.7rem, 1.8vw, .85rem);
  background: linear-gradient(145deg, #1a2030, #0c1014);
  border: 1px solid var(--cmp-gold-a20);
  box-shadow:
    0 0 28px rgba(239,215,160,.1),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.3);
}

/* ── Título principal ───────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-main-titulo {
  font-size: clamp(1.6rem, 3.2vw + .4rem, 2.3rem);
  margin-bottom: 40px;
  text-align: center;
}

/* ── Cabeçalhos de secção — linha accent ───────── */
.lcr-cmp-wrapper .lcr-cmp-sec-title {
  font-size: clamp(.8rem, 1.5vw + .15rem, 1rem);
  padding-left: 14px;
  position: relative;
  margin-bottom: 22px;
}

.lcr-cmp-wrapper .lcr-cmp-sec-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background: var(--cmp-gold);
  border-radius: 2px;
}

/* ── Tabela — accent colors no cabeçalho ───────── */
.lcr-cmp-wrapper .lcr-cmp-grid-brk-col:nth-child(2) {
  color: var(--b1-accent, #4f8ef5);
  border-top: 2px solid var(--b1-accent, #4f8ef5);
  padding-top: 12px;
  margin-top: -2px;
}

.lcr-cmp-wrapper .lcr-cmp-grid-brk-col:nth-child(3) {
  color: var(--b2-accent, #4ade80);
  border-top: 2px solid var(--b2-accent, #4ade80);
  padding-top: 12px;
  margin-top: -2px;
}

/* Chips de destaque mais visíveis */
.lcr-cmp-wrapper .lcr-cmp-grid-chip {
  padding: 5px 14px;
  font-size: .8rem;
  background: rgba(239,215,160,.16);
  border-color: rgba(239,215,160,.32);
  box-shadow: 0 0 14px -4px rgba(239,215,160,.28);
}

/* Valores principais da tabela ligeiramente maiores */
.lcr-cmp-wrapper .lcr-cmp-grid-val-main {
  font-size: clamp(.78rem, 1.4vw, .86rem);
  font-weight: 400;
}

/* ── Veredito — showstopper ─────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-verdict {
  background: linear-gradient(135deg,
    rgba(239,215,160,.13) 0%,
    rgba(239,215,160,.05) 45%,
    rgba(239,215,160,.01) 100%);
  border: 1px solid var(--cmp-gold-a45);
  box-shadow:
    0 0 0 1px rgba(239,215,160,.12),
    0 0 80px -18px rgba(239,215,160,.28),
    0 20px 48px rgba(0,0,0,.45);
  padding: clamp(28px, 5.5vw, 48px) clamp(22px, 4.5vw, 42px);
}

.lcr-cmp-wrapper .lcr-cmp-verdict-eyebrow {
  font-size: .72rem;
  letter-spacing: .18em;
  margin-bottom: 16px;
}

.lcr-cmp-wrapper .lcr-cmp-verdict-score-num {
  font-size: clamp(3rem, 8vw, 4.4rem);
  text-shadow: 0 0 32px rgba(239,215,160,.45);
}

.lcr-cmp-wrapper .lcr-cmp-verdict-name {
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
}

.lcr-cmp-wrapper .lcr-cmp-verdict-cta {
  padding: 13px 32px;
  background: var(--cmp-gold);
  color: #0c1014;
  border-color: var(--cmp-gold);
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(239,215,160,.28);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.lcr-cmp-wrapper .lcr-cmp-verdict-cta:hover {
  background: #f5e5b8;
  border-color: #f5e5b8;
  color: #0c1014;
  box-shadow: 0 6px 28px rgba(239,215,160,.42);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── Prós e Contras — lista mais espaçada ─────── */
.lcr-cmp-wrapper .lcr-cmp-pros-list li,
.lcr-cmp-wrapper .lcr-cmp-cons-list li {
  font-size: clamp(.82rem, 1.6vw, .92rem);
  padding-left: 22px;
  line-height: 1.6;
}

/* ── CTA section — botões mais impactantes ─────── */
.lcr-cmp-wrapper .lcr-cmp-cta-section {
  margin-top: clamp(24px, 4.5vw, 40px);
  gap: clamp(14px, 2.8vw, 22px);
}

.lcr-cmp-wrapper .lcr-cmp-action-card {
  padding: clamp(22px, 3.5vw, 32px);
  transition: transform .2s ease, box-shadow .2s ease;
}

.lcr-cmp-wrapper .lcr-cmp-action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}

.lcr-cmp-wrapper .lcr-cmp-action-name {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
}

.lcr-cmp-wrapper .lcr-cmp-action-btn {
  padding: 14px 20px;
  font-size: clamp(.9rem, 2.2vw, 1.02rem);
  font-weight: 900;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,.28);
  letter-spacing: .02em;
  transition: opacity .18s ease, transform .12s ease;
}

.lcr-cmp-wrapper .lcr-cmp-action-btn:hover {
  opacity: .88;
  transform: translateY(-2px);
  color: #0c1014;
  text-decoration: none;
}

/* ── Mobile overrides ───────────────────────────── */
@media (max-width: 680px) {
  .lcr-cmp-wrapper .lcr-cmp-card { min-height: 0; }
  .lcr-cmp-wrapper .lcr-cmp-sticky-inner { gap: 14px; }
  .lcr-cmp-wrapper .lcr-cmp-sticky-brk { font-size: .82rem; }
  .lcr-cmp-wrapper .lcr-cmp-verdict-cta { padding: 12px 20px; font-size: .92rem; }
}

/* ── Rating badges (bom / ok / mau) ─────────────────── */
.lcr-cmp-wrapper .lcr-cmp-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.lcr-cmp-wrapper .lcr-cmp-rating--bom {
  background: rgba(74,222,128,.15);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,.35);
}
.lcr-cmp-wrapper .lcr-cmp-rating--ok {
  background: rgba(251,191,36,.15);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,.35);
}
.lcr-cmp-wrapper .lcr-cmp-rating--mau {
  background: rgba(248,113,113,.15);
  color: #f87171;
  border: 1px solid rgba(248,113,113,.35);
}
.lcr-cmp-wrapper .lcr-cmp-grid-val:has(.lcr-cmp-rating) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.lcr-cmp-wrapper .lcr-cmp-grid-val:has(.lcr-cmp-rating) .lcr-cmp-grid-val-sub {
  text-align: center;
  font-size: .78rem;
  color: var(--cmp-muted);
}

/* ── Aviso legal (fora de .lcr-cmp-wrapper) ──────────── */
.lcr-cmp-disclaimer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid rgba(239,215,160,.35);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 28px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.lcr-cmp-disclaimer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(239,215,160,.55);
  margin-top: 1px;
}
.lcr-cmp-disclaimer p {
  margin: 0;
  font-size: .78rem;
  line-height: 1.55;
  color: #8a939e;
  text-align: left;
}
.lcr-cmp-disclaimer strong {
  color: rgba(239,215,160,.7);
  font-weight: 600;
}

/* ── FAQ accordion ───────────────────────────────────────────────────────────
   Scoped under .lcr-faq-section — o shortcode [lcr_faq] renderiza FORA de
   .lcr-cmp-wrapper, por isso os tokens CSS são declarados aqui diretamente.
   Usamos !important nas propriedades que o tema sobrepõe em <button>.
   ────────────────────────────────────────────────────────────────────────── */
.lcr-faq-section {
  --faq-gold:    #efd7a0;
  --faq-card-bg: rgba(16,21,28,.88);
  --faq-border:  rgba(239,215,160,.11);
  --faq-txt:     #e6e8eb;
  --faq-muted:   #8a939e;
  --faq-radius:  clamp(14px,2vw,20px);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(32px,5vw,48px);
  margin-bottom: clamp(32px,6vw,56px);
}

.lcr-faq-section .lcr-cmp-sec-title {
  font-size: clamp(.8rem,1.5vw + .15rem,1rem);
  font-weight: 700;
  font-family: Akrobat,system-ui,sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--faq-gold);
  margin: 0 0 22px;
  padding-left: 14px;
  position: relative;
}

.lcr-faq-section .lcr-cmp-sec-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background: var(--faq-gold);
  border-radius: 2px;
}

.lcr-faq-section .lcr-faq-list {
  border-radius: var(--faq-radius);
  border: 1px solid var(--faq-border);
  background: var(--faq-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.lcr-faq-section .lcr-faq-item {
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.lcr-faq-section .lcr-faq-item:last-child { border-bottom: none; }

/* !important necessário para anular estilos de <button> do tema */
.lcr-faq-section .lcr-faq-q {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 16px 20px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: auto !important;
  min-height: 0 !important;
  cursor: pointer;
  text-align: left;
  color: var(--faq-txt) !important;
  font-size: .92rem !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  line-height: 1.4;
  transition: background .15s ease;
}

.lcr-faq-section .lcr-faq-q:hover {
  background: rgba(255,255,255,.03) !important;
}

.lcr-faq-section .lcr-faq-q[aria-expanded="true"] {
  color: var(--faq-gold) !important;
}

/* !important para anular qualquer width/height herdado de svg do tema */
.lcr-faq-section .lcr-faq-chevron {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  display: block !important;
  flex-shrink: 0;
  color: var(--faq-muted);
  transition: transform .25s ease;
}

.lcr-faq-section .lcr-faq-q[aria-expanded="true"] .lcr-faq-chevron {
  transform: rotate(180deg);
  color: var(--faq-gold);
}

.lcr-faq-section .lcr-faq-a {
  padding: 0 20px 16px;
}

.lcr-faq-section .lcr-faq-a p {
  margin: 0;
  font-size: .88rem;
  color: var(--faq-muted);
  line-height: 1.65;
}

/* ── Focus visível (acessibilidade — navegação por teclado) ── */
.lcr-cmp-wrapper :focus-visible,
.lcr-faq-section :focus-visible {
  outline: 2px solid #efd7a0;
  outline-offset: 3px;
  border-radius: 4px;
}
/* ── Stat icons (SVG) ──────────────────────────────────── */
.lcr-cmp-stat-icon svg {
  width: 15px;
  height: 15px;
  vertical-align: middle;
  color: var(--cmp-muted);
  flex-shrink: 0;
}

/* ── Conclusão editorial ───────────────────────────────── */
.lcr-cmp-conclusao {
  --cmp-gold:   #efd7a0;
  --cmp-txt:    #e6e8eb;
  --cmp-muted:  #8a939e;
  margin-top: clamp(18px, 3vw, 32px);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.lcr-cmp-conclusao .lcr-cmp-conclusao-titulo {
  font-size: clamp(.8rem, 1.5vw + .15rem, 1rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cmp-gold);
  padding-left: 14px;
  position: relative;
  margin: 0 0 22px;
  line-height: 1.3;
}
.lcr-cmp-conclusao .lcr-cmp-conclusao-titulo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background: var(--cmp-gold);
  border-radius: 2px;
}
.lcr-cmp-conclusao .lcr-cmp-conclusao-corpo {
  color: var(--cmp-txt);
  font-size: clamp(0.85rem, 1.3vw, 0.93rem);
  line-height: 1.72;
  text-align: left;
}
.lcr-cmp-conclusao .lcr-cmp-conclusao-corpo p,
.lcr-cmp-conclusao .lcr-cmp-conclusao-corpo * { text-align: left; }
.lcr-cmp-conclusao .lcr-cmp-conclusao-corpo p { margin: 0 0 16px; }
.lcr-cmp-conclusao .lcr-cmp-conclusao-corpo p:last-child { margin-bottom: 0; }
.lcr-cmp-conclusao-footer {
  margin-top: 26px;
  text-align: center;
}
.lcr-cmp-conclusao-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(239,215,160,.08);
  border: 1px solid rgba(239,215,160,.45);
  border-radius: 999px;
  color: var(--cmp-gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s, border-color .18s, transform .15s;
}
.lcr-cmp-conclusao-link:hover {
  background: rgba(239,215,160,.16);
  border-color: var(--cmp-gold);
  transform: translateY(-1px);
}
.lcr-cmp-conclusao-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.lcr-cmp-wrapper :focus:not(:focus-visible),
.lcr-faq-section :focus:not(:focus-visible) {
  outline: none;
}

/* ── Sub-linhas expansíveis ───────────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-grid-row--expandable {
  cursor: pointer;
  user-select: none;
}
.lcr-cmp-wrapper .lcr-cmp-grid-row--expandable:hover {
  background: rgba(239,215,160,.06);
}
.lcr-cmp-wrapper .lcr-cmp-grid-row--dest.lcr-cmp-grid-row--expandable:hover {
  background: rgba(239,215,160,.1);
}
.lcr-cmp-wrapper .lcr-cmp-grid-row--expandable[aria-expanded="true"] {
  background: rgba(239,215,160,.07);
  border-bottom-color: rgba(239,215,160,.13);
}

/* Feat column — posição relativa para o chevron absoluto */
.lcr-cmp-wrapper .lcr-cmp-grid-row--expandable .lcr-cmp-grid-feat {
  position: relative;
  padding-right: 22px;
}

/* Chevron — sempre centrado verticalmente, fora do flow flex */
.lcr-cmp-wrapper .lcr-cmp-expand-chevron {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(239,215,160,.65);
  transition: transform .25s ease, color .25s ease;
}
.lcr-cmp-wrapper .lcr-cmp-grid-row--expandable[aria-expanded="true"] .lcr-cmp-expand-chevron {
  transform: translateY(-50%) rotate(180deg);
  color: var(--cmp-gold);
}

/* Painel — animação max-height (cross-browser) */
.lcr-cmp-wrapper .lcr-cmp-expand-panel {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s cubic-bezier(.4,0,.2,1);
}
.lcr-cmp-wrapper .lcr-cmp-grid-row--expandable[aria-expanded="true"] > .lcr-cmp-expand-panel {
  max-height: 600px;
  background: rgba(0,0,0,.14);
}
.lcr-cmp-wrapper .lcr-cmp-expand-inner {
  padding: 0 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lcr-cmp-wrapper .lcr-cmp-sub-row:last-child {
  padding-bottom: 0;
}

/* Sub-row */
.lcr-cmp-wrapper .lcr-cmp-sub-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  padding: 7px 0 7px 18px;
  border-top: 1px solid rgba(255,255,255,.05);
  align-items: center;
}
.lcr-cmp-wrapper .lcr-cmp-sub-row:first-child {
  border-top: 1px solid rgba(239,215,160,.1);
  margin-top: 4px;
}
.lcr-cmp-wrapper .lcr-cmp-sub-feat {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px 6px;
}
.lcr-cmp-wrapper .lcr-cmp-sub-label {
  font-size: .83rem;
  color: rgba(255,255,255,.72);
  line-height: 1.4;
}
.lcr-cmp-wrapper .lcr-cmp-sub-val {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}
.lcr-cmp-wrapper .lcr-cmp-sub-row .lcr-cmp-rating {
  width: 22px;
  height: 22px;
  font-size: .75rem;
}

.lcr-cmp-wrapper .lcr-cmp-sub-val .lcr-cmp-grid-val-sub {
  font-size: .73rem;
  color: rgba(255,255,255,.5);
}
.lcr-cmp-wrapper .lcr-cmp-sub-val .lcr-cmp-grid-val-main {
  font-size: .83rem;
  color: rgba(255,255,255,.72);
}

/* ── Divisores de secção ──────────────────────────────────── */
.lcr-cmp-wrapper .lcr-cmp-sec-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 12px;
  margin-top: 0;
  border-top: 1px solid rgba(239,215,160,.18);
  background: rgba(239,215,160,.04);
}
.lcr-cmp-wrapper .lcr-cmp-grid > .lcr-cmp-sec-divider:first-child {
  border-top: none;
  padding-top: 14px;
}
.lcr-cmp-wrapper .lcr-cmp-sec-divider-title {
  font-size: .84rem;
  font-weight: 800;
  font-family: Akrobat, system-ui, sans-serif;
  color: var(--cmp-gold);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.lcr-cmp-wrapper .lcr-cmp-sec-divider .lcr-cmp-grid-icon {
  opacity: .85;
  width: 16px;
  height: 16px;
}
.lcr-cmp-wrapper .lcr-cmp-sec-divider .lcr-cmp-grid-icon svg {
  width: 16px;
  height: 16px;
  color: var(--cmp-gold);
}

/* Mobile */
@media (max-width: 680px) {
  .lcr-cmp-wrapper .lcr-cmp-expand-inner { padding: 0 13px 12px; }
  .lcr-cmp-wrapper .lcr-cmp-sub-row {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 8px;
    padding: 7px 0 7px 12px;
  }
  .lcr-cmp-wrapper .lcr-cmp-sub-label { font-size: .76rem; }
  .lcr-cmp-wrapper .lcr-cmp-grid-row--expandable .lcr-cmp-grid-feat { padding-right: 16px; }
  .lcr-cmp-wrapper .lcr-cmp-expand-chevron { width: 12px; height: 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lcr-cmp-wrapper .lcr-cmp-expand-chevron { transition: none; }
  .lcr-cmp-wrapper .lcr-cmp-expand-panel { transition: none; }
}
