/* ======================================================
   VARIÁVEIS GLOBAIS (PALETA DE CORES)
====================================================== */

:root {
  --primary: #E53935;
  --primary-dark: #C62828;
  --primary-light: #FFCDD2;

  --dark: #1e1e1e;
  --light: #ffffff;
  --gray: #f4f4f4;
}

/* ======================================================
   RESET BÁSICO
====================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f2f2f2;
  color: #333;
}

.container {
  width: 90%;
  margin: auto;
}

/* ======================================================
   HEADER
====================================================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  z-index: 1000;
}

.header-content {
  min-height: 64px;
  padding: clamp(12px, 2.5vw, 20px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-home {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  transition: all 0.2s ease;
}

.back-home i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.back-home:hover {
  opacity: 1;
}

.back-home:hover i {
  transform: translateX(-4px);
}


/* ======================================================
   BRAND
====================================================== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-link {
  text-decoration: none;
}

.logo {
  max-height: 48px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.7);
}

/* ======================================================
   INTRO DA PÁGINA
====================================================== */
.page-intro {
  padding: clamp(96px, 12vw, 120px) 0 64px;
  background: #f7f7f7;
  border-bottom: 1px solid #e5e5e5;
}

.page-intro .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-intro h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: #111;
}

.page-intro p {
  max-width: 640px;
  font-size: 1.05rem;
  color: #555;
}

.page-intro .page-subtitle {
  margin-bottom: 12px;
}

.page-intro .page-update {
  font-size: 0.9rem;
  color: #777;
}


/* ======================================================
   CONTEÚDO DA POLÍTICA
====================================================== */
.policy-content {
  padding: 24px 0 120px;
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: clamp(32px, 4vw, 56px);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  line-height: 1.8;
}

.policy-text h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: #111;
}
.policy-text h2:first-child {
  margin-top: 0;
}

.policy-text h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #222;
}

.policy-text p {
  margin-bottom: 16px;
}

.policy-text ul {
  margin: 16px 0 24px 20px;
}

.policy-text li {
  margin-bottom: 12px;
}

.policy-text a {
  color: var(--primary);
  text-decoration: underline;
}

.policy-text a:hover {
  color: var(--primary-dark);
}


/* ======================================================
   FOOTER
====================================================== */
.footer {
  padding: clamp(20px, 4vw, 32px);
  text-align: center;
  background: var(--dark);
  color: #fff;
  font-size: 0.9rem;
}

