@charset "UTF-8";
/* Aplica-se a telas até 766px */
@media screen and (max-width: 766px) {
  .category-gallery-section {
    padding: 80px 3% 30px;
    background-color: #F5F3EF;
  }

  .category-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .category-gallery-grid figure {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    position: relative;
    background: #000;
  }

  .category-gallery-grid img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
  }

  .category-gallery-grid figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 0.8rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
  }



}