/* Full Gallery Section */
.full-gallery-section {
  background: var(--white);
  padding: 100px 0;
  min-height: 100vh;
}

.section-header {
  margin-bottom: 60px;
}

.section-header i {
  font-size: 3rem;
  color: var(--primary-color);
  animation: pulse 2s infinite;
}

.section-header h2 {
  font-size: 2.8rem;
}

.section-header .section-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
}

/* Filter Bar */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--secondary-color);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.filter-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 6px 15px rgba(172, 10, 16, 0.3);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  aspect-ratio: 4 / 3;
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.95));
  padding: 20px;
  color: var(--secondary-color);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.gallery-overlay span {
  font-size: 0.95rem;
  color: var(--dark-gray);
  font-weight: 400;
}

.gallery-back {
  text-align: center;
  margin-top: 50px;
}

.gallery-back .btn {
  padding: 12px 32px;
  font-size: 1.1rem;
  border-radius: var(--border-radius);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item {
  animation: fadeIn 0.6s ease forwards;
}

/* Responsividade */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .section-header h2 {
    font-size: 2.4rem;
  }

  .section-header .section-subtitle {
    font-size: 1.1rem;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .full-gallery-section {
    padding: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  .gallery-item {
    aspect-ratio: 3 / 2;
  }

  .gallery-overlay h3 {
    font-size: 1.1rem;
  }

  .gallery-overlay span {
    font-size: 0.85rem;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .gallery-back .btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .section-header h2 {
    font-size: 2rem;
    margin-top: 40px


  }

  .section-header .section-subtitle {
    font-size: 1rem;
  }

  .section-header i {
    font-size: 2.5rem;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .gallery-back .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}