* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: #005f93;
}

h1 {
	font-family: "Flama", "Arial", sans-serif;
	font-size: 24px;
	font-weight: 400;
	font-style: normal;
	color: #4c4c4c;
}

h2 {
	font-family: "Flama", "Arial", sans-serif;
	font-size: 17px;
	font-weight: 400;
	font-style: normal;
	color: #4c4c4c;
}

h3 {
	font-family: "Flama", "Arial", sans-serif;
	font-size: 18px;
	font-weight: 500;
	font-style: normal;
	padding: 8 0 0 0;
	color: #8b6166;
}

nav {
	font-family: "Flama", "Arial", sans-serif;
	font-size: 17px;
	font-weight: 400;
	font-style: normal;
	color: #b5b5b5;
	padding-top: 10px;
	padding-bottom: 8px;
}

body {
	font-family: "Flama", "Arial", sans-serif;
	font-size: 24px;
	font-weight: 400;
	font-style: normal;
}

ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
}

li {
	cursor: pointer;
}

img {
	height: 100%;
}

p {
	font-size: 16px;
	padding-top: 4px;
}

.swiper-imagem .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

.ativo {
	color: #8b6166;
}

.container {
	width: 100%;
	margin: auto;
}

.swiper-container {
    width: 100%;
}

.swiper-imagem {
	height: 250px;
}

.swiper-texto {
	height: 250px;
}

.card {
	height: auto;
	margin: auto;
	border: 1px solid #cecece;
	border-radius: 10px;
	box-shadow: 1px 1px 10px #f4f4f4;
	position: relative;
}

.arrows {
	display: flex;
	justify-content: space-between;
	position: absolute;
	z-index: 2;
	transform: translateY(-100%);
	width: 100%;
	pointer-events: none;
}
.prev, .next {
	padding: 8 16;
	color: #cecece;
	cursor: pointer;
	outline-color: transparent;
 	outline-style: none;
 	pointer-events: all;
}

.swiper-pagination-bullet {
	background-color: #dce5e5;
	opacity: 0.8;
}

.swiper-pagination-bullet-active {
	background-color: #8b6166;
}

.swiper-slide {
	font-family: "Flama", "Arial", sans-serif;
	font-size: 18px;
	font-weight: 300;
	font-style: normal;
	padding: 0 20 0 20;
	color: #898989;
}

/*IPAD*/
@media (max-width: 700px) and (min-width: 451px) {
	nav {
		width: 350px;
		margin: auto;
	}
	.swiper-slide {
		padding: 0 60 0 60;
	}
}


/*DESK*/
@media (min-width: 701px){
	p {
		font-size: 18px;
	}

	.container {
		max-width: 800px;
	}

	nav {
		width: 450px;
		margin: auto;
	}

	.swiper-container {
		width: calc(50% - 48px);
		margin: 0;
	}

	.swiper-imagem {
		height: 350px;
	}

	.swiper-texto {
		height: 350px;
	}

	.card {
		display: flex;
		flex-direction: row;
		position: relative;
		justify-content: center;
		padding-bottom: 32px;
	}

	.arrows {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 100%;
		pointer-events: none;
		transform: none;
	}

	.prev, .next {
		padding: 12px;
		height: 100%;
		display: flex;
		justify-content:center;
		align-items: center;
		pointer-events: all;
	}

	.swiper-texto, .swiper-texto .swiper-wrapper {
		position: initial;
	}

	.swiper-pagination {
		position: absolute;
		bottom:12px !important;
		right: 0;
		left: 0;
	}

	.swiper-texto .swiper-slide {
		display: flex;
		justify-content:center;
		align-items: center;
	}
}

/*IPHONE 5/SE*/
@media only screen and (max-width: 322px){
	nav {
		font-size: 15px;
	}

	p {
		font-size: 15px;
	}

	.swiper-slide {
		font-size: 16px;
		padding: 0 10 0 10;
	}

	.swiper-texto {
		height: 240px;
	}

	.swiper-imagem {
		height: 210px;
	}

	.prev, .next {
		padding: 8px;
	}
}