/* ── HERO ── */
.priv-hero {
  min-height: 45vh;
  display: flex; align-items: center; justify-content: center;
  padding: 10rem 4rem 5rem;
  background: linear-gradient(155deg, var(--lilas-soft) 0%, var(--branco) 65%);
  text-align: center;
}
.priv-hero-inner { max-width: 700px; }
.priv-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 1rem 0 1.2rem;
}
.priv-sub {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--texto-suave); margin-bottom: 1.5rem;
}
.priv-meta {
  display: flex; gap: 1.5rem; justify-content: center;
  flex-wrap: wrap; font-size: 0.82rem;
  color: var(--texto-suave); font-weight: 600;
}

/* ── ÍNDICE ── */
.priv-indice {
  padding: 3rem 4rem;
  background: var(--pessego-soft);
}
.priv-inner { max-width: 860px; margin: 0 auto; }
.priv-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.indice-lista {
  columns: 2; gap: 2rem;
  padding-left: 1.5rem;
}
.indice-lista li { margin-bottom: 0.6rem; }
.indice-lista a {
  color: var(--lilas-deep); font-weight: 600;
  font-size: 0.9rem; text-decoration: none;
  transition: text-decoration 0.2s;
}
.indice-lista a:hover { text-decoration: underline; }

/* ── CONTEÚDO ── */
.priv-conteudo { padding: 4rem; }
.priv-bloco {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--lilas-soft);
}
.priv-bloco:last-child { border-bottom: none; }
.priv-bloco.destaque-especial {
  background: var(--lilas-soft);
  border-radius: 24px;
  padding: 2.5rem;
  margin: 1rem 0;
  grid-template-columns: 60px 1fr;
  border-bottom: none;
}
.priv-bloco-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--lilas);
  line-height: 1; padding-top: 0.3rem;
}
.priv-bloco-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; margin-bottom: 1rem;
  color: var(--texto);
}
.priv-bloco-body h3 {
  font-size: 1rem; font-weight: 700;
  margin: 1.2rem 0 0.5rem;
  color: var(--texto);
}
.priv-bloco-body p {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--texto-suave); margin-bottom: 0.8rem;
}
.priv-bloco-body a {
  color: var(--lilas-deep); font-weight: 600;
  text-decoration: none;
}
.priv-bloco-body a:hover { text-decoration: underline; }

/* Listas */
.priv-lista {
  padding-left: 1.2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  margin: 0.8rem 0;
}
.priv-lista li {
  font-size: 0.92rem; color: var(--texto-suave); line-height: 1.6;
}
.priv-lista li strong { color: var(--texto); }

/* Destaques */
.priv-destaque {
  background: white;
  border-radius: 16px; padding: 1.2rem 1.5rem;
  font-size: 0.9rem; line-height: 1.8;
  border-left: 4px solid var(--lilas-deep);
  margin-top: 1rem;
}
.priv-aviso {
  border-radius: 12px; padding: 1rem 1.5rem;
  font-size: 0.88rem; font-weight: 600;
  margin-top: 1.2rem; line-height: 1.6;
}
.priv-aviso.verde  { background: #E8F5E9; color: #2E7D32; }
.priv-aviso.lilas  { background: var(--lilas-soft); color: var(--lilas-deep); }

/* Tabela */
.priv-tabela { margin-top: 1rem; border-radius: 16px; overflow: hidden; }
.priv-tabela-row {
  display: grid; grid-template-columns: 1fr 1.5fr 1fr;
  padding: 0.8rem 1.2rem; gap: 1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--lilas-soft);
}
.priv-tabela-row:last-child { border-bottom: none; }
.priv-tabela-row.header {
  background: var(--lilas-soft);
  font-weight: 700; color: var(--texto);
  font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.priv-tabela-row:not(.header) {
  background: white; color: var(--texto-suave);
}
.priv-tabela-row:not(.header):nth-child(even) {
  background: var(--pessego-soft);
}

/* Tabela retenção — 2 colunas */
.priv-tabela-row.header:has(+ .priv-tabela-row div:nth-child(2):last-child),
.priv-tabela .priv-tabela-row:nth-child(n):has(:nth-child(2):last-child) {
  grid-template-columns: 1fr 1fr;
}

/* Direitos */
.direitos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 1.5rem;
}
.direito-card {
  background: white; border-radius: 16px;
  padding: 1.2rem; text-align: center;
  border: 1.5px solid var(--lilas-soft);
}
.direito-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.direito-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.direito-card p  { font-size: 0.8rem; color: var(--texto-suave); line-height: 1.5; }

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  .priv-hero    { padding: 8rem 1.5rem 3rem; }
  .priv-indice  { padding: 2rem 1.5rem; }
  .indice-lista { columns: 1; }
  .priv-conteudo { padding: 2rem 1.5rem; }
  .priv-bloco   { grid-template-columns: 1fr; gap: 0.5rem; }
  .priv-bloco.destaque-especial { grid-template-columns: 1fr; }
  .priv-bloco-num { font-size: 1.5rem; }
  .priv-tabela-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .priv-tabela-row.header { display: none; }
  .direitos-grid { grid-template-columns: 1fr 1fr; }
}