/** Shopify CDN: Minification failed

Line 21:18 Unexpected "{"
Line 21:27 Expected ":"
Line 27:20 Unexpected "{"
Line 27:29 Expected ":"
Line 34:18 Unexpected "{"
Line 34:27 Expected ":"
Line 40:20 Unexpected "{"
Line 40:29 Expected ":"
Line 46:18 Unexpected "{"
Line 46:27 Expected ":"
... and 55 more hidden warnings

**/
/* =====================================================
   CONHEÇA NOSSA FÁBRICA — CSS ISOLADO
   ===================================================== */

/* ===== Container Externo ===== */
#shopify-section-{{ section.id }} #factory {
  margin-left: 1rem;
  margin-right: 1rem;
}

@media (min-width: 1280px) {
  #shopify-section-{{ section.id }} #factory {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ===== Grid Principal ===== */
#shopify-section-{{ section.id }} .factory-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  #shopify-section-{{ section.id }} .factory-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Box Principal ===== */
#shopify-section-{{ section.id }} #factory .bg-background-light {
  background: var(--background-light, #f8f8f8);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  #shopify-section-{{ section.id }} #factory .bg-background-light {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  #shopify-section-{{ section.id }} #factory .bg-background-light {
    padding: 3rem;
  }
}

/* ===== Grid Interno ===== */
#shopify-section-{{ section.id }} #factory .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  #shopify-section-{{ section.id }} #factory .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* ===== Ordem Mobile / Desktop ===== */
#shopify-section-{{ section.id }} #factory .content {
  order: 2;
  padding-inline: 2vw 8vw;
}

#shopify-section-{{ section.id }} #factory .media {
  order: 1;
}

@media (min-width: 1024px) {
  #shopify-section-{{ section.id }} #factory .content {
    order: 1;
  }

  #shopify-section-{{ section.id }} #factory .media {
    order: 2;
  }
}

@media (max-width: 768px) {
  #shopify-section-{{ section.id }} #factory .content{
    padding-inline: 0;
    padding-top: 24px;
  }
}

/* ===== Heading ===== */
#shopify-section-{{ section.id }} #factory .heading {
  color: #E59AA7;
  font-weight: 600;
  line-height: 1.2;
  margin-block: 16px;
}

/* ===== Parágrafos ===== */
#shopify-section-{{ section.id }} #factory .description {
  font-size: 14px;
  color: var(--text-secondary, #666);
  line-height: 1.6;
  margin-block: 16px;
  font-family: var(--font-family-base);
}

#shopify-section-{{ section.id }} #factory .description:last-of-type {
  margin-bottom: 2rem;
}

/* ===== Lista ===== */
#shopify-section-{{ section.id }} #factory .features-list {
  margin-bottom: 2rem;
}

#shopify-section-{{ section.id }} #factory .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 16px;
  color: #777777;
  font-weight: 700;
}

#shopify-section-{{ section.id }} #factory .feature-item + .feature-item {
  margin-top: 1rem;
}

#shopify-section-{{ section.id }} #factory .feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #5000ff;
}

/* ===== Botão ===== */
#shopify-section-{{ section.id }} #factory .button {
  display: inline-block;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border-radius: 9999px;
}

/* ===== Imagens ===== */
#shopify-section-{{ section.id }} #factory .factory-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
/* =====================================================
   SWIPER — TOTALMENTE ISOLADO
   ===================================================== */
/* Navegação */
#shopify-section-{{ section.id }} #factory .factory-swiper .swiper-button-next,
#shopify-section-{{ section.id }} #factory .factory-swiper .swiper-button-prev{
  z-index: 99;
  height: 30px;
  width: 30px;
}
#shopify-section-{{ section.id }} #factory .factory-swiper .swiper-button-prev{
left: 16px;
}
#shopify-section-{{ section.id }} #factory .factory-swiper .swiper-button-next{
right: 16px;
height: 30px;
  width: 30px;
}
/* Slides */
#shopify-section-{{ section.id }} #factory .factory-swiper .swiper-slide{
  width: 100% !important;
  height: unset !important;
  display: flex;
  align-items: stretch;
}
/* Remove setas padrão do Swiper */
#shopify-section-{{ section.id }} #factory .factory-swiper .swiper-button-next::after,
#shopify-section-{{ section.id }} #factory .factory-swiper .swiper-button-prev::after{
  display: none;
}
/* Paginação */
#shopify-section-{{ section.id }} #factory .factory-swiper .swiper-pagination-bullet-active{
  background-color: #D6ADF4 !important;
}
.swiper-pagination-bullet{
  border: 1px solid #D6ADF4;
}
.pagination-{{ section.id }}{

}