/* ═══════════════════════════ comparativo.css ═══════════════════════════ */

.comparativo-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 56px;
}
.comparativo-copy h2 { margin-bottom: 16px; }
.comparativo-copy p { color: var(--text-dim); margin-bottom: 26px; }

.comparativo-table {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.ct-head, .ct-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  align-items: stretch;
}
.ct-head {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.ct-head span {
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-head .ct-col-label { background: transparent; }
.ct-head .ct-fin { color: var(--text-dim); }
.ct-head .ct-con {
  background: var(--grad-brand);
  color: #fff;
  letter-spacing: .02em;
}

.ct-row { border-bottom: 1px solid var(--border-soft); }
.ct-row:last-child { border-bottom: 0; }
.ct-row > span {
  padding: 14px 16px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ct-feature {
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-soft);
  font-size: 0.82rem !important;
}
.ct-row .ct-fin { color: var(--text-dim); }
.ct-row .ct-con { color: var(--ink); background: rgba(58,170,53,.05); }

.ct-row i {
  flex-shrink: 0;
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 700;
}
.ct-row i.x { background: rgba(230,57,70,.12); color: var(--red-deep); }
.ct-row i.v { background: rgba(58,170,53,.16); color: var(--green-deep); }

@media (max-width: 900px) {
  .comparativo-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .ct-head, .ct-row { grid-template-columns: 1fr; }
  .ct-head { display: none; }
  .ct-row {
    padding: 14px 16px;
    gap: 6px;
    border-bottom: 8px solid var(--bg-soft);
  }
  .ct-row > span { padding: 4px 0; font-size: 0.9rem; }
  .ct-feature { background: transparent; font-size: 0.78rem !important; text-transform: uppercase; letter-spacing: .05em; color: var(--text-mute); }
  .ct-row .ct-con { background: transparent; }
}
