/* Páginas estáticas (Termos, Privacidade, FAQ, Blog) — mesma paleta da
   landing principal, mas CSS próprio: essas páginas não carregam o bundle
   React, então não dependem de src/index.css. */

:root {
  --rose: #b84a5a;
  --raspberry: #8f2743;
  --plum: #4a1526;
  --mint: #8fd0b0;
  --cream: #faf9f7;
  --gold: #f5b942;
  --ink: #2a1520;
  --muted: #6b5a62;
  --line: #eadfe3;
}

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

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

.sp-container { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.sp-header {
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.sp-header-inner {
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
  flex-wrap: wrap;
}

.sp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--rose);
  text-decoration: none;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.sp-logo em { font-style: normal; color: var(--mint); }

.sp-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.sp-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}
.sp-nav a:hover { color: var(--rose); }

.sp-main { padding: 56px 0 80px; }

.sp-main h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.sp-updated, .sp-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 36px; }

.sp-section { margin-bottom: 30px; }
.sp-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--raspberry);
  margin-bottom: 8px;
}
.sp-section p { color: var(--ink); }
.sp-section a { color: var(--rose); font-weight: 600; }

/* FAQ */
.sp-faq { display: flex; flex-direction: column; gap: 10px; }
.sp-faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.sp-faq-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.sp-faq-item summary::-webkit-details-marker { display: none; }
.sp-faq-item summary::before { content: '+ '; color: var(--rose); font-weight: 900; }
.sp-faq-item[open] summary::before { content: '– '; }
.sp-faq-item p { margin-top: 12px; color: var(--muted); }

.sp-cta { margin-top: 40px; }
.sp-cta a {
  display: inline-block;
  background: linear-gradient(90deg, var(--rose), var(--raspberry));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
}

/* Blog */
.sp-blog-list { display: flex; flex-direction: column; gap: 20px; }
.sp-blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sp-blog-card:hover { box-shadow: 0 10px 28px rgba(184, 74, 90, 0.14); transform: translateY(-2px); }
.sp-blog-card a { text-decoration: none; color: inherit; display: block; }
.sp-blog-card time { color: var(--rose); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.sp-blog-card h2 { font-size: 1.25rem; font-weight: 800; margin: 8px 0 6px; color: var(--ink); }
.sp-blog-card p { color: var(--muted); font-size: 0.95rem; }

.sp-article time { color: var(--rose); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.sp-article h1 { margin-top: 8px; }
.sp-article h2 { font-size: 1.25rem; font-weight: 700; margin: 28px 0 10px; color: var(--raspberry); }
.sp-article p { margin-bottom: 16px; color: var(--ink); }
.sp-article a { color: var(--rose); font-weight: 600; }
.sp-back a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.sp-back { margin-bottom: 20px; }

.sp-related { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 24px; }
.sp-related h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; color: var(--raspberry); }
.sp-related ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sp-related a { color: var(--rose); font-weight: 600; text-decoration: none; }
.sp-related a:hover { text-decoration: underline; }

.sp-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  text-align: center;
}
.sp-footer nav { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 14px; }
.sp-footer a { color: var(--muted); text-decoration: none; font-size: 0.88rem; }
.sp-footer a:hover { color: var(--rose); }
.sp-footer p { color: var(--muted); font-size: 0.85rem; }
.sp-footer p a { color: var(--rose); font-weight: 600; }

@media (max-width: 640px) {
  .sp-nav { gap: 14px; font-size: 0.85rem; }
}
