/* =========================================================
   ROOT / THEME (NocturnShop Base)
========================================================= */
:root {
  --bg-main: #0f111a;
  --bg-card: #1a1c29;

  --text-main: #f8f8f2;
  --text-sub: #a9b1d6;

  --accent: #7aa2f7;
  --accent-2: #bb9af7;
  --success: #9ece6a;
  --danger: #f7768e;

  --glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);

  --font: "Poppins", sans-serif;
}

/* =========================================================
   RESET / BASE
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font);
}

body {
  background: radial-gradient(circle at top, #151726, #0f111a);
  color: var(--text-main);
  line-height: 1.7;
}

/* =========================================================
   CONTAINER
========================================================= */
.policies {
  max-width: 900px;
  margin: 120px auto 100px;
  padding: 40px 36px;

  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 18px;
}

/* =========================================================
   TITLES
========================================================= */
.policies h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.policies h2 {
  font-size: 1.35rem;
  margin: 40px 0 14px;
  color: var(--accent);
}

/* =========================================================
   TEXT
========================================================= */
.policies p {
  font-size: 0.95rem;
  color: var(--text-sub);
  margin-bottom: 14px;
}

.policies p strong {
  color: var(--text-main);
  font-weight: 600;
}

/* =========================================================
   SECTION BLOCK
========================================================= */
.section {
  margin-top: 30px;
}

/* subtle divider feel */
.section h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 10px;
}

/* =========================================================
   LIST-LIKE PARAGRAPHS
========================================================= */
.section p br {
  line-height: 2;
}

/* =========================================================
   BACK BUTTON
========================================================= */
.btn-voltar {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 40px;
  padding: 14px 22px;

  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;

  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-voltar:hover {
  border-color: var(--accent);
  background: rgba(122, 162, 247, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .policies {
    margin: 100px 6% 80px;
    padding: 34px 26px;
  }

  .policies h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .policies {
    padding: 28px 22px;
  }

  .policies h1 {
    font-size: 1.8rem;
  }

  .policies h2 {
    font-size: 1.2rem;
  }

  .policies p {
    font-size: 0.9rem;
  }

  .btn-voltar {
    width: 100%;
    justify-content: center;
  }
}
