@font-face {
    font-family: "Pacifico";
    src: url("Pacifico.ttf") format("truetype");
}

ul#album-fotos{
	margin: 0 auto;
	padding:50px;
	overflow:hidden;
	list-style:none;
}
ul#album-fotos li{
	float:left;
	width:185px;
	height:185px;
	margin:40px;
	background-color:#fff;
	-webkit-transition: all .4s ease-in;  
	-moz-transition: all .4s ease-in; 
	-ms-transition: all .4s ease-in; 
	box-shadow: 1px 1px 3px rgba(0,0,0, .4);
	transform: rotate(-45deg);  
}
ul#album-fotos li:hover{
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
}

ul#album-fotos li#foto01{
	background: url('../img/galeria/bolo1.jpg');
	background-position: 50% 50%;
	background-size: 300px 300px;
	background-color:#fff;
}
ul#album-fotos li#foto01:hover{
	background-position: 0px 0px;
	background-size: 200px 200px;
	background-color:#fff;
	position:relative;
	z-index:5;
}
ul#album-fotos li#foto02{
	background: url('../img/galeria/bolo2.jpg');
	background-position: 50% 50%;
	background-size: 300px 300px;
	background-color:#fff;
}
ul#album-fotos li#foto02:hover{
	background-position: 0px 0px;
	background-size: 200px 200px;
	background-color:#fff;
	position:relative;
	z-index:5;
}
ul#album-fotos li#foto03{
	background: url('../img/galeria/bolo3.jpg');
	background-position: 50% 50%;
	background-size: 300px 300px;
	background-color:#fff;
}
ul#album-fotos li#foto03:hover{
	background-position: 0px 0px;
	background-size: 200px 200px;
	background-color:#fff;
	position:relative;
	z-index:5;
}
ul#album-fotos li#foto04{
	background: url('../img/galeria/bolo4.jpg');
	background-position: 50% 50%;
	background-size: 300px 300px;
	background-color:#fff;
}
ul#album-fotos li#foto04:hover{
	background-position: 0px 0px;
	background-size: 200px 200px;
	background-color:#fff;
	position:relative;
	z-index:5;
}
ul#album-fotos li#foto05{
	background: url('../img/galeria/bolo5.jpg');
	background-position: 50% 50%;
	background-size: 300px 300px;
	background-color:#fff;
}
ul#album-fotos li#foto05:hover{
	background-position: 0px 0px;
	background-size: 200px 200px;
	background-color:#fff;
	position:relative;
	z-index:5;
}
ul#album-fotos li#foto06{
	background: url('../img/galeria/bolo6.jpg');
	background-position: 50% 50%;
	background-size: 300px 300px;
	background-color:#fff;
}
ul#album-fotos li#foto06:hover{
	background-position: 0px 0px;
	background-size: 200px 200px;
	background-color:#fff;
	position:relative;
	z-index:5;
}
ul#album-fotos li#foto07{
	background: url('../img/galeria/bolo7.jpg');
	background-position: 50% 50%;
	background-size: 300px 300px;
	background-color:#fff;
}
ul#album-fotos li#foto07:hover{
	background-position: 0px 0px;
	background-size: 200px 200px;
	background-color:#fff;
	position:relative;
	z-index:5;
}
* Bob */
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
.hvr-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-rotate:hover, .hvr-rotate:focus, .hvr-rotate:active {
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
}

.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}
.hvr-glow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-glow:hover, .hvr-glow:focus, .hvr-glow:active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

.movelateral {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.movelateral:hover, .movelateral:focus, .movelateral:active {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
  text-decoration:none
}

.jssora21l, .jssora21r {
    display: block;
    position: absolute;
    width: 55px;
    height: 55px;
    cursor: pointer;
    background: url(../img/a21.png) center center no-repeat;
    overflow: hidden;
}
.jssora21l { background-position: -3px -33px; }
.jssora21r { background-position: -63px -33px; }
.jssora21l:hover { background-position: -123px -33px; }
.jssora21r:hover { background-position: -183px -33px; }
.jssora21l.jssora21ldn { background-position: -243px -33px; }
.jssora21r.jssora21rdn { background-position: -303px -33px; }
.jssorb21 {
position: absolute;
}
.jssorb21 div, .jssorb21 div:hover, .jssorb21 .av {
position: absolute;
width: 19px;
height: 19px;
text-align: center;
line-height: 19px;
color: white;
font-size: 12px;
background: url(../img/b21.png) no-repeat;
overflow: hidden;
cursor: pointer;
}
.jssorb21 div { background-position: -5px -5px; }
.jssorb21 div:hover, .jssorb21 .av:hover { background-position: -35px -5px; }
.jssorb21 .av { background-position: -65px -5px; }
.jssorb21 .dn, .jssorb21 .dn:hover { background-position: -95px -5px; }

.jssora21l, .jssora21r {
display: block;
position: absolute;
/* size of arrow element */
width: 55px;
height: 55px;
cursor: pointer;
background: url(../img/a21.png) center center no-repeat;
overflow: hidden;
}
.jssora21l { background-position: -3px -33px; }
.jssora21r { background-position: -63px -33px; }
.jssora21l:hover { background-position: -123px -33px; }
.jssora21r:hover { background-position: -183px -33px; }
.jssora21l.jssora21ldn { background-position: -243px -33px; }
			
.fadecores {
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
	color: #08997C;
	font-size:15px;
	font-weight:bold;
}
.fadecores:hover {
  color: #fff;
  background-color:#08997C;
}
.fadetitulo {
	-moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
	color: #f20;
}
.fadetitulo:hover {
	color: #f60;
}
.fadeimagem {
	-moz-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
	opacity: 0.6;
}
.fadeimagem:hover {
		opacity: 1.0;
}
.logompsoft{
	-webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
	opacity:0.5;
	width:50px;
}
.logompsoft:hover{
	opacity:1.0;	
}
.topo{
	background-color:#539974;
	height:40px;
	text-align:right;
	font-weight:bold;
	color:#fff;
	padding:5px;
	font-size:19px;
	z-index:50;
	position:relative;
}


.nuvensmenu{
	background-image:url("../img/padrao/nuvens.png");
	height:111px;
	background-position:bottom left;
	background-repeat-x:repeat;
	position:relative;
	z-index:5;	
}

@media (max-width: 768px) {
  .nuvensmenu{
	background-image:url("../img/padrao/nuvens.png");
	height:5px;
}
}

.nuvensmenu2{
	background-image: url("../img/padrao/nuvens.png");
	background-position: bottom center;
	background-color: transparent;
	background-repeat: repeat-x;
	margin-bottom: -25px;
	position: relative;
	height: 25px;
	z-index: 5;	
}
.parte1{
	background-color:#B9A05C;
	min-height:180px;
	text-align:center;
	line-height:19px;
	font-family: century gothic;
	position:relative;
	padding-top:50px;
	padding-bottom:50px;
	-webkit-box-shadow: 0px 17px 15px -9px rgba(0,0,0,0.54);
	-moz-box-shadow: 0px 17px 15px -9px rgba(0,0,0,0.54);
	box-shadow: 0px 17px 15px -9px rgba(0,0,0,0.54);
		/*z-index:5;*/
}
.produtos{
	background-image:url(../img/bg/b.gif);
	min-height:600px;
	text-align:center;
	color:#333;
	padding-bottom:30px
}
.sobre{
	background-image:url(../img/padrao/tavo.jpg);
	min-height:620px;
	text-align:center;
	background-repeat:no-repeat;
	background-position:center top;
	background-size:cover;
	background-attachment:fixed;
}

.produtosimg{
	background-color:#ffffff;
	min-height:680px;
	text-align:center;
}
.separador{
	background-color:#48625D;
	height:30px;
}
.rodape{
	padding:10px;
	color:#fff;
	width: 100%;
	min-height:180px;
	background-color:#559977;
	font-size:12px;
}
.linkrodape{
	padding:10px;
	color:#fff;
	width: 100%;
	background-color:#559977;
	font-size:12px;
}
.linkrodape a{
	color:#fff;
}
.linkrodape a:hover{
	color:#fff;
	text-decoration:underline;
}
.titulo3{
	text-align:right; 
	margin-right:20px;
	z-index:5;
	position:relative
}
.shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.shrink:hover, .shrink:focus, .shrink:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.fonte-glow {
	font-size:20px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  color:#fff;
}
.fonte-glow:hover, .fonte-glow:focus, .fonte-glow:active {
	color: #f9f9f9;
}
.img-menu{
	background-color:#000;
	border:4px solid #B9A05C; 
	border-radius:15px; 
	margin:5px;
	float:left;
	  -webkit-transform: translateZ(0);
	  transform: translateZ(0);
	  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	  -webkit-transition-duration: 0.3s;
	  transition-duration: 0.3s;
	  opacity:0.7;
	  transition:0.4s;
}
.img-menu:hover{
	border-radius:15px; 
	opacity:1;
}
.legenda-produtos{
	height:40px; 
	width:100%; 
	background-color:rgba(0,0,0,0.6); 
	color:#fff; 
	margin-top:-40px; 
	position:absolute;
	padding:2px;
	font-size:25px;
	font-family:pacifico, cursive; 
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.wpp-menu {
    max-height: 17px; 
    margin-right: 5px;
    margin-top: -4px;
}