@charset "UTF-8";


/* ----------------- Reset all styles ----------------- */
*{
	margin:0;
	padding:0;
	border:0;
	font-family: Arial, Helvetica, sans-serif;
	color:#000000;
}


/* ----------------- Website background and general text colour ----------------- */
body{
	background-image:url(../images/backgroundtexture.png);
	background-color:#f9f9f9;
	color:#000000;
}

/* ----------------- Wrapper - keeps all content in the center of page -----------------  */
.wrapper{
	margin:auto;
	width:90%;
	height:auto;
}

/* The rest is pretty self explanatory - it appears in the order that it occurs on the HTML document */

#top{
	height:40px;
}

#logo{
	margin-top:5%;
	text-decoration:none;
	margin-right: 5px;
	margin: 0 auto;	
}

#logoimage{
	width:32%;
	float:left;
	padding-right:5px;
	margin-top: 5px;
	padding-bottom: 0px;
}

#logotitle{
	float:left;
	font-family:Arial;
	color:#990000;
	font-weight:normal;
	font-size:250%;
	text-shadow: 0 1px 1px #FFF;
}

#centro{
	float:none;
	font-family:Arial;
	color:#666666;
	width: 80%;
	margin-left:10%;
	font-weight:normal;
	font-size:100%;
	text-align: left;
}


.titulocentro¨{
	color:#990000;
	text-align: center;

}

#logotitle a{
	color:#2d2d2d;
	text-decoration:none;
}

.titulocentro¨{
	color:#990000;
	text-align: center;
	font-size: 250%;
	
}

.textocentro¨{
	color:#333333;
	text-align:justify;
	font-size: 100%;
}

.subtitulocentro¨{
	color:#666666;
	text-align: center;
	font-size: 50%;

}

nav{
	float:right;
	width:750px;
	display:inline;
	margin:2% auto 3% auto;


}

nav ul li{
	display: inline;
	width:120px;
	float:left;
	padding-bottom: 10px;
	margin-right:50px;
	text-align:center;	
}

nav ul li a{
	font-family:Lato, Helvetica, Arial, sans-serif;
	width:90%;
	padding:20px;
	text-decoration:none;
	text-transform:uppercase;
	font-weight:300;
	line-height:100%;
	display: inline;
	color:#2d2d2d;
}

nav ul li a:hover{
	color:#f38094;
}

nav ul li p{
	font-family:Lato, Helvetica, Arial, sans-serif;
	width:90%;
	text-decoration:none;
	text-transform:uppercase;
	font-weight:400;
	line-height:250%;
	display:block;
	color:#f38094;
}

hr{
	height:1px;
	width:100%;
	background-color:#2d2d2d;
	margin:3% 0;
}

header{
	width:100%;
	margin: 2% 0 2% 0;
}

header h1{
	font-family: Lato, Arial, Helvetica, sans-serif;
	font-size:210%;
	color:#990000;
	font-weight:normal;
	letter-spacing:1px;
	text-align: left;
}

header h2{
	font-family: Lato, Arial, Helvetica, sans-serif;
	font-size:100%;
	font-weight:normal;
	color:#f38094;
}

header p{
	font-family: Lato, Arial, Helvetica, sans-serif;
	font-size:90%;
	font-weight:normal;
	margin-top:2%;
}
		
#workbody{
	width:100%;
	margin-top:2%;
}

#workbody img{
	width:200px;
	border-radius:15px;
}

#workbody h5{
	border-radius:0 0 15px 15px;
	font-family: Lato, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	color:#2d2d2d;
	margin:10px 0 6% 5px;
}

/* - - - - - - - - - - - - - - -  Slider START  - - - - - - - - - - - - - - - */

.html_carousel {
}
.html_carousel div.slide {
	position: relative;
	vertical-align: top;
}	
.html_carousel div.slide img {
	width: 100%;
	height: auto;
	-webkit-box-shadow: 0 1px 1px #c1c1c1;
    -moz-box-shadow: 0 1px 1px #c1c1c1;
    box-shadow: 0 1px 1px #c1c1c1;
	border-radius:15px;
	vertical-align:top;
}

.clearfix {
	float: none;
	clear: both;
}

/* - - - - - - - - - - - - - - -  Slider END  - - - - - - - - - - - - - - - */


/* ----------------------- WORK LINKS START ------------------------- */
#work{
	width:1000px;
	margin:3% auto 3% auto;
}

.item{
	border-radius:15px;
	width:150px;
	background-color:#FFF;
	margin:10px;
	float:left;
	-webkit-box-shadow: 0 1px 3px #c3c3c3;
    -moz-box-shadow: 0 1px 3px #c3c3c3;
    box-shadow: 0 1px 3px #c3c3c3;  
	overflow:hidden;
	-webkit-transition: box-shadow 0.2s ease-in-out;
	-moz-transition: box-shadow 0.2s ease-in-out;
	-o-transition: box-shadow 0.2s ease-in-out;
	-ms-transition: box-shadow 0.2s ease-in-out;
	transition: box-shadow 0.2s ease-in-out;
}

.item:hover{
	-webkit-box-shadow: 0 0 8px #00cc00, 0 0 8px #f38094;
    -moz-box-shadow: 0 0 8px #00cc00,  0 0 8px #f38094;
    box-shadow: 0 0 8px #00cc00,  0 0 8px #f38094; /*------controla borde de items----------*/
}
	

.item img{
	display:block;
	width:100%;
	-webkit-box-shadow: 0 2px 1px #c3c3c3;
    -moz-box-shadow: 0 2px 1px #c3c3c3;
    box-shadow: 0 2px 1px #c3c3c3;
	border-radius:15px 15px 0 0;
	opacity:0.8;
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.item img:hover{
	opacity:1;
}


.item h3{
	font-family:Lato, Arial, Helvetica, sans-serif;
	font-size:105%;
	font-weight:normal;
	padding:5px 0 0 8px;
	color:#2d2d2d;
	text-align:center;
	text-decoration:none;
}

.item h3 a{
	text-decoration:none;
	color:#2d2d2d;
}

.item p{
	font-family:Lato, Arial, Helvetica, sans-serif;
	font-size:70%;
	font-weight:normal;
	padding:0 0 0 8px;
	color:#990000;
	text-decoration:none;
	text-align:center;
}

/* ----------------------- WORK LINKS END ------------------------- */


/* ----------------------- CATEGORIAS LINKS START ------------------------- */
#categorias{
	width:225px;
	margin:3% auto 3% auto;
	padding-left:20px;
}

.categoria{
	border-radius:10px;
	width:230px;
	background-color:#FFF;
	margin:10px;
	float:left;
	-webkit-box-shadow: 0 1px 3px #c3c3c3;
    -moz-box-shadow: 0 1px 3px #c3c3c3;
    box-shadow: 0 1px 3px #c3c3c3;  
	overflow:hidden;
	-webkit-transition: box-shadow 0.2s ease-in-out;
	-moz-transition: box-shadow 0.2s ease-in-out;
	-o-transition: box-shadow 0.2s ease-in-out;
	-ms-transition: box-shadow 0.2s ease-in-out;
	transition: box-shadow 0.2s ease-in-out;
}

.categoria:hover{
	-webkit-box-shadow: 0 0 8px #00cc00, 0 0 8px #f38094;
    -moz-box-shadow: 0 0 8px #00cc00,  0 0 8px #f38094;
    box-shadow: 0 0 8px #FFFF00,  0 0 8px #f38094; /*------controla borde de items----------*/
}
	

.categoria img{
	display:block;
	width:100%;
	-webkit-box-shadow: 0 2px 1px #c3c3c3;
    -moz-box-shadow: 0 2px 1px #c3c3c3;
    box-shadow: 0 2px 1px #c3c3c3;
	border-radius:15px 15px 0 0;
	opacity:0.8;
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.categoria img:hover{
	opacity:1;
}


.categoria h3{
	font-family:Lato, Arial, Helvetica, sans-serif;
	font-size:105%;
	font-weight:normal;
	padding:5px 0 0 8px;
	color:#2d2d2d;
	text-decoration:none;
}

.categoria h3 a{
	text-decoration:none;
	color:#2d2d2d;
}

.categoria p{
	font-family:Lato, Arial, Helvetica, sans-serif;
	font-size:70%;
	font-weight:normal;
	padding:0 0 0 8px;
	color:#f38094;
	text-decoration:none;
}

/* ----------------------- CATEGORIAS LINKS END ------------------------- */
#bottom h3{
	margin:4% 0 3% 0;
	font-family:Cookie, Arial, Helvetica, sans-serif;
	font-size:190%;
	font-weight:normal;
	text-align:left;
	color:#f38094;
	text-shadow: 0 1px 1px #c1c1c1;
}

footer{
	width:100%;
	padding:10px 0;
	background-color: #999999;
}

.left{
	margin-top:1%;
	width:50%;
	float:left;
	margin-bottom:2%;
}

.right{
	margin-top:1%;
	width:40%;
	float:left;
	margin-bottom:2%;
	text-align:right;
	
}
.right h3{
	font-family: Arial, Helvetica, sans-serif;
	font-size:100%;
	font-weight:normal;
	color:#333333;
	text-shadow: 0 1px 1px #dadada;
}

.left h3{
	font-family:Cookie, Arial, Helvetica, sans-serif;
	font-size:180%;
	font-weight:normal;
	text-align:center;
	color:#f38094;
	margin-bottom:5%;
	text-shadow: 0 1px 1px #dadada;
}

/* ----------------------------- CONTACT FORM START ----------------------------------- */

.contacttitle{
	font-family:Cookie, Arial, Helvetica, sans-serif;
	font-size:180%;
	font-weight:normal;
	color:#f38094;
	margin-bottom:10px;
}

#formwrap{
	width:100%;
}

.formstyle { 
	border: 1px solid #ccc;
	color: #000;
	font-family:Lato, Arial, Helvetica, sans-serif;
	font-size:14px;
	width: 95%;
	background-color:rgba(255,255,255,1);
	background-image:url(../images/backgroundtexture.png);
	margin-bottom:10px;
	opacity:0.9;
	padding:3px;
	-webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;
   border-radius:2px;
}

.formstyletwo { 
	color: #FFF;
	font-family:Lato, Arial, Helvetica, sans-serif;
	font-size:15px;
	text-align:left;
	width:30%;
	background-color:#2d2d2d;
	border:0px;
	
}

.formstyletwo:hover { 
	color:#f38094;
	cursor:pointer;

}

textarea{ 
	border: 1px solid #ccc;
	color: #000;
	font-family:Lato, Arial, Helvetica, sans-serif;
	font-size:14px;
	width:95%;
	height:80px;
	background-color:rgba(255,255,255,1);
	background-image:url(../images/backgroundtexture.png);
	margin-bottom:10px;
	border-radius:2px;
	padding:3px;
	opacity:0.9;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}


input:focus, input.focused, textarea:focus, textarea.focused {  color: #3e3e3e; opacity:1;}

#error{
	color:#990000;
	float:left;
	font-family:Regular, Arial, Helvetica, sans-serif, "Helvetica Neue Light";
	font-size:18px;
}

#error ul{
	list-style-type: none;
	padding-top:5px;
}

/* ----------------------------- CONTACT FORM END ----------------------------------- */
	
.right{
	margin-top:4%;
	width:48%;
	float:right;
	margin-bottom:2%;
	font-family: Arial, Helvetica, sans-serif;
}


.menu_inferior{
	margin-top:4%;
	width:100%;
	text-aling: center;
	margin-bottom:2%;
	font-family: Arial, Helvetica, sans-serif;
}
.right p{
	font-family:Lato, Arial, Helvetica, sans-serif;
	font-size:100%;
	line-height:140%;
}

.icon{
	float:right;
	width:32px;
	margin:95px 0 2px 4%;
	opacity:0.85;
}

.icon:hover{
	opacity:1;
}

.social{
	color:#666666;
	text-align: center;
}

.social p{
	float:none;
	letter-spacing:1px;
	margin:98px 0 0 0;
}

.clearfix {
	float: none;
	clear: both;
}


.menu_inferior {
	float: none;
	font-size:14px;
	text-aling: center;
}
/* -- Make the highlight colours pretty -- */
::selection      { background:#f38094; color:#FFF;}
::-moz-selection  { background:#f38094; color:#FFF;}





/* ---------------------- RESPONSIVE STUFF - ONLY TOUCH IF YOUR'E CONFIDENT WITH CSS ---------------------- */



@media only screen and (max-width: 1279px) {
#logo{
		margin-right: 10px;
		padding-right:10px;
		padding-bottom: 10px;
	}
	.wrapper{
		width:90%;
	}
	
}

@media only screen and (max-width: 1105px) {
#logo{
		margin-right: 10px;
		padding-right:10px;

	}
	
	nav{
		width:100%;
		margin: 0 auto;
		margin-top: 20px; /*----controla distancia entre parte superior de página e a barra de navegacion */
		position:relative;

	}
			.html_carousel {
	}
	.html_carousel div.slide {
	position: absolute;
	margin-top:0px;
	padding-top: 0px;
	vertical-align:top;
	}	
	.html_carousel div.slide img {
	width: 100%;
	height: auto;
	vertical-align: top;
	-webkit-box-shadow: 0 1px 1px #c1c1c1;
    -moz-box-shadow: 0 1px 1px #c1c1c1;
    box-shadow: 0 1px 1px #c1c1c1;
	border-radius:15px;
	}

	
	#work{
		width:900px;
}

	.item{
		width:164px;
		height:170px;
		margin:8px;
	}
}

@media only screen and (max-width: 999px) {
#logo{
		width: 100%;
		margin-right: 10px;
		padding-right:10px;
		position:absolute;
		padding-bottom: 10px;
		left:40px;
	}
	
	#logoimage{
	width:90%;
	float:left;
	padding-right:10%;
	padding-bottom: 10px;
     }

	nav{
		width:100%;
		margin: 0 auto;
		margin-top: 250px; /*----controla distancia entre parte superior de página e a barra de navegacion */
		position:relative;

	}
		.html_carousel {
	}
	.html_carousel div.slide {
	position: absolute;
	margin-top:0px;
	padding-top: 0px;
	vertical-align:top;
	}	
	.html_carousel div.slide img {
	width: 100%;
	height: auto;
	vertical-align: top;
	-webkit-box-shadow: 0 1px 1px #c1c1c1;
    -moz-box-shadow: 0 1px 1px #c1c1c1;
    box-shadow: 0 1px 1px #c1c1c1;
	border-radius:15px;
	}

	
	#work{
		width:750px;	
}

	.item{
		width:136px;
		height:144px;
		margin:7px;
	}
	
	.item h3{
		font-size:90%;
	}
	
	.item p{
		font-size:60%;
	}
}

@media only screen and (max-width: 835px) {
#logo{
		width: 100%;
		margin-right: 10px;
		padding-right:10px;
		position:absolute;
		left:40px;
	}
	
	#logoimage{
	width:90%;
	float:left;
	padding-right:10%;
	padding-bottom: 10px;
     }

	nav{
		width:100%;
		margin: 0 auto;
		margin-top: 200px; /*----controla distancia entre parte superior de página e a barra de navegacion */
		position:relative;
	}
	
	
	.html_carousel {
	}
	.html_carousel div.slide {
	position: absolute;
	margin-top:0px;
	padding-top: 0px;
	vertical-align:top;
	}	
	.html_carousel div.slide img {
	width: 100%;
	height: auto;
	vertical-align: top;
	-webkit-box-shadow: 0 1px 1px #c1c1c1;
    -moz-box-shadow: 0 1px 1px #c1c1c1;
    box-shadow: 0 1px 1px #c1c1c1;
	border-radius:15px;
	}

	#work{
		width:650px;	
}

	.item{
		width:116px;
		height:121px;
		margin:7px;
	}
	
	.item h3{
		font-size:75%;
	}
	
	.item p{
		font-size:40%;
	}
}

@media only screen and (max-width: 860px) {
	#logo{
		width:100%;
		margin-right: 10px;
		padding-right:10px;
		position:absolute;
		left:35px;
	}
	
	#logoimage{
	width:90%;
	float:left;
	padding-right:10%;
	padding-bottom: 10px;
     }

	nav{
		width:100%;
		margin: 0 auto;
		margin-top: 250px; /*----controla distancia entre parte superior de página e a barra de navegacion */
		position:relative;

	}
	
		.html_carousel {
	}
	.html_carousel div.slide {
	position: absolute;
	margin-top:0px;
	padding-top: 100px;
	vertical-align:top;
	}	
	.html_carousel div.slide img {
	width: 100%;
	height: auto;
	vertical-align: top;
	-webkit-box-shadow: 0 1px 1px #c1c1c1;
    -moz-box-shadow: 0 1px 1px #c1c1c1;
    box-shadow: 0 1px 1px #c1c1c1;
	border-radius:15px;
	}


	header h1{
		font-size:160%;
	}
	
	header h2{
		font-size:100%;
	}
		.right{
		width:100%;
	
	}
			.right{
		width:100%;
	
	}
	.left{
		width:100%;
	
	}

}

@media only screen and (max-width: 600px) {
	
	#logo{
		width:100%;
		display:inline;
		margin-bottom:1%;
		margin-right: 10px;
		position:absolute;
		left:10px;
		padding-bottom: 20px;
	}

	nav{
		width:80%;
		margin: 0 auto;
		margin-top: 120px; /*----controla distancia entre parte superior de página e a barra de navegacion */
		position:relative;
	}


#logoimage{
	width:90%;
	float:left;
	padding-right:10%;
	padding-bottom: 10px;
	
}

.html_carousel {
	}
	.html_carousel div.slide {
	position: relative;
	margin-top:0px;
	vertical-align:top;
	height: 100px;
	top: -50px;
	
	}	
	.html_carousel div.slide img {
	width: 100%;
	height: auto;
	-webkit-box-shadow: 0 1px 1px #c1c1c1;
    -moz-box-shadow: 0 1px 1px #c1c1c1;
    box-shadow: 0 1px 1px #c1c1c1;
	border-radius:15px;
	vertical-align: top;
	top: -250px;
	
	
	header h1{
		font-size:140%;
	}
	
	header h2{
		font-size:70%;
		margin-bottom:5%;
	}
	
	.left{
		width:100%;
	}
	
	.right{
		width:100%;
	
	}
	
	#work{
		width:460px;	
}

	.item{
		width:210px;
		height:215px;
		margin:10px;
	}
	
	.item h3{
		font-size:130%;
	}
	
	.item p{
		font-size:90%;
	}
}

@media only screen and (max-width: 400px) {
	#logo{
		width:100%;
		display:inline;
		margin-bottom:1%;
		margin-right: 10px;
		position:absolute;
		left:10px;
		padding-bottom: 20px;
	}

	nav{
		width:80%;
		margin: 0 auto;
		margin-top: 100px; /*----controla distancia entre parte superior de página e a barra de navegacion */
		position:relative;
	}


#logoimage{
	width:90%;
	float:left;
	padding-right:10%;
	padding-bottom: 10px;
	
}

.html_carousel {
	}
	.html_carousel div.slide {
	position: relative;
	margin-top:0px;
	vertical-align:top;
	height: 100px;
	top: -50px;
	
	}	
	.html_carousel div.slide img {
	width: 100%;
	height: auto;
	-webkit-box-shadow: 0 1px 1px #c1c1c1;
    -moz-box-shadow: 0 1px 1px #c1c1c1;
    box-shadow: 0 1px 1px #c1c1c1;
	border-radius:15px;
	vertical-align: top;
	top: -250px;
	

	}
	
	#work{
		width:300px;	
	}

	.item{
		width:136px;
		height:140px;
		margin:7px;
	}
	
	.item h3{
		font-size:75%;
	}
	
	.item p{
		font-size:40%;
	}
		.right{
		width:100%;
	
	}
	.left{
		width:100%;
	
	}
	
}

/* ------- END :) ------- */

@media only screen and (max-width: 321px) {
	#logo{
		width:100%;
		display:inline;
		margin-bottom:1%;
		margin-right: 10px;
		position:absolute;
		left:10px;
		padding-bottom: 20px;
	}

	nav{
		width:80%;
		margin: 0 auto;
		margin-top: 90px; /*----controla distancia entre parte superior de página e a barra de navegacion */
	}


#logoimage{
	width:90%;
	float:left;
	padding-right:10%;
	padding-bottom: 10px;
	
}

.html_carousel {
	}
	.html_carousel div.slide {
	position: absolute;
	margin-top:0px;
	vertical-align:top;
	}	
	.html_carousel div.slide img {
	width: 100%;
	height: 100px;
	-webkit-box-shadow: 0 1px 1px #c1c1c1;
    -moz-box-shadow: 0 1px 1px #c1c1c1;
    box-shadow: 0 1px 1px #c1c1c1;
	border-radius:15px;
	vertical-align: top;

	}
	
	#work{
		width:300px;	
	}

	.item{
		width:136px;
		height:140px;
		margin:7px;
	}
	
	.item h3{
		font-size:75%;
	}
	
	.item p{
		font-size:40%;
	}
		.right{
		width:100%;
	
	}
	.left{
		width:100%;
	
	}
	
}

/* ------- END :) ------- */
