/* ===== CARROSSEL BLOCOS ===== */

.blocos-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.blocos-carousel::-webkit-scrollbar {
  height: 6px;
}

.blocos-carousel::-webkit-scrollbar-thumb {
  background: #d4c19c;
  border-radius: 10px;
}

.bloco-card {
  min-width: 280px;
  max-width: 280px;
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  scroll-snap-align: start;
}

.bloco-card img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.bloco-card img:hover {
  transform: scale(1.03);
}

/* ===== MODAL IMAGEM ===== */

.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
