/* style.css para a página de privacidade, mantendo a identidade visual */

body {
  font-family: "Montserrat", sans-serif;
}

.privacy-content h2 {
  font-size: 1.75rem; /* 28px */
  font-weight: 800; /* black */
  color: #ffffff;
  margin-top: 2.5rem; /* 40px */
  margin-bottom: 1rem; /* 16px */
  padding-bottom: 0.5rem; /* 8px */
  border-bottom: 2px solid #2563eb; /* blue-600 */
}

.privacy-content p {
  font-size: 1rem; /* 16px */
  color: #d1d5db; /* gray-300 */
  line-height: 1.75;
  margin-bottom: 1.5rem; /* 24px */
}

.privacy-content ul {
  list-style-type: none;
  padding-left: 1.5rem; /* 24px */
  margin-bottom: 1.5rem; /* 24px */
  color: #d1d5db; /* gray-300 */
}

.privacy-content ul li {
  position: relative;
  padding-left: 1.25rem; /* 20px */
  margin-bottom: 0.75rem; /* 12px */
}

.privacy-content ul li::before {
  content: "✓"; /* ou '\2713' */
  position: absolute;
  left: 0;
  top: 2px;
  color: #3b82f6; /* blue-500 */
  font-weight: bold;
}

.privacy-content p.last-update {
  font-style: italic;
  color: #9ca3af; /* gray-400 */
  text-align: center;
  margin-top: 3rem; /* 48px */
  font-size: 0.875rem; /* 14px */
}

.privacy-content strong {
  color: #ffffff;
  font-weight: 600;
}
