@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/************************************************************************************
RESET
*************************************************************************************/

html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset {
	margin: 0;
	padding: 0;
	font-family: "Barlow Condensed", sans-serif;
}

img, fieldset {
	border: 0;
}

/* set html5 elements to block */
article, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}

/************************************************************************************
GENERAL STYLING
*************************************************************************************/

body {
	font-family: "Barlow Condensed", sans-serif;
	color: #242427;
	text-align:justify;
	background: #FFF;
	margin: 0 auto;

	overflow-x: hidden;
	height: 100svh;
	width: 100vw;
	
	display: flex;
}

::-webkit-scrollbar-thumb:vertical {background-color: #1D1D1D;; height:0px;cursor:pointer;}
::-webkit-scrollbar-thumb:horizontal { background-color: #1D1D1D;; height:0px;}
::-webkit-scrollbar { height:5px; width:0px; background-color: #DDD; -webkit-border-radius: 3px;-moz-border-radius: 3px;border-radius: 3px;} 

hr {
	width: 98%;
	border: 0 none #fff;
	border-top: .5px solid rgba(198,198,198,0.3);
	border-width: thin;
	height: 1px;
	margin: 1px auto;
	display: block;
	clear: both;
}

.borders{
	border: .5px solid rgba(198,198,198,0.5);
	border-width: thin;
}

.onflex-r{
	/* flexbox */
	display: flex;
	flex-wrap: wrap; /*nowrap*/
	flex-direction: row;	
	justify-content: /*flex-start center space-between space-around*/ center;
}

.onflex-w{
	/* flexbox */
	display: flex;
	flex-wrap: wrap; /*nowrap*/
	flex-direction: row;	
	justify-content: /*flex-start center space-between space-around*/ space-between;
}

.roll{
	max-height: 250px;
	min-height: 350px;
	overflow: auto;
	padding:0 2px;
}

.half{
	max-width: 60%;
	margin: 0 auto;
	padding: 0;
}

/************************************************************************************
STRUCTURE
*************************************************************************************/

#pagewrap {
	width: 100%;
	margin: 0 auto;
	padding:0;
}

/*************************************************************************************
CONTAINERS
**************************************************************************************/

#col-max{
	clear: both;
	width: 100%;
	margin: 0px auto;
	padding:0;
}

#container{
	clear: both;
	width: 100%;
	max-width: 1000px;
	height: auto;
	margin: 0px auto 30px;
	padding: 20px 0;
	overflow: hidden;
}

/*************************************************************************************
HEADER
**************************************************************************************/

#header{
	position: fixed;
	top: 0;
	width:100%;
	height: auto;
	margin:0 auto;
	padding: 0;
	z-index: 10000;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.7);
	background: #5B82F9;
}

#header-container{
	width: 1000px;
	height: auto;
	margin:0 auto;
	padding: 0px;
}

/************************************************************************************
MARCA
*************************************************************************************/

.marca{
	clear: both;
	width: 20px;
	height: auto;
	margin: 40px auto;
 	padding: 0px;
	position: relative;
}
.marca img{
	width:100%;
	height:auto;
	-webkit-filter: drop-shadow(2px 2px 1px rgba(0,0,0,.2) );
    filter: drop-shadow(2px 2px 1px rgba(0,0,0,.2) );
}

/************************************************************************************
MARCA
*************************************************************************************/

.perfil{
	clear: both;
	width: 250px;
	height: auto;
	margin: 20px auto;
 	padding: 0px;
	text-align: center;
	
	/* rounded corner */
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;

}
.perfil img{
	width:100%;
	height:auto;
	-webkit-filter: drop-shadow(2px 2px 1px rgba(0,0,0,.2) );
    filter: drop-shadow(2px 2px 1px rgba(0,0,0,.2) );
}

/*************************************************************************************
FATIAS
**************************************************************************************/

#slice{
	width: 23%;
	min-height: 10px;
	margin: 10px;
	padding: 0px;
	/*transition*/
	-webkit-transition: width 0.7s;
	-moz-transition: width 0.7s;
	-ms-transition: width 0.7s;
	-o-transition: width 0.7s;
}

#slice-1{
	width: 49%;
	min-height: 10px;
	margin: 5px;
	padding: 0px;
	/*transition*/
	-webkit-transition: width 0.7s;
	-moz-transition: width 0.7s;
	-ms-transition: width 0.7s;
	-o-transition: width 0.7s;
}

#slice-2{
	width: 60%;
	min-height: 10px;
	margin: 10px;
	padding: 0px;
	/*transition*/
	-webkit-transition: width 0.7s;
	-moz-transition: width 0.7s;
	-ms-transition: width 0.7s;
	-o-transition: width 0.7s;
	transition: width 0.7s;
}

	.slice-container{
		width: 100%;
		min-height: 5px;
		margin: 0 auto;
		padding: 0;
		overflow: hidden;
		background: #FFF;
		
		box-shadow: 0px 0px 3px rgba(148,148,148,0.2);
		
		/*transition*/
		-webkit-transition: width 0.7s;
		-moz-transition: width 0.7s;
		-ms-transition: width 0.7s;
		-o-transition: width 0.7s;
		transition: width 0.7s; 
		
		/* rounded corner */
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		border-radius: 6px;
	}
	
	.thumbs img{
		width: 19.2%;
		height: auto;
		margin: 1px;
		padding: 1px;
		cursor: pointer;
		float: left;
	}

	.thumbs img:hover, 
	.thumbs img.active{
		background: #DC260E;
	}

/*******************************************image */

.slice-image {
	width: 99.9%;
	height: auto;
	margin: 0;
	padding:0;
	float: center;
	overflow:hidden;
	background: #FFF;
	
	/*transition*/
	-webkit-transition: width 0.7s;
	-moz-transition: width 0.7s;
	-ms-transition: width 0.7s;
	-o-transition: width 0.7s;
	transition: width 0.7s;
}

.slice-image img{
	position: center;
	bottom: 0;
	width: 100%;
	height: auto;
	margin: 0;
	overflow: hidden;
	
	aspect-ratio: 1/ 1;
	object-fit: cover;
	background: #e3e9f7;

	/* rounded corner */
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

/*******************************************slice-text */

.slice-text{
	width: 98%;
	height: auto;
	margin:0 auto;
	padding:0px;
	overflow: hidden;
}

.slice-text h1, h2, h3, p, a{
	font-family: "Barlow Condensed", sans-serif;
	color: #555;
}

.slice-text h1{
	margin: 0;
	padding: 0;
	color: #1d1d1d;
	font-size: 1.8em;
	font-weight: 500;
	text-align: left;
	letter-spacing: -1.2px;
	line-height: 1em;
}

.slice-text h2{
	margin: 0;
	padding: 0;
	color: #1d1d1d;
	font-size: 1.25em;
	font-weight: 400;
	letter-spacing: -.8px;
	line-height: 1.1em;
}

.slice-text h3{
	margin: 0;
	padding: 0;
	font-size: 1.25em;
	font-weight: 400;
	text-align: left;
	letter-spacing: -.3px;
	line-height: 1.3em;
}

.slice-text p{
	margin: 0;
	padding: 0px;
	font-size: 1.18em;
	font-weight: 400;
	letter-spacing: -.3px;
	line-height: 1.3em;
	text-align: justify;
}

.slice-text a {
	font-weight:400;
	text-decoration:none;
}

.slice-text a:hover {
	color: #0085fe;
	text-decoration: none;
}

	.slice-caption{
		width: 100%;
		height: auto;
		margin: 10px auto;
		padding: 10px;
		overflow: hidden;
		/* rounded corner */
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		border-radius: 6px;
		
		font-size: 1.1em;
		font-weight: 500;
		color:#1d1d1d;
		text-transform: uppercase;
		
		border: .5px solid rgba(198,198,198,0.5);
		border-width: thin;
	}
	
	.text-title{
		width: 100%;
		height: 20px;
		margin: 0 auto;
		padding: 8px 0px;
		overflow: hidden;
		font-size: .9em;
		font-weight: 400;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
	}
	
	.text-title a {
		color: #777;
		font-weight: 400;
		text-decoration:none;
	}
	
	.text-botton{
		width: 100%;
		height: 60px;
		margin: 0 auto;
		padding: 5px 0px;
		overflow: hidden;
		color: #1d1d1d;
		font-size: .9rem;
		font-weight: 500;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
	}
	
	.text-botton a {
		font-size: 1.1rem;
		font-weight: 700;
		color: #1d1d1d;
		font-weight: 400;
		text-decoration:none;
	}

	.text-preco{
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 0px 0px;
		overflow: hidden;
	}
	
/*************************************************************************************
LINK
**************************************************************************************/

a.link {
	cursor: pointer;
	width: 24px;
	height: auto;
	color: #1d1d1d;
	display: block;
	margin: 5px auto;
	padding: 16px 8px 20px 8px; 
	font-size: 2em;	
	font-weight:500;
	line-height: 2px;
	text-decoration: none;
	text-align: center;
	float: none;
	
	/*background*/
	background-color: #f5f5f5;
		
	/*transition*/
	-webkit-transition: width 0.7s;
	-moz-transition: width 0.7s;
	-ms-transition: width 0.7s;
	-o-transition: width 0.7s;
	transition: width 0.7s;
	
	/* rounded corner*/
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	
	border: .5px solid rgba(198,198,198,0.5);
	border-width: thin;
}

a.link:hover{
	/*color*/
	color: #1d1d1d;
	/*background*/
	background: #FFF;
	
	border: .5px solid #1d1d1d;
	border-width: thin;
}

/*************************************************************************************
BT SMART
**************************************************************************************/

a.link-2{
	cursor: pointer;
	color: #FFF;
	display: block;
	margin: 15px auto;
	padding: 10px 15px; 
	font-size: 1.1em;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	float: left;
	
	/*background*/
	background-color: #14ba67;
		
	/*transition*/
	-webkit-transition: width 0.7s;
	-moz-transition: width 0.7s;
	-ms-transition: width 0.7s;
	-o-transition: width 0.7s;
	transition: width 0.7s;
	
	/* rounded corner*/
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

a.link-2:hover{
	/*color*/
	color: #FFF;
	/*background*/
	background-color: #119f58;
	
	text-decoration: none;
}

/*************************************************************************************
WHATSAPP
**************************************************************************************/

a.whatsapp{
	cursor: pointer;
	color: #FFF;
	display: block;
	width: 25%;
	margin: 15px auto;
	padding: 10px 15px; 
	font-size: 1.1em;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	float: center;
	
	/*background*/
	background-color: #14ba67;
		
	/*transition*/
	-webkit-transition: width 0.7s;
	-moz-transition: width 0.7s;
	-ms-transition: width 0.7s;
	-o-transition: width 0.7s;
	transition: width 0.7s;
	
	/* rounded corner*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

a.whatsapp:hover{
	/*color*/
	color: #FFF;
	/*background*/
	background-color: #119f58;
	
	text-decoration: none;
}

/*************************************************************************************
FOOTER
**************************************************************************************/

#footer{
	clear:both;
	width: 100%;
	height: auto;
	padding: 0px ;
	margin: 10px auto 0 auto;
	/*border-top: .5px solid #101722;
	border-width: thin;*/
}

#footer-container{
	clear: both;
	width: 100%;
	max-width:1000px;
	height:auto;
	padding:20px 0;
	margin:0 auto;;
}

#feet_text{
	width:98%;
	min-height: 2px;
	margin:2px auto;
	padding:0px;
	
	/*transition*/
	-webkit-transition: width 0.7s;
	-moz-transition: width 0.7s;
	-ms-transition: width 0.7s;
	-o-transition: width 0.7s;
	transition: width 0.7s;
}

#feet_text ul{
	width: 100%;
	margin: 5px auto 0 auto;
	padding: 0;
	text-align: left;
	display: block;
	/* rounded corner 
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;*/
	float:none;
	/* transition */
	-webkit-transition: width .7s;
	-moz-transition: width .7s;
	transition: width .7s;
	overflow:hidden;
}

#feet_text li{
	font-weight: 400;
	text-align: left;
	margin: 5px auto;
	padding: 0;
	display: block;
	/* transition */
	-webkit-transition: width .7s;
	-moz-transition: width .7s;
	transition: width .7s;
	overflow:hidden;
}

#feet_text h2{
	color: #444;
	text-align: left;
	margin: 0;
	padding: 0px 0;
	font-size: 1.55em;
	font-weight: 500;
	line-height: 1em;
	letter-spacing:-1px;
	text-decoration: none;
}

#feet_text p{
	color: #444;
	text-align: center;
	margin:5px 0 0 0;
	padding:5px 0 0 0;
	font-size: 1.1em;
	font-weight: 400;
	line-height: 1.2em;
	letter-spacing:0px;
	text-decoration: none;
}

#feet_text a{
	color: #444;
	text-align: left;
	margin:5px 0 0 0;
	padding:5px 0 0 0;
	font-size: 1.1em;
	font-weight: 400;
	line-height: 1.2em;
	letter-spacing:0px;
	text-decoration: none;
	text-transform: uppercase;
}

#feet_text a:hover{
	text-decoration:underline;
	color:#5B82F9;
}

/************************************************************************************
CLEARFIX
*************************************************************************************/
.clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.clearfix { display: inline-block; }
.clearfix { display: block; zoom: 1; }