/* Estilos do produto */
.categories-section {
  padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.category-card {
  position: relative;
	width: 312px;
	height: 450px;
	border-radius: 15px;
	overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.category-name {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.casual {
  background: url('../../images/products/casual.jpg') no-repeat center;
  background-size: cover;
}

.esporte {
  background: url('../../images/products/esporte.jpg') no-repeat center;
  background-size: cover;
}

.moderno {
  background: url('../../images/products/moderno.jpg') no-repeat center;
  background-size: cover;
}

.futurista {
  background: url('../../images/products/futurista.jpg') no-repeat center;
  background-size: cover;
}

@media (max-width:500px) {
	.category-card{
		width: 100%;
	}
}