*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #060B16; --bg-2: #0A1224;
  --blue: #006EF2; --blue-soft: #3E9FFF; --cyan: #5EEAFF;
  --txt: #EAF0FA; --txt-2: rgba(234,240,250,.65); --txt-3: rgba(234,240,250,.38);
  --border: rgba(255,255,255,.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--txt); -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,11,22,.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 8%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo img { height: 36px; border-radius: 7px; }
.nav-logo span { font-family: 'Sora'; font-size: 16px; font-weight: 700; color: var(--txt); }
.nav-logo em { font-style: normal; font-weight: 300; color: var(--blue-soft); }
.nav-back {
  font-size: 13px; font-weight: 500; color: var(--txt-2);
  text-decoration: none; padding: 8px 16px; border-radius: 10px;
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s;
}
.nav-back:hover { color: var(--txt); border-color: var(--blue-soft); }

/* ── HERO ── */
.pp-hero {
  padding: 80px 8% 60px;
  background: radial-gradient(ellipse 70% 50% at 60% -10%, rgba(0,110,242,.14), transparent 55%), var(--bg);
  border-bottom: 1px solid var(--border);
}
.pp-hero .wrap { max-width: 1200px; margin: 0 auto; text-align: center; }
.pp-hero .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue-soft); margin-bottom: 18px;
}
.pp-hero .kicker::before { content: ''; width: 24px; height: 1.5px; background: var(--blue); display: inline-block; vertical-align: middle; }
.pp-hero h1 { font-family: 'Sora'; font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; }
.pp-hero h1 span { background: linear-gradient(110deg, var(--blue-soft), var(--cyan)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pp-hero .sub { font-size: 16px; line-height: 1.8; color: var(--txt-2); max-width: 680px; margin: 12px auto 0; }
.pp-hero .meta { font-size: 13px; color: var(--txt-3); margin-top: 16px; }

/* ── LAYOUT ── */
.pp-body { max-width: 1200px; margin: 0 auto; padding: 60px 8% 100px; }

/* ── SEÇÕES ── */
.pp-section { margin-bottom: 52px; }

.pp-section h2 {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Sora'; font-size: 19px; font-weight: 700; letter-spacing: -.4px;
  color: var(--txt); margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  font-size: 13px; font-weight: 700; color: #fff;
}

.pp-section p { font-size: 15px; line-height: 1.85; color: var(--txt-2); margin-bottom: 14px; }
.pp-section p:last-child { margin-bottom: 0; }
.pp-section p strong { color: var(--txt); font-weight: 600; }
.pp-section a { color: var(--blue-soft); text-decoration: none; border-bottom: 1px solid rgba(62,159,255,.3); transition: border-color .2s; }
.pp-section a:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── LISTAS ── */
.pp-section ul { list-style: none; margin: 16px 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 10px; }

.pp-section ul li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 20px 16px 52px;
  border-radius: 13px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  position: relative;
  transition: border-color .2s, background .2s;
}
.pp-section ul li:hover { border-color: rgba(0,110,242,.3); background: rgba(0,110,242,.04); }

.pp-section ul li::before {
  content: '';
  position: absolute; left: 20px; top: 22px;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  box-shadow: 0 0 8px rgba(0,110,242,.5);
}

.pp-section ul li strong {
  display: block;
  font-size: 14px; font-weight: 600; color: var(--txt);
  line-height: 1.4;
}
.pp-section ul li span {
  display: block;
  font-size: 13.5px; color: var(--txt-2); line-height: 1.65;
}

/* listas sem strong/span (itens simples) */
.pp-section ul li.simple {
  flex-direction: row; align-items: center; gap: 0;
  padding: 14px 20px 14px 52px;
  font-size: 14.5px; color: var(--txt-2); line-height: 1.6;
}

/* ── BOX DE CONTATO ── */
.pp-contact {
  margin-top: 56px;
  padding: 34px 38px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(0,110,242,.10), rgba(94,234,255,.04));
  border: 1px solid rgba(0,110,242,.3);
}
.pp-contact h3 { font-family: 'Sora'; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.pp-contact p { font-size: 14.5px; line-height: 1.8; color: var(--txt-2); margin-bottom: 22px; }
.pp-contact p:last-child { margin-top: 16px; margin-bottom: 0; font-size: 13px; color: var(--txt-3); }
.pp-contact p a { color: var(--blue-soft); text-decoration: none; }
.ck-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.pp-contact .btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 12px;
  color: #fff; text-decoration: none;
  font-family: 'Sora'; font-weight: 700; font-size: 14px;
  transition: transform .2s, box-shadow .2s;
}
.pp-contact .btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  box-shadow: 0 6px 22px rgba(0,110,242,.4);
}
.pp-contact .btn-green {
  background: linear-gradient(135deg, #1DB954, #25D366);
  box-shadow: 0 6px 22px rgba(37,211,102,.35);
}
.pp-contact .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,110,242,.5); }
.pp-contact .btn-green:hover { box-shadow: 0 10px 30px rgba(37,211,102,.5); }

/* ── FOOTER ── */
.pp-footer {
  border-top: 1px solid var(--border);
  padding: 28px 8%;
  text-align: center;
  font-size: 12px; color: var(--txt-3);
}
.pp-footer a { color: var(--blue-soft); text-decoration: none; }
.pp-footer a:hover { color: var(--cyan); }

/* ── RESPONSIVE ── */

/* Tablet (≤768px) — 1 coluna nas listas, padding menor */
@media(max-width:768px) {
  nav { padding: 14px 5%; }
  .nav-logo span { font-size: 14px; }

  .pp-hero { padding: 52px 5% 40px; }
  .pp-hero .wrap { max-width: 100%; }
  .pp-hero h1 { font-size: clamp(26px, 6vw, 38px); letter-spacing: -1px; }
  .pp-hero .sub { font-size: 15px; line-height: 1.65; max-width: 100%; }

  .pp-body { padding: 44px 5% 80px; }

  .pp-section { margin-bottom: 40px; }
  .pp-section h2 { font-size: 17px; }
  .pp-section p { font-size: 14px; }

  .pp-section ul { grid-template-columns: 1fr; gap: 8px; }
  .pp-section ul li { padding: 14px 18px 14px 46px; }
  .pp-section ul li::before { left: 17px; top: 20px; width: 7px; height: 7px; }
  .pp-section ul li strong { font-size: 13px; }
  .pp-section ul li span { font-size: 13px; }
  .pp-section ul li.simple { padding: 12px 18px 12px 46px; font-size: 13.5px; }

  .pp-contact { padding: 26px 24px; }
  .pp-contact h3 { font-size: 16px; }
  .pp-contact p { font-size: 13.5px; }
  .ck-btns { flex-direction: column; }
  .pp-contact .btn { justify-content: center; font-size: 13px; padding: 11px 20px; }
}

/* Mobile (≤480px) — ajustes finos */
@media(max-width:480px) {
  nav { padding: 12px 4%; }
  .nav-logo img { height: 30px; }
  .nav-logo span { font-size: 13px; }
  .nav-back { font-size: 12px; padding: 7px 12px; }

  .pp-hero { padding: 40px 4% 32px; }
  .pp-hero .kicker { font-size: 10px; }
  .pp-hero h1 { font-size: clamp(24px, 7vw, 32px); margin-bottom: 14px; }
  .pp-hero .sub { font-size: 14px; line-height: 1.6; }
  .pp-hero .meta { font-size: 12px; }

  .pp-body { padding: 32px 4% 70px; }

  .pp-section { margin-bottom: 32px; }
  .pp-section h2 { font-size: 15px; gap: 10px; }
  .num { width: 26px; height: 26px; font-size: 12px; border-radius: 7px; }
  .pp-section p { font-size: 13.5px; line-height: 1.75; }

  .pp-section ul li { padding: 12px 14px 12px 40px; border-radius: 10px; }
  .pp-section ul li::before { left: 14px; top: 18px; }
  .pp-section ul li strong { font-size: 13px; }
  .pp-section ul li span { font-size: 12.5px; }

  .pp-contact { padding: 20px 18px; border-radius: 14px; }
  .pp-contact h3 { font-size: 15px; }
  .pp-footer { padding: 22px 4%; font-size: 11px; }
}
