﻿@import "reset.css";
@import "grid.css";
@import "prettyPhoto.css";
@import "superfish.css";
@import "ui.totop.css";



/*-------------Acrescentei-------------------------------------------------------------------------------------------------------------*/


/*Paginação*/
.paginacao {
	text-align: center;
	margin: 30px 0;
}

	.paginacao a,
	.paginacao .pagina-atual {
		display: inline-block;
		min-width: 40px;
		padding: 8px 12px;
		margin: 3px;
		border: 1px solid #ccc;
		border-radius: 5px;
		text-decoration: none;
		font-weight: bold;
		transition: all 0.2s ease;
	}

	.paginacao a {
		background-color: #fff;
		color: #333;
	}

		.paginacao a:hover {
			background-color: #F15A24;
			border-color: #F15A24;
			color: #fff;
		}

	.paginacao .pagina-atual {
		background-color: #F15A24;
		border-color: #F15A24;
		color: #fff;
		cursor: default;
	}


/*----------------------------------------------------------*/
.descricao {
	display: block; /* permite controlar largura */
	width: 100%; /* ocupa toda a largura da coluna */
	text-align: justify;
	word-wrap: break-word;
}

text-justify {
	text-align: justify !important;
}


.img-prod {
	cursor: pointer;
	transition: transform .2s ease-in-out;
	border-radius: 5px;
}

	.img-prod:hover {
		transform: scale(1.05);
	}


.titulo-centro {
	text-align: center;
}
.card-header bg-primary text-white {
	background-color: rgb(241, 90, 36);
}
footer {
	margin-top: 0;
	padding-bottom: 20px !important; /* ou 0 se quiser colar completamente */
	padding-top: 10px !important;
}
footer .wrapper,
footer .container_12 {
	padding-top: 0;
	padding-bottom: 0;
	margin: 0 auto;
}

/*---------------------- HEADER & NAVBAR ----------------------*/
header {
	position: relative;
	width: 100%;
	z-index: 1000; /* assegura que fica acima do conteúdo */
}

.bg-orange {
	background-color: rgb(241, 90, 36);
}

/* Evita que o conteúdo da página suba sob o header fixo */
body {
	padding-top: 5px;
}

/* Navbar principal */
.navbar {
	min-height: 80px; /* garante altura mínima consistente */
}

	/* Grupo esquerdo (logo + manutenção + carrinho) */
	.navbar .d-flex.align-items-center {
		align-items: center !important;
	}

/* Logotipo */
.logo-img {
	height: 60px;
	width: auto;
	object-fit: contain;
}

/* Ícones (login e carrinho) */
.icon-btn {
	width: 30px;
	height: 30px;
	cursor: pointer;
}

/* Badge (número de itens no carrinho) */
#numeroItens {
	font-size: 0.7rem;
	padding: 4px 6px;
	border-radius: 50%;
}

/* Itens do menu */
.navbar-nav .nav-link {
	color: white !important;
	text-transform: uppercase;
	font-weight: 700;
	padding: 0.5rem 1rem;
	transition: color 0.3s;
}

	.navbar-nav .nav-link:hover {
		color: #d9d9d9 !important;
	}

	.navbar-nav .nav-link.active {
		text-decoration: underline;
	}

/* Hamburger */
.navbar-toggler {
	border-color: rgba(0, 0, 0, 0.3);
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/*---------------------- MOBILE FIXES ----------------------*/
@media (max-width: 991px) {
	/* Faz o menu aparecer abaixo do header */
	.navbar-collapse {
		background-color: rgb(241, 90, 36);
		position: absolute;
		top: 100%; /* começa logo abaixo do header */
		left: 0;
		width: 100%;
		text-align: center;
		padding: 1rem 0;
		z-index: 999;
	}

	/* Corrige ícones e alinhamento */
	.navbar .d-flex.align-items-center {
		align-items: center !important;
	}

	/* Links visíveis em branco no mobile */
	.navbar-nav .nav-link {
		color: #fff !important;
	}

	/* Evita que o header mude de altura */
	.navbar {
		position: relative;
	}
}


/* ======================= Navbar ======================= */

/* Mantém o fundo do header original */
header .navbar {
	padding: 0.5rem 0; /* mantém espaçamento */
	/* sem alterar background-color */
}

/* Marca / logotipo */
.navbar-brand {
	
	font-size: 1.30rem;
	color: white !important; /* letras brancas */
	text-transform: uppercase; /* letras maiúsculas */
}

/* Botão hamburger (toggler) */
.navbar-toggler {
	border-color: rgba(255,255,255,1);
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}


/* Menu links */
.navbar-nav .nav-link {
	color: white !important; /* letras brancas */
	text-transform: uppercase; /* letras maiúsculas */
	font-weight: 700; /* destaque */
	padding: 0.5rem 1rem; /* espaçamento entre links */
	transition: color 0.3s; /* efeito suave ao passar o mouse */
}

	/* Link ativo */
	.navbar-nav .nav-link.active {
		text-decoration: underline; /* sublinhado */
		
	}

	/* Hover / efeito do mouse */
	.navbar-nav .nav-link:hover {
		color: #d9d9d9 !important; /* escurece ao passar o mouse */
	}





.entrar {
	margin-top: 15px;
	
}

.entrar .btn {
	background-color: rgb(102, 187, 229) !important;
	border-color: rgb(102, 187, 229) !important;
	color: white !important; /* para garantir contraste do texto */
}

	.entrar .btn:hover {
		background-color: rgb(72, 157, 199) !important; /* tom mais escuro no hover */
		border-color: rgb(72, 157, 199) !important;
	}

.manutencao {
	position: relative;
	display: inline-block;
	vertical-align: middle; /* já ajuda no alinhamento */
	margin-left: 15px;
	margin-top: 8px; 
	
}

.cod-col {
	width:150px !important;	 /* ajusta conforme precisares */
	white-space: nowrap; /* evita que quebre em várias linhas */
	text-align: center; /* centraliza o conteúdo */
}

.table th:nth-child(1), .table td:nth-child(1) {
		width: 35%; /* Descrição do Serviço */
	}

.table td, .table th {
	vertical-align: middle; /* Garante alinhamento vertical para todas as células */
}

.btn-delete {
	display: inline-block;
	vertical-align: middle;
}

.table td.text-center {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%; /* garante alinhamento no meio da célula */
	padding: 0; /* evita espaçamento extra */
}

.carrinho-wrapper {
	position: relative;
	display: inline-block;
	vertical-align: middle; /* já ajuda no alinhamento */
	margin-left: 15px;
	margin-top: 8px; /* 🔽 desce o carrinho */
}



#numeroItens {
	position: absolute;
	top: -8px;
	right: -8px;
	background: blue; /* fundo vermelho */
	color: white; /* texto branco para aparecer */
	font-size: 12px;
	font-weight: bold;
	border-radius: 50%;
	padding: 2px 6px;
	min-width: 18px;
	text-align: center;
}
.paginacao {
	text-align: right; /* alinha o conteúdo à esquerda */
	margin-right: 20%; /* margem esquerda de 10% */
}

	.paginacao span {
		display: inline-block; /* mantém os elementos na mesma linha */
		font-size: 1.1em; /* Aumenta o tamanho da fonte */
		font-weight: bold;
	}

.inserir {
	width: 100%;
	background: rgb(241, 90, 36);
	-moz-box-shadow: 2px 3px RGB(102, 187, 229);
	-webkit-box-shadow: 2px 3px RGB(102, 187, 229);
	box-shadow: 2px 3px RGB(102, 187, 229);
}
.inserir1 {
	margin-left: 10%; 
}
#inserir1 {
	margin-left: 10%;
}
.linha {
	display: flex;
	gap: 20px; /* espaço entre os campos */
	align-items: flex-start;
	
}

	.linha > div {
		flex: 1; /* faz cada campo ocupar o mesmo espaço */
	}
/* Estilo para as caixas de texto */
.inserir1 input[type="text"],
.inserir1 select {
	width: 100px; /* Igual às textboxes */
	padding: 5px; /* Espaçamento interno */
	border: 1px solid #ccc; /* Borda suave */
	border-radius: 4px; /* Cantos arredondados */
	font-size: 14px; /* Tamanho do texto */
	box-sizing: border-box; /* Inclui padding no cálculo do width */
}

	


.box-fin{
	overflow: hidden;
	padding: 40px 0;
	margin-bottom: 46px;
	width: 100%;
}
.button-container {
	text-align: center;
	margin-top: 10px; /* opcional */
}



.box-work {
	width: 200px; /* define a largura desejada */
	height: 150px; /* altura para a imagem caber proporcionalmente */
	overflow: hidden;
	margin: 0 auto; /* centraliza horizontalmente, opcional */
	border: 1px solid #ccc; /* para visualização, opcional */
}

	.box-work figure img {
		width: 100%;
		height: 100%;
		object-fit: cover; /* mantém proporção, corta excesso */
	}

.image-container {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}

	.image-container img {
		width: 100%;
		display: block;
	}

.image-text {
	position: absolute;
	top: 0px; /* puxa para o topo */
	right: 0px;
	z-index: 2; /* IMPORTANTE: garante que o texto fique acima da imagem */
	color: white;
	font-size: 18px;
	background-color: rgba(255, 0, 0, 0.7); /* contraste com a imagem */
	padding: 2px 4px;
	border-radius: 8px;
}

	
	.btn-red-rounded:hover {
		background-color: rgba(255, 0, 0, 0.85)
	}

	/*Mais*/

/* Define imagem com 15% da largura do ecrã */
.img-responsiva {
	width: 15vw;
	height: 15vw;
	object-fit: cover;
	cursor: pointer;
	display: block;
	margin: 0 auto;
	transition: transform 0.3s ease;
}


.produto-container {
	text-align: center;
	padding: 15px;
}

.produto-descricao {
	font-weight: bold;
	margin-top: 10px;
}

.produto-preco {
	display: block;
	margin-top: 5px;
	color: #333;
}

.btn-red-rounded {
	background-color: red;
	color: white;
	border: none;
	border-radius: 20px;
	padding: 8px 16px;
	cursor: pointer;
	font-weight: bold; /* negrito, como antes */
		
}

	.btn-red-rounded:hover {
		background-color: darkred;
	}

@media (max-width: 768px) {
	.img-responsiva {
		width: 100%;
		max-width: 200px; /* limite superior */
		height: auto; /* mantém proporção */
	}
}



.img-responsiva {
	width: 250px;
	max-height: 200px;
	height: auto;
	object-fit: contain;


	cursor: pointer;
	display: block;
	margin: 0 auto;
}

	.img-responsiva:hover {
		transform: scale(1.5);
		z-index: 10;
		position: relative;
	}
@media (max-width: 768px) {
	.img-responsiv {
		width: 100%;
		max-width: 200px; /* limite superior */
		height: auto; /* mantém proporção */
	}
}


.img-responsiv {
	width: 350px;
	max-height: 300px;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
	cursor: pointer;
	display: block;
	margin: 10px !important;
	padding: 10px !important;
}

	.img-responsiv:hover {
		transform: scale(1.5);
		z-index: 10;
		position: relative;
	}




/*-----------------Código do botões do carousel--------------------------------------*/

.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-color: rgba(0, 0, 0, 0.5); /* fundo escuro com transparência */
	border-radius: 50%;
	width: 3rem;
	height: 3rem;
	background-size: 50% 50%;
	background-repeat: no-repeat;
	background-position: center;
}

/* ← Ícone para botão "Anterior" */
.carousel-control-prev-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='rgb(241, 90, 36);' viewBox='0 0 16 16'%3E%3Cpath d='M11 1L3 8l8 7V1z'/%3E%3C/svg%3E");
}

/* → Ícone para botão "Próximo" */
.carousel-control-next-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='rgb(241, 90, 36);' viewBox='0 0 16 16'%3E%3Cpath d='M5 1l8 7-8 7V1z'/%3E%3C/svg%3E");
}




/* Modal para a imagem */
#lightbox {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	text-align: center;
	align-items: center;
	justify-content: center;
}

	#lightbox img {
		width: 80vw; /* sempre 80% da largura da tela */
		height: 80vh; /* sempre 80% da altura da tela */
		object-fit: contain;
		background: #fff;
		padding: 10px;
		border-radius: 8px;
	}

	#lightbox:target {
		display: flex;
	}

/*-------------Fim--Acrescentei-------------------------------------------------------------------------------------------------------------*/
body {
	font:14px/24px Georgia, "Times New Roman", Times, serif;
	color:#000;
	position:relative;

	/*/background:url(../images/capa.jpg) 50% 0 fixed no-repeat;*/
}
html, body {
	height:100%;
}
/* Global Structure---------------------------------------- */
.main, .main-1 {
	margin:0 auto;
	width:80%;
	position:relative;

}
.main-1 {
	width: 100%;
	background: #000;
	-moz-box-shadow: 2px 3px rgb(241, 90, 36);
	-webkit-box-shadow: 2px 3px rgb(241, 90, 36);
	box-shadow: 2px 3px rgb(241, 90, 36);
}
.spacing-bottom {
	position:relative;
	height:100px;
	width:100%;
	position:relative
}
.container_12 {
	position:relative;
    top: -1px;
    left: -1px;
}
/*----- txt,links,lines,titles -----*/
	

h1, h2, h3, h4, h5, h6 {
	color:#000;
	padding-bottom:20px;
	position:relative;
	text-transform:uppercase;
	font-weight:normal;
}
h1 {
	font-size:28px;
	line-height:30px;
}
h2 {
	font-size:24px;
	line-height:26px;
	padding-bottom:16px;
}
h3 {
	font-size:21px;
	line-height:24px;
}
h4 {
	font-size:20px;
	line-height:22px;
}
h5 {
	font-size:18px;
	line-height:20px;
	padding-bottom:8px
}
h6 {
	font-size:13px;
	line-height:16px;
}
a {
	text-decoration:none;
	cursor:pointer
}
a:focus {
	outline:none;
}
a:hover {
	text-decoration:underline
}
.clear {
	clear:both;
	line-height:0;
	font-size:0;
	overflow:hidden;
	height:0;
	width:100%;
	margin:0;
	padding:0;
	display:block;
}
.wrapper {
	width:100%;
	overflow:hidden;
	position:relative;
}
.extra-wrap {
	overflow:hidden;
	display:block;
}
p {
	padding-bottom:18px;
}
.p0 {
	padding-bottom:0 !important;
}
.p01 {
	padding-top:0 !important;
}
.p {
	padding-top:1px
}
.p1 {
	padding-top:2px
}
.p2 {
	padding-top:3px
}
.p3 {
	padding-top:4px
}
.p4 {
	padding-top:5px
}
.p5 {
	padding-top:6px
}
.p6 {
	padding-top:7px
}
.p7 {
	padding-top:8px
}
.p8 {
	padding-top:9px
}
.p9 {
	padding-top:10px
}
.p10 {
	padding-top:11px
}
.p11 {
	padding-top:12px
}
.p12 {
	padding-top:13px
}
.p13 {
	padding-top:14px
}
.p14 {
	padding-top:16px
}
.p15 {
	padding-top:18px
}
.p16 {
	padding-top:20px
}
.p17 {
	padding-top:21px
}
.p18 {
	padding-top:25px
}
.p19 {
	padding-top:26px
}
.p20 {
	padding-top:32px
}
.padd-1 {
	padding-top:46px;
}
.padd-2 {
	padding-top:44px;
}
.padd-3 {
	padding-top:36px;
}
.m0 {
	margin:0 !important
}
.m1 {
	margin-top:-1px
}
.m2 {
	margin-top:-2px
}
.m3 {
	margin-top:-3px
}
.m4 {
	margin-top:-4px
}
.m5 {
	margin-top:-5px
}
.m6 {
	margin-top:-8px
}
.fleft {
	float:left
}
.fright {
	float:right
}
.alignright {
	text-align:right;
	}
.aligncenter {
	text-align:center
}
.overflow {
	overflow:hidden
}
.line-h {
	line-height:20px;
}
.color-1 {
	color:#2c2a33 !important
}
.color-2 {
	color:#5e5e5e !important
}
.text-t {
	text-transform:uppercase
}
.d-block {
	display:block
}
.d-in-block {
	display:inline-block
}
.z1 {
	z-index:1
}
.z2 {
	z-index:2
}
.z3 {
	z-index:3
}
.relative {
	position:relative;
}
.bg-main {
	position:relative;
}
/*********************************spacers**********************************/
.img-indent {
	float:left;
	margin:6px 20px 0 0;
}
.img-indent1 {
	float:left;
	margin:0px 21px 0 0;
}
.img-indent2 {
	float:left;
	margin:0px 10px 0 0;
}
.img-indent3 {
	margin:0px 20px 0 0;
	float:left
}
.img-indent4 {
	margin:0 21px 0 0;
	float:left
}
/*********************************header*************************************/
header {
	justify-content: flex-start; /* garante alinhamento à esquerda */
	padding-left: 0; /* ou ajuste conforme necessário */
	position: relative;
	z-index: 20;
	padding: 0; /* Removido o padding que aumentava a altura */
	margin-top: 0; /* Ajuste se necessário */
	height: 79px; /* Define altura exata do menu */
	background-color: rgb(241, 90, 36); /* ou a cor do seu menu */
	display: flex;
	align-items: center;
	margin-left: 0;
}

	header h1 {
		float: left;
		display: block;
		margin: 0;
		padding: 0;
	
	}

		header h1 a {
			background: url(../images/capa1.jpg) no-repeat center center;
			background-size: contain;
			width: 190px;
			height: 79px;
			display: block;
			text-indent: -9999px;
			overflow: hidden;
			margin: 0;
			padding: 0;
			margin-left: -165px;
			
		}

		





section#content {
	padding:46px 0 48px;
	position:relative;
	z-index:5;
	background:url(../images/tail-content.gif);

}
#page1 section#content {
	padding:0 0 48px;
}
.inner-1 {
	padding:0 0 0 24px
}
.row-1 {
	background:#fff;
	border-bottom:1px solid #c5c5c5;
	padding-bottom:36px;
	width:100%
	
}
.row-2 {
	padding-top:46px
}
.box-top {
	overflow: hidden;
	padding: 40px 0;
	
	margin-bottom: 46px;
	width: 100%;
}
	.box-top span {
		/*width:750px;*/
		color: #000;
		font-size: 24px;
		line-height: 31px;
		display: block;
		text-transform: uppercase;
		border-bottom: 4px solid rgb(241, 90, 36); 
		padding-bottom: 5px;
	}

.txt-1 {
	font-weight:bold
}
.box-work {
	/*background:#fff;*/
	padding:17px 17px 9px 16px;
	-moz-box-shadow: 2px 3px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 2px 3px rgba(0, 0, 0, 0.1);
	box-shadow: 2px 3px rgba(0, 0, 0, 0.1);
}
.box-work span {
	display:block;
	color:#5f5f5f;
	text-transform:uppercase;
	margin-top:-6px;
	word-spacing:-1px
}
.box-work figure {
	margin-bottom:0px
}
.date-1 {
	width:51px;
	float:left;
	background:url(../images/part-date.png) no-repeat 0 0;
	text-align:center;
	margin: 0 16px 0 0;
	color:#fff;
	font-family:"Times New Roman", Times, serif;
	font-size:15px;
	line-height:18px;
	padding:10px 0 22px;
	font-weight:bold
}
.date-1 span {
	display:block;
	margin-top:-4px
}
.box-comments {
	overflow:hidden
}
.box-comments a{color:#ff4425;font-weight:bold;
 -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;text-transform:uppercase}
	
.posted{float:left;width:286px}	
.comment{float:right;width:200px;text-align:right}	
.box-comments a:hover{color:#000;text-decoration:none}
.box-img {
	display:inline-block;
	background:#fff;
	padding:17px 15px 16px 16px;
	-moz-box-shadow: 2px 3px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 2px 3px rgba(0, 0, 0, 0.1);
	box-shadow: 2px 3px rgba(0, 0, 0, 0.1);
}
/********************** links ************************/
.link-1, .link-2 {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.link-1 {
	font-size:14px;
	line-height:24px;
	display:inline-block;
	color:#ff4425;
	text-transform:uppercase
}
.link-1:hover {
	color:#000;
	text-decoration:none
}
.link-2 {
	font-size:14px;
	line-height:24px;
	display:inline-block;
	color:crimson;
	text-transform:uppercase;
	font-weight:bold;
}
.link-2:hover {
	color:#fff;
	text-decoration:none
}
/*  Lists */
#page1 .list-1 {
	padding-top:3px
}
.list-1 li {
	display:block;
	padding-top:6px;
	margin-top:7px;
	line-height:18px;
	border-top:1px solid #e2e2e2
}
.list-1 li:first-child {
	border:none;
	padding:0;
	margin:0
}
.list-1 li a {
	display:inline-block;
	color:#ff4425;
	font-size:13px;
	position:relative;
	text-decoration:none;
	font-weight:bold;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.list-1 li a:hover {
	text-decoration:none;
	color:#000
}
/*----- map -----*/

.map {
	display:inline-block;
	margin:12px 0 24px
}
.map iframe {
	height:282px;
	overflow: hidden;
	width:268px;
}
/*----- address -----*/
.mail-2 {
	color:#ff4425
}
dl.address {
	padding-bottom:21px
}
dl.address dt {
	font-style:normal;
	color:#000;
	font-weight:bold;
}
dl.address dd {
	color:#000;
	font-weight:normal;
}
dl.address dd span {
	display:inline-block;
	width:83px
}
.policy {
	padding-top:11px
}
.policy p {
	padding-bottom:24px
}
.policy strong {
	display:block;
}
/******************** contact-form ******************/

#contact-form-1 {
	display:block;
	position:relative;
	margin:0;
	height:482px;
	margin-top:12px
}
#contact-form-1 fieldset {
	display:block;
}
#contact-form-1 label {
	display:block;
	position:relative;
	height:46px;
	overflow:hidden;
}
#contact-form-1.label {
	display:block;
	overflow:hidden;
	webkit-background-clip: padding-box;
}
#contact-form-1 label.message {
	height:auto;
	margin:0;
}
#contact-form-1 .message .label {
	width:auto;
}
#contact-form-1 input, #contact-form-1 textarea {
	font-family:Georgia, "Times New Roman", Times, serif;
	width:268px;
	font-size:14px;	
	color:#000;
	padding:12px 15px 10px;
	margin:0;
	outline:none;
	resize:none;
	position:relative;
	background:#fff;
	-webkit-background-clip:padding-box;

	border:none;
	-moz-box-shadow: 2px 3px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 2px 3px rgba(0, 0, 0, 0.1);
	box-shadow: 2px 3px rgba(0, 0, 0, 0.1);
}
#contact-form-1 input {
	height:16px;
}
#contact-form-1 textarea {
	height:275px;
	overflow:auto;
	width:588px;
	margin-bottom:4px;
	line-height:18px;
}
#contact-form-1 .empty, #contact-form-1 .error {
	display:none;
	color:#000;
	font-size:11px;
	line-height:12px;
	position:absolute;
	top:2px;
	left:303px;
	width:306px;
}
#contact-form-1 label.message .empty, #contact-form-1 label.message .error {
	margin-left:5px;
	position: relative;
	text-align:left;
	width: 100%;
	left:0
}
#contact-form-1 .success {
	display:none;
	font-size:13px;
	line-height:18px;
	padding:0;
	top:-16px;
	left:5px;
	position:absolute;
	color:#000;
	background:none !important;
	background-image:none !important;
	border:none;
	box-shadow:none;
}
.btns {
	position:absolute;
	bottom:0;
	right:0
}
.btns a {
	margin-left:25px;
	font-weight:bold
}
/******************** Footer ******************/
footer {
	padding: 50px 0 58px;
	background-color: rgb(241, 90, 36);
}
footer h2 {
	color:#fff;
	padding-bottom:24px
}
.privacy {
	color:black;
	font-size:14px;
	line-height:18px;
	padding-top:4px
}
.privacy a {
	font-size:14px;
	color:black;
	line-height:18px;
	text-decoration:none
}
.privacy a:hover {
	text-decoration:underline
}
.soc-1 {
	padding-top:8px
}
.soc-1 a {
	display:inline-block;
	width:48px;
	height:48px;
	margin-right:8px;
	border-radius:24px;
	-moz-border-radius:24px;
	-webkit-border-radius:24px;
	background:#7a7a7a;
	-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;

}
.soc-1 a:hover{background:#464646}


.adddres-1 {
	text-transform:uppercase;
	color:black;
}
.mail-1 {
	color: blue;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.mail-1:hover {
	color:#fff;
	text-decoration:none
}
.tweet {
	padding-bottom:6px
}
.tweet .tweet_list li {
	background:url(../images/img-twitter.gif) no-repeat 0 8px;
	padding:0 0 12px 80px;
	color:#808080;
	border-bottom:1px solid #222222
}
.tweet .tweet_list li a {
	color:#fff;
}


/* Estilizar scrollbar para navegadores WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
	width: 12px; /* largura da barra de rolagem */
}

::-webkit-scrollbar-track {
	background: #f1f1f1; /* cor do fundo da barra */
}

::-webkit-scrollbar-thumb {
	background-color: rgb(102, 187, 229); /* cor do cursor */
	border-radius: 10px; /* arredondar as bordas */
	border: 3px solid #f1f1f1; /* borda ao redor do cursor para efeito visual */
}

/* Scrollbar para Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: rgb(241, 90, 36) #f1f1f1;
}






.lightbox-image {position:relative;overflow:hidden;display:inline-block;z-index:99;}
.lightbox-image img {position:relative;z-index:2;background:#f1f1f1;}
.lightbox-image span {display:block;position:absolute;left:0;top:0;width:100%;height:100%;background: url(../images/magnifying-glass.png) no-repeat 50% 50%;z-index:1;}

