.gallery {
  background-color: #f2ede9; /* fundo claro, contrasta com o bordô do about */
  padding: 130px 8% 100px; /* padding-top maior pra não ficar colado na navbar fixa */
  text-align: center;
}

.gallery-header {
  margin-bottom: 40px;
}

.gallery-header .about-label {
  color: #550000;
}

.gallery-header h1 {
  font-family: 'Libertinus Serif', serif;
  font-size: 42px;
  font-weight: 400;
  color: #3d2b28;
  margin-top: 8px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #3d2b28;
  color: #3d2b28;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-btn:hover {
  background-color: #cfc3bc;
}

.filter-btn.active {
  background-color: #550000;
  border-color: #550000;
  color: #fff;
}

.gallery-grid {
  column-count: 3;      /* 3 colunas no desktop */
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;   /* evita que uma foto seja cortada entre colunas */
  margin-bottom: 20px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;           /* mantém a proporção original da foto */
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item.hidden {
  display: none;
}

@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    column-count: 1;
  }
}
/* ---- ícone VSCO (texto) usado no footer desta página ---- */
.vsco-text {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

