@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ANIMAÇÃO */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FEED TOP */
.feed-topo {
  text-align: center;
  margin: 40px auto 30px;
  animation: fadeInDown 0.6s ease;
}

.feed-titulo {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.6);
}

/* PESQUISA */
.pesquisa-container,
.pesquisa-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.barra-pesquisa {
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  width: 300px;
  max-width: 80%;
}

.btn-pesquisa {
  padding: 10px 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

/* GALERIA DE FOTOS */
.fotos-galeria {
  column-gap: 20px;
  padding: 0 20px;
  column-count: 4;
}

@media (max-width: 1200px) { .fotos-galeria { column-count: 3; } }
@media (max-width: 800px) { .fotos-galeria { column-count: 2; } }
@media (max-width: 500px) { .fotos-galeria { column-count: 1; } }

.foto-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
  text-shadow: 2px 2px 5px white;
  break-inside: avoid;
  transition: transform 0.2s;
}

.foto-container:hover { transform: translateY(-5px); }

.foto-imagem {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.foto-nome {
  margin-top: 10px;
  font-size: 1.1em;
  font-weight: bold;
  color: #000;
  text-shadow: 2px 2px 5px white;
}

.foto-acoes {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.foto-container:hover .foto-acoes { opacity: 1; }

.btn {
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.btn-download { background-color: #4caf50; color: white; }
.btn-denunciar { background-color: #ff9800; color: white; }

/* PAGINAÇÃO */
.paginacao-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination {
  display: flex;
  list-style: none;
  padding-left: 0;
}

.page-item {
  margin: 0 5px;
}

.page-link {
  color: #007bff;
  border: 1px solid #007bff;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.page-link:hover {
  background-color: #007bff;
  color: white;
}

.page-item.active .page-link {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}