.meu-carrossel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.meu-carrossel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}
.meu-carrossel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.slide {
  position: relative;
  scroll-snap-align: start;
  min-width: 300px;
  flex-shrink: 0;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  max-height: 300px;
  transition: all 0.3s ease;
}

.slide img {
  height: 300px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Resumo escondido por padrão */
.resumo {
  font-family: "Open Sans";
  position: absolute;
  right: -100%;
  top: 0;
  height: 100%;
  width: 300px;
  background: white;
  color: #333;
  padding: 15px;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 10;
}

/* Mostrar resumo ao passar o mouse no slide */
.slide:hover .resumo {
  right: 0;
}

/* Botões */
.carrossel-prev,
.carrossel-next {
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
}

button, button:hover  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
