* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #dadada;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}
.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: rgb(128, 105, 105); /* ajuste conforme o header */
}

.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: rgb(141, 122, 122); /* ajuste conforme o header */
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 150px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 5px;
  overflow: hidden;
}

.site-title a {
  text-decoration: none; /* remove o sublinhado */
  color: inherit;        /* usa a cor do h1 */
}
.site-title a:hover {
  opacity: 0.8; /* efeito leve no hover */
}


.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: black;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}


/* Header */
.header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {

  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}


.site-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

.auth-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================= */
/* CONTEÚDO CENTRAL - PRIVACY */
/* ============================= */
.privacy {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.privacy-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #222;
}

.privacy-section h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.privacy-section p,
.privacy-section li {
  margin-bottom: 1rem;
  color: #444;
}

.privacy-section ol,
.privacy-section ul {
  padding-left: 1.5rem;
}

.privacy-section a {
  color: #0073e6;
  text-decoration: underline;
}

.privacy-section a:hover {
  text-decoration: none;
}

/* Footer */
.footer {
  background: white;
  border-top: 1px solid #e5e7eb;
  margin-top: 64px;
  padding: 48px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand-name {
  font-weight: 700;
  color: #1a1a1a;
}

.footer-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.footer-title {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #1a1a1a;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: #6b7280;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: #1a1a1a;
}