/* ========================================================= RESET ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================================================= BASE ========================================================= */

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: 'Montserrat', sans-serif;
  background: #f8f8f8;
  color: #1b2736;
}

body {
  overflow-x: hidden;
}

/* ========================================================= PÁGINA PRIVACIDADE ========================================================= */

.privacy-page {
  width: 100%;
  min-height: 100vh;
  padding: 42px 20px 64px;
  background: #f8f8f8;
}

.privacy-container {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}

/* ========================================================= VOLTAR ========================================================= */

.privacy-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 28px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.privacy-back-link:hover {
  color: #1b2736;
  transform: translateX(-2px);
}

.privacy-back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

/* ========================================================= CABEÇALHO ========================================================= */

.privacy-header {
  margin-bottom: 28px;
}

.privacy-header h1 {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

/* ========================================================= CONTEÚDO ========================================================= */

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.privacy-section h2 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.privacy-section p {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  color: #64748b;
  max-width: 760px;
}

/* ========================================================= RODAPÉ ========================================================= */

.privacy-footer {
  margin-top: 38px;
  padding-top: 6px;
}

.privacy-footer p {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  color: #b2bcc8;
}

/* ========================================================= RESPONSIVO ========================================================= */

@media (max-width: 768px) {
  .privacy-page {
    padding: 28px 16px 48px;
  }

  .privacy-container {
    max-width: 100%;
  }

  .privacy-back-link {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .privacy-header {
    margin-bottom: 24px;
  }

  .privacy-header h1 {
    font-size: 24px;
  }

  .privacy-content {
    gap: 22px;
  }

  .privacy-section h2 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .privacy-section p {
    font-size: 14px;
    line-height: 1.65;
  }

  .privacy-footer {
    margin-top: 30px;
  }

  .privacy-footer p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .privacy-page {
    padding: 24px 14px 40px;
  }

  .privacy-back-link {
    font-size: 13px;
    gap: 6px;
  }

  .privacy-back-icon {
    font-size: 16px;
  }

  .privacy-header h1 {
    font-size: 22px;
  }

  .privacy-section h2 {
    font-size: 16px;
  }

  .privacy-section p {
    font-size: 13px;
    line-height: 1.65;
  }
}