/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 111:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .seis-imagens-container {
    width: 100%;
    overflow-x: auto;
  }

  .seis-imagens-wrapper {
    width: fit-content;
    margin: 0 auto;
    padding: 20px;
  }

  .seis-imagens-flex {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    justify-content: flex-start;
  }

  .imagem-card-link {
    text-decoration: none;
    display: block;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .imagem-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 200px;
    height: 360px;
  }

  .imagem-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .imagem-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
    color: #fff;
  }

  .imagem-overlay .titulo {
    font-size: 16px;
    font-weight: bold;
  }

  .imagem-overlay .botao-seta {
    color: #fff;
    background: #000;
    border-radius: 50%;
    padding: 6px 10px;
    display: inline-block;
    font-size: 14px;
    transition: background 0.2s ease;
  }

  .imagem-overlay .botao-seta:hover {
    background: #333;
  }

@media (max-width: 768px) {
  .seis-imagens-wrapper {
    width: 100%;
    padding: 0;
  }

   .seis-imagens-flex {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-left: 16px;
    padding-right: 16px;
    scroll-padding-left: 16px; /* isto garante que o snap respeita o espaço */
  }

  .imagem-card-link {
    flex: 0 0 auto;
    width: 200px;
  }

  .imagem-card {
    width: 200px;
    height: 360px;
  }
}


</style>