.body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: start; /* Manda al header y footer al extremo*/
	align-items: center;
}
.main {
	width: 100%;
	margin-top: 26px;
}

/*** SECCION - TITULO ***/
.content__h1 {
	font-size: 24px;
}

/*** SECCION - CATEGORIA ***/
.categoria {
	width: 100%;
	overflow: hidden;
	background-color: var(--white);
	position: sticky;
	z-index: 100;
	top: 40px;
}

/* wrapper */
.categoria__container {
	max-height: 120px;
	display: flex;
}

/* item */
.categoria__button {
	border-radius: 15%;
	min-width: 85px;
	height: 85px;
	color: var(--white);
	border: none;
	/**/
	display: flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	margin: 20px 7px;
	cursor: pointer;
}
.categoria__button:disabled {
	background-color: var(--color-primary);
}
.categoria__button:enabled {
	background-color: var(--color-primary-ligth);
}

.categoria__button:enabled:hover {
	transform: scale(1.1);
}

.categoria__img {
	font-size: 1px;
}

.slick-slide {
	margin: 0 5px 10px;
}

/*** SECTION - Catalogo ***/
.catalogo {
	width: 100%;
	/* PRUEBA */
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.card {
	width: 270px; /**/
	min-height: 350px;
	height: auto; /**/

	background-color: white;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	padding: 18px;
	margin: 20px;
	transition: all 0.4s;
}

/* Contenedor de imagen del producto */
.card__img-container {
	min-height: 57%;
	height: 200px;
	width: 100%;
	max-width: 200px; /**/
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* Enlace en imagen */
.card__a {
	width: 100%;
	height: auto;
	object-fit: cover;
}
/* Imagen de producto */
.card__img {
	width: 100%;
	height: auto;
	transition: all 0.5s;
	filter: drop-shadow(0 0 5px #717171);
}
.card__img:hover {
	transform: scale(1.1);
}

/* Contenedor de contenido del producto */
.card__content {
	margin-top: 20px;
	height: 43%;
	/* border-top: 1px solid var(--gray); */
}

/* Empresa dueña del producto */
.card__empresa {
	font-size: 12px;
	color: var(--gray);
	margin: 3px auto;
}

/* Titulo del producto */
.card__title {
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	color: black;
}

/* Contenedor del precio */
.card__precio {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
/* Contenedor de precio menor */
.precio__container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	margin: 15px 0 0;
}
/* Descripcion de precio menor */
.precio__description {
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 10px;
}
.precio__description--menor {
	color: var(--color-secundary);
}
.precio__description--mayor {
	color: var(--color-primary);
}
/* Cuadro de la cantidad de precio */
.precio__cuadro {
	border-radius: 5px;
	padding: 5px 10px;
	color: var(--white);
	font-size: 14px;
}
.precio__cuadro--menor {
	background-color: var(--color-secundary);
}
.precio__cuadro--mayor {
	background-color: var(--color-primary);
}

@media screen and (min-width: 768px) {
	.main {
		margin-top: 60px;
	}
	.content__h1 {
		font-size: 30px;
	}
	.categoria__container {
		align-items: center;
		justify-content: center;
	}
	/*** SECCION CATEGORIA ***/
	.categoria {
		top: 79px;
	}

	/*** SECTION Catalogo ***/
	.card__precio {
		flex-direction: column;
	}
	.precio__container {
		flex-direction: row;
	}
	.precio__description {
		margin-bottom: 0;
	}
}
