/** Shopify CDN: Minification failed

Line 19:22 Unexpected "{"
Line 19:31 Expected ":"
Line 19:38 Unexpected "{"
Line 136:16 Unexpected "{"
Line 136:25 Expected ":"
Line 136:32 Unexpected "{"
Line 141:16 Unexpected "{"
Line 141:25 Expected ":"
Line 146:16 Unexpected "{"
Line 146:25 Expected ":"
... and 89 more hidden warnings

**/


/* CSS from section stylesheet tags */
.best-seller-section-{{ section.id }} {
  padding: 60px 20px; 

}

.best-seller-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  justify-content: center;
  align-items: center;
  gap: 20px; /* diminui o espaço entre os itens */
  width: 70%; /* diminui o tamanho total */
  margin: 0 auto; /* centraliza a grade na tela */

}

.best-seller-image img {
  margin-top: 100px;
  margin-bottom: 100px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.best-seller-image a:hover img {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.best-seller-content{
 
}

.best-seller-content h2 {
  
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.best-seller-content .subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f2f2f2;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-item img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-name {
  font-size: 15px;
  font-weight: 500;
  color: #111;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.divider {
  border-bottom: 1px solid #ddd;
  margin: 8px 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .best-seller-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-item {
    justify-content: center;
  }

  .product-info {
    align-items: center;
  }
}
.cards-section-{{ section.id }} {
  text-align: center;
  padding: 60px 20px;
}

.cards-section-{{ section.id }} .cards-header {
  max-width: 700px;
  margin: 40px auto 40px auto;
}

.cards-section-{{ section.id }} .cards-header h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center; /* garante centralização do título */
}

.cards-section-{{ section.id }} .cards-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  text-align: center; /* garante centralização do subtítulo */
}

/* Container dos cards */
.cards-section-{{ section.id }} .cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center; /* centraliza cada card no grid */
  align-items: center;
}

/* Cada card */
.cards-section-{{ section.id }} .card-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 300px; /* controla largura máxima no desktop */
}

.cards-section-{{ section.id }} .card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cards-section-{{ section.id }} img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
}

/* Responsivo para tablets */
@media (max-width: 1024px) {
  .cards-section-{{ section.id }} .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  
}

/* Responsivo para celulares */
@media (max-width: 600px) {
  .cards-section-{{ section.id }} .cards-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.featured-collection-{{ section.id }} {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: #fff;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden; /* ✅ impede scroll horizontal */
}

/* Wrapper principal */
.featured-collection-{{ section.id }} .featured-wrapper {

  display: flex;
  flex-direction: column;
  align-items: flex-start;      
  justify-content: center;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
}

/* Cabeçalho */
.featured-collection-{{ section.id }} .featured-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

.featured-collection-{{ section.id }} .featured-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.featured-collection-{{ section.id }} .featured-text {
  font-size: 16px;
  color: #555;
  max-width: 600px;
}

/* Grade de produtos */
.featured-collection-{{ section.id }} .featured-grid {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  width: 100%;
  max-width: 100%;
}

/* Cartão de produto */
.featured-collection-{{ section.id }} .featured-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.featured-collection-{{ section.id }} .featured-image {
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.featured-collection-{{ section.id }} .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.featured-collection-{{ section.id }} .featured-image:hover img {
  transform: scale(1.05);
}

.featured-collection-{{ section.id }} .featured-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-collection-{{ section.id }} .featured-name {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.featured-collection-{{ section.id }} .featured-button {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: #000;
  transition: all 0.3s ease;
}

.featured-collection-{{ section.id }} .featured-button:hover {
  background: #000;
  color: #fff;
}

/* Botão "ver todos" */
.featured-collection-{{ section.id }} .view-all-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.featured-collection-{{ section.id }} .view-all-button {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background: #000;
  color: #fff;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-collection-{{ section.id }} .view-all-button:hover {
  background: transparent;
  color: #000;
}

/* 📱 Responsivo (mobile até 968px) */
@media (max-width: 968px) {
  .featured-collection-{{ section.id }} .featured-grid {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .featured-collection-{{ section.id }} .featured-card {
    max-width: 100%;
  }

  .featured-collection-{{ section.id }} .featured-image {
    height: auto;
    aspect-ratio: 4 / 5;
  }
}
/* Fonte moderna */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

  body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
  }

  /* Header */
  .site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .site-logo img {
    
    max-height: 100px;
    transition: transform 0.3s ease;
  }

  .site-logo img:hover {
    transform: scale(1.05);
  }

  /* Menu desktop */
  .nav-menu {
    display: flex;
    gap: 32px;
  }

  .nav-menu a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.25s ease;
  }

  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #007aff;
    transition: width 0.3s ease;
  }

  .nav-menu a:hover {
    color: #007aff;
  }

  .nav-menu a:hover::after {
    width: 100%;
  }

  /* Ações */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .header-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    transition: color 0.25s ease;
  }

  .header-actions a:hover {
    color: #007aff;
  }

  .header-actions svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
  }

  /* Botão mobile */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #222;
  }
  .contact-button{
    text-decoration: none;
    border: 1px solid #222;
    padding: 6px 40px;
    border-radius: 50px;
    transition: background 0.3s, color 0.3s;
  }

  /* Mobile */
  @media (max-width: 900px) {
    .nav-menu {
      display: none;
      position: fixed;
      top: 0;
      left: -100%;
      height: 100%;
      width: 70%;
      max-width: 300px;
      background: #fff;
      flex-direction: column;
      padding: 60px 20px;
      gap: 20px;
      box-shadow: 2px 0 8px rgba(0,0,0,0.1);
      transition: left 0.3s ease;
    }

    .nav-menu.active {
      left: 0;
      display: flex;
    }

    .menu-toggle {
      display: block;
    }

    .site-logo img {
      display: none;
      max-height: 44px;
    }

    /* Overlay para fechar menu mobile */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      display: none;
      z-index: 999;
    }

    .overlay.active {
      display: block;
    }
  }
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
.hero-slide {
  position: relative;
  display: flex;
  height: 90vh;
  background-size: cover;
  background-position: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content h2 {
  font-weight: {{ block.settings.font_weight_line1 | default: 400 }};
  text-transform: {{ block.settings.text_transform_line1 | default: 'none' }};
  line-height: {{ block.settings.line_height_line1 | default: 1.2 }};
  letter-spacing: {{ block.settings.letter_spacing | default: 0 }}px;
  margin: 0 0 8px 0;
}
.hero-content h1 {
  font-weight: {{ block.settings.font_weight_line2 | default: 700 }};
  text-transform: {{ block.settings.text_transform_line2 | default: 'none' }};
  line-height: {{ block.settings.line_height_line2 | default: 1.1 }};
  letter-spacing: {{ block.settings.letter_spacing | default: 0 }}px;
  margin: 0 0 15px 0;
}
.hero-content p {
  font-weight: {{ block.settings.font_weight_subtitle | default: 400 }};
  letter-spacing: {{ block.settings.letter_spacing | default: 0 }}px;
  margin: 0 0 25px 0;
  opacity: 0.95;
}
.hero-content a {
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-content a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.swiper-button-prev,
.swiper-button-next {
  color: #fff !important;
  background: rgba(0,0,0,0.4);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px;
}
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
}
.swiper-pagination-bullet-active {
  background: #fff;
}

/* Estilos responsivos para cores diferentes em mobile */
@media (max-width: 768px) {
  .hero-slide.mobile-colors::before {
    display: block !important;
  }
  .hero-slide.desktop-colors::before {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .hero-slide.mobile-colors::before {
    display: none !important;
  }
  .hero-slide.desktop-colors::before {
    display: block !important;
  }
}