/* ============================================================
   ESTRELA HOME CARE — privacidade.css
   Estilos específicos da página de Política de Privacidade
   Depende do style.css principal (carregado antes)
============================================================ */

.pv-hero {
  background: var(--blue-deep);
  padding: 8rem 0 4rem;
}

.pv-hero__content .section-eyebrow {
  color: var(--gold);
}

.pv-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.pv-hero__subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.pv-conteudo {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--off-white);
}

.pv-texto {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.pv-bloco h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.pv-bloco p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

.pv-bloco p:last-child {
  margin-bottom: 0;
}

.pv-bloco ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.pv-bloco ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.7;
}

.pv-bloco ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.45rem;
  top: 0.5rem;
}

.pv-bloco a {
  color: var(--blue-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration) var(--ease);
}

.pv-bloco a:hover {
  color: var(--blue-deep);
}
