/* ========================= */
/* Reset e estilo base */
/* ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #dadada;
}

/* Faz o conteúdo crescer e empurrar o footer */
body > .content-wrapper, body > main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* ========================= */
/* Header / Navbar */
/* ========================= */
.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;
}

.site-title a {
  text-decoration: none;
  color: inherit;
}

.site-title a:hover {
  opacity: 0.8;
}

.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;
}

/* Dropdown usuário */
.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: rgb(141, 122, 122);
}

.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;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: black;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

/* ========================= */
/* Conteúdo principal */
/* ========================= */
.reports-list {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem 1.5rem;
}

.report-item {
  background-color: white;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  padding: 2rem 1.5rem;
  margin: 10px;
  border-radius: 10px;
}

.apagaobaguio {
  background-color: red;
  color: white;
  padding: 5px;
  border-radius: 8px;
  border: none;
  display: flex;
  justify-content: flex-end;
  margin-top: 3%;
}

.denuncia {
    font-size: 2rem; /* aumenta o tamanho */
    font-weight: 700; /* deixa mais forte */
    color: #1a1a1a; /* mantém a cor do site */
    text-align: center; /* centraliza */
    margin-bottom: 2rem; /* espaço abaixo do título */
    position: relative;
}


/* ========================= */
/* Footer */
/* ========================= */
.footer {
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 48px 0;
  margin-top: auto; /* empurra o footer pro fim da tela */
}

.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;
}
