/* Seção Catálogo Horizontal Simplificada */
.horizontal-catalog-simple {
  padding: 60px 20px;
  background: linear-gradient(135deg, #722f6c 0%, #5c2457 100%);
  text-align: center;

}

.horizontal-catalog-simple .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Cabeçalho */
.section-header-simple {
  margin-bottom: 50px;
}

.section-title-simple {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle-simple {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* Linha de produtos */
.products-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Cards de produtos */
.product-card-simple {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.product-card-simple:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image-simple {
  height: 300px;
  overflow: hidden;
}

.product-image-simple img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-simple:hover .product-image-simple img {
  transform: scale(1.05);
}

.product-info-simple {
  padding: 20px;
}

.product-info-simple h3 {
  font-size: 1.3rem;
  color: #722f6c;
  margin-bottom: 10px;
  font-weight: 600;
}

.product-info-simple p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Rodapé com botão */
.section-footer-simple {
  margin-top: 20px;
}

.simple-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.2);
}

.simple-view-all-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 1100px) {
  .product-card-simple {
    min-width: calc(25% - 20px);
  }
}

@media (max-width: 900px) {
  .products-row {
    gap: 20px;
  }
  
  .product-card-simple {
    min-width: calc(50% - 20px);
    max-width: none;
  }
}

@media (max-width: 600px) {
  .section-title-simple {
    font-size: 2rem;
  }
  
  .section-subtitle-simple {
    font-size: 1rem;
  }
  
  .products-row {
    gap: 15px;
  }
  
  .product-card-simple {
    min-width: 100%;
  }
}