/* Container principal */
.slider-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: #ffffff;
}

/* Área de rolagem */
.manual-slider {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 15px;
  scroll-behavior: smooth;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;  /* IE e Edge */
  scrollbar-width: none;     /* Firefox */
}

.manual-slider::-webkit-scrollbar {
  display: none;             /* Chrome, Safari e Opera */
}

/* Estilo dos Cards (Slides) */
.slide {
  flex: 0 0 145px;
  text-align: center;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.slide:hover {
  transform: translateY(-2px);
}

.slide img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
}

.slide h4 {
  font-size: 11px;
  margin: 0;
  font-family: sans-serif;
  color: #333;
  font-weight: 600;
}

/* Botões de Navegação */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-weight: bold;
}

.btn-left { left: 5px; }
.btn-right { right: 5px; }
.nav-btn:hover { background: #fff; color: #007bff; }