/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center;
}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}

/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}

/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}

/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
* {
  margin: 0;
  padding: 0;
}

body {
  background: black url(../images/rotate/rotate.php) no-repeat center bottom;
  font-family: 'Questrial','Myriad Pro', 'Trebuchet MS', Helvetica, sans-serif;
  font-size: 16px;
  color: #fff;
  background-position: top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  margin: 0px;
  padding: 0px;
  min-width: 1024px;
  line-height: 1.4em;
  min-height: 100%;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #90b7f1;
  text-decoration: none;
}

h1 {
  font-size: 2em;
}

p {
  margin: 5px;
}

#logo {
  z-index: 100;
  position: relative;
  top: 30px;
  left: 60px;
  border: 0;
  float: left;
}
#logo:hover {
  opacity: 0.9;
}

#fotografo {
  position: fixed;
  bottom: 0px;
  left: 0px;
  background: url(../images/fotografo.png);
  z-index: -100;
  width: 675px;
  height: 600px;
}

nav {
  padding: 14px 25px;
  right: 0;
  top: 0;
  background: rgba(34, 34, 34, 0.9);
  z-index: 2;
}

nav, footer {
  position: fixed;
  font-size: 18px;
  font-family: 'Questrial', sans-serif;
  text-align: center;
}

footer {
  padding: 10px;
  background: #222222;
}

#owl-demo .item img {
  display: block;
  width: 100%;
  height: auto;
}

.pp_loading {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -35px 0px 0px -35px;
  background: white url(../images/icons/loader.gif) no-repeat center center;
  width: 70px;
  height: 70px;
  z-index: 999;
  opacity: 0.7;
}

.pp_next, .pp_prev {
  cursor: pointer;
  top: 50%;
  margin-top: -16px;
  width: 32px;
  height: 32px;
  position: fixed;
  text-align: center;
  border: 1px solid #111;
  color: #fff;
}

.pp_next {
  right: -40px;
  background: #222222 url(../images/icons/next.png) no-repeat center center;
}

.pp_prev {
  left: -40px;
  background: #222222 url(../images/icons/prev.png) no-repeat center center;
}

#pp_thumbContainer {
  position: fixed;
  bottom: 40px;
  left: 0px;
  height: 65px;
  width: 100%;
}

#pp_thumbContainer .album {
  position: absolute;
  width: 200px;
  height: 65px;
  bottom: -90px;
}

.album .descr,
.pp_back {
  font-family: 'Questrial', sans-serif;
  font-size: 14px;
  position: absolute;
  bottom: 0px;
  left: -16px;
  background: #222;
  text-align: center;
  border: 0px solid #111;
  padding: 5px;
  cursor: pointer;
  width: 169px;
  color: #fff;
  cursor: pointer;
}

.descr:first-letter {
  text-transform: uppercase;
}

.pp_back {
  text-transform: uppercase;
  bottom: 120px;
  left: -340px;
  width: 140px;
}

#pp_thumbContainer .content {
  position: absolute;
  top: 0px;
  height: 155px;
  cursor: pointer;
}

#pp_thumbContainer img {
  border: 5px solid #fff;
}

#pp_thumbContainer .content span {
  display: none;
}

.pp_preview {
  position: fixed;
  top: 150%;
  left: 50%;
}

.pp_preview img {
  position: absolute;
  top: 0px;
  left: 0px;
  border: 10px solid #fff;
  border-bottom: 45px solid #fff;
}

.pp_descr {
  height: 45px;
  line-height: 45px;
  font-size: 20px;
  width: 100%;
  bottom: 0px;
  left: 0px;
  position: absolute;
  text-align: center;
  color: #00021c;
}

.contactos {
  /* Remove box shadow firefox, chrome and opera put around required fields. It looks rubbish. */
  /* Normalize placeholder styles */
  /* chrome, safari */
  /* mozilla */
  /* ie (faux placeholder) */
}
.contactos .info .botaoVoltar {
  display: block;
  padding: 5px 10px;
  background: white;
  width: 100px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  top: 5px;
  color: #666;
  font-size: 0.8em;
}
.contactos .info .botaoVoltar:hover {
  background: red;
  color: white;
}
.contactos #contact-form {
  margin: 0 auto;
  width: 90%;
  min-width: 420px;
}
.contactos #contact-form input,
.contactos #contact-form select,
.contactos #contact-form textarea,
.contactos #contact-form label {
  font-size: 16px;
  margin-bottom: 2px;
}
.contactos #contact-form input,
.contactos #contact-form select,
.contactos #contact-form textarea {
  border: 0;
  width: 95%;
  margin-bottom: 20px;
  padding: 10px;
}
.contactos #contact-form input:focus,
.contactos #contact-form select:focus,
.contactos #contact-form textarea:focus {
  border: 1px solid #AFCDD8;
  background-color: #EBF2F4;
}
.contactos #contact-form textarea {
  height: 150px;
  resize: none;
}
.contactos #contact-form label {
  display: block;
}
.contactos #contact-form .required {
  font-weight: bold;
  color: #F00;
}
.contactos #contact-form #submit-button:hover {
  background-color: #A6CFDD;
}
.contactos #contact-form #submit-button:active {
  position: relative;
  top: 1px;
}
.contactos #contact-form #loading {
  width: 32px;
  height: 32px;
  background-image: url(../images/loading.gif);
  display: block;
  position: absolute;
  right: 130px;
  bottom: 16px;
  display: none;
}
.contactos #errors {
  padding: 25px 10px;
  margin: 25px 0px;
  position: relative;
  left: 0;
  display: block;
  width: 425px;
  background: #ffe6e6 url(../images/cancel_48.png) no-repeat 371px center;
  display: none;
  color: #000;
}
.contactos #errors li {
  padding: 2px;
  list-style: none;
}
.contactos #errors li:before {
  content: ' - ';
}
.contactos #errors #info {
  font-weight: bold;
}
.contactos #errors #info:before {
  content: '';
}
.contactos #success {
  position: relative;
  left: 0;
  padding: 25px 10px;
  margin: 25px 0px;
  display: block;
  width: 425px;
  background: #d3edd3 url(../images/accepted_48.png) no-repeat 371px center;
  display: none;
  color: #000;
  text-shadow: none;
}
.contactos #errors.visible, .contactos #success.visible {
  display: block;
}
.contactos #req-field-desc {
  font-style: italic;
}
.contactos input:required, .contactos textarea:required {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.contactos ::-webkit-input-placeholder {
  color: #CCC;
  font-style: italic;
}
.contactos input:-moz-placeholder, .contactos textarea:-moz-placeholder {
  color: #CCC;
  font-style: italic;
}
.contactos input.placeholder-text, .contactos textarea.placeholder-text {
  color: #CCC;
  font-style: italic;
}
.contactos .clear {
  clear: both;
}
.contactos fieldset {
  border: none;
}
.contactos input, .contactos textarea, .contactos a {
  outline: none;
}
.contactos form {
  margin: 20px auto;
}
.contactos h2 {
  font-size: 2em;
  font-weight: normal;
  color: #90b7f1;
}
.contactos label {
  display: block;
  font-size: 1.52em;
  text-indent: 0px;
  padding-bottom: 5px;
}
.contactos input#submit-button {
  float: right;
  background: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  width: 100px;
  margin-right: 15px;
}
.contactos input#submit-button:hover {
  background: red;
  color: white;
}

.sobre, .contactos {
  background: rgba(34, 34, 34, 0.9);
  width: 40%;
  margin: 70px 10% 60px auto;
  padding: 2%;
  float: right;
}
.sobre h2, .contactos h2 {
  font-size: 2em;
  font-weight: normal;
  color: #90b7f1;
}
.sobre p, .contactos p {
  padding: 10px 0;
}
.sobre ul li, .contactos ul li {
  list-style-position: inside;
  padding-left: 10px;
}
.sobre .parceiros-comerciais, .contactos .parceiros-comerciais {
  text-align: center;
}
.sobre .parceiros-comerciais ul, .contactos .parceiros-comerciais ul {
  display: inline-block;
  margin: 20px auto 0 auto;
}
.sobre .parceiros-comerciais ul li, .contactos .parceiros-comerciais ul li {
  margin: 0 10px 20px 10px;
  list-style: none;
  display: inline-block;
}
.sobre .parceiros-comerciais ul li img, .contactos .parceiros-comerciais ul li img {
  width: 200px;
  height: 200px;
}
.sobre .parceiros-comerciais ul li span, .contactos .parceiros-comerciais ul li span {
  z-index: 2;
  position: relative;
  display: block;
  width: 200px;
  background-color: #000000;
  top: -10px;
}

footer {
  z-index: 100;
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 20px;
}
