/* ======================================
   POLÍTICA DE PRIVACIDADE — Estilos
   Arquivo: css/personalizados/politica-privacidade.css
   ====================================== */

:root {
  --pp-primary:      #1a3c5e;
  --pp-accent:       #2e7eed;
  --pp-accent-light: #e8f1fd;
  --pp-text:         #2d3748;
  --pp-muted:        #718096;
  --pp-border:       #e2e8f0;
  --pp-bg:           #f7f9fc;
  --pp-white:        #ffffff;
  --pp-radius:       12px;
}

/* ── HERO ── */
.pp-hero {
  background: linear-gradient(135deg, var(--pp-primary) 0%, #0f2440 100%);
  color: var(--pp-white);
  padding: 130px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(46,126,237,.25) 0%, transparent 65%);
}
.pp-hero-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.pp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pp-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.pp-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  margin: 0 auto;
}

/* ── WAVE DIVIDER ── */
.pp-wave {
  display: block;
  background: var(--pp-primary);
  line-height: 0;
}
.pp-wave svg {
  display: block;
  width: 100%;
}

/* ── WRAPPER ── */
.pp-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* ── TOC ── */
.pp-toc {
  background: var(--pp-white);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.pp-toc-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pp-muted);
  margin-bottom: 14px;
}
.pp-toc ol {
  list-style: none;
  counter-reset: toc;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 24px;
  padding: 0;
  margin: 0;
}
.pp-toc ol li {
  counter-increment: toc;
}
.pp-toc ol li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pp-accent);
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s;
}
.pp-toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: .75rem;
  font-weight: 700;
  color: var(--pp-muted);
  min-width: 24px;
}
.pp-toc ol li a:hover {
  color: var(--pp-primary);
}

/* ── SECTION ── */
.pp-section {
  margin-bottom: 56px;
}
.pp-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.pp-section-icon {
  width: 44px;
  height: 44px;
  background: var(--pp-accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-section-icon svg {
  width: 22px;
  height: 22px;
  color: var(--pp-accent);
}
.pp-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pp-primary);
  margin: 0;
}

/* ── CARDS ── */
.pp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.pp-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  padding: 24px;
  transition: box-shadow .2s, transform .2s;
}
.pp-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.pp-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pp-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pp-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pp-accent);
  flex-shrink: 0;
}
.pp-card p {
  font-size: .92rem;
  color: var(--pp-muted);
  margin: 0;
}

/* ── TERMS ── */
.pp-terms {
  background: var(--pp-white);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  overflow: hidden;
}
.pp-terms-item {
  padding: 24px 28px;
  border-bottom: 1px solid var(--pp-border);
}
.pp-terms-item:last-child {
  border-bottom: none;
}
.pp-terms-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pp-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--pp-accent-light);
  color: var(--pp-accent);
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
}
.pp-terms-item p {
  font-size: .93rem;
  color: var(--pp-muted);
  margin: 0 0 0 36px;
}

/* ── BING NOTE ── */
.pp-bing {
  margin-top: 24px;
  padding: 14px 20px;
  background: var(--pp-accent-light);
  border-left: 4px solid var(--pp-accent);
  border-radius: 0 8px 8px 0;
  font-size: .87rem;
  color: var(--pp-muted);
}
.pp-bing a {
  color: var(--pp-accent);
  font-weight: 600;
  text-decoration: none;
}
.pp-bing a:hover {
  text-decoration: underline;
}

/* ── FOOTER CARD CTA ── */
.pp-footer-card {
  background: linear-gradient(135deg, var(--pp-primary), #163354);
  color: var(--pp-white);
  border-radius: var(--pp-radius);
  padding: 36px 40px;
  text-align: center;
  margin-top: 48px;
}
.pp-footer-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.pp-footer-card p {
  color: rgba(255,255,255,.75);
  font-size: .93rem;
  margin-bottom: 20px;
}
.pp-footer-card a {
  display: inline-block;
  background: var(--pp-accent);
  color: var(--pp-white);
  text-decoration: none;
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s;
}
.pp-footer-card a:hover {
  background: #1a69d4;
}

/* ── RESPONSIVO ── */
@media (max-width: 600px) {
  .pp-wrapper     { padding: 36px 16px 60px; }
  .pp-toc         { padding: 20px; }
  .pp-terms-item  { padding: 18px 20px; }
  .pp-footer-card { padding: 28px 20px; }
  .pp-cards       { grid-template-columns: 1fr; }
}