@charset "UTF-8";

/* Aplica-se a telas maiores que 766px */
@media screen and (min-width: 767px) {
  .category-gallery-section {
    padding: 100px 5% 50px;
    background-color: #F5F3EF;
  }

  .category-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
  }

  .category-gallery-grid figure {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background: #000;
    transition: transform 0.3s ease;
  }

  .category-gallery-grid img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
  }

  .category-gallery-grid figure:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
  }

  .category-gallery-grid figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(30%);
    transition: all 0.3s ease;
  }

  .category-gallery-grid figure:hover figcaption {
    opacity: 1;
    transform: translateY(0);
  }
}