/* ---- style.css - CSS Personalizado ---- */


/* Resets */
.fl-dir{
  float: right;
}
.txt-center{
	text-align: center;
}
.obj-bottom{
	position: relative; 
	bottom: 0px;
}
.pd-btm-0{
	padding-bottom: 0;
}
.pd-top-20{
	padding-top: 20px;
}
.pd-top-25{
  padding-top: 25px;
}
.pd-100{
  padding-top: 200px;
  padding-bottom: 200px;
}
.mg-btm-0{
  margin-bottom: 0;
}
.mg-20 li{
  margin-bottom: 20px;
}
.img-rwd img{
	max-width: 280px;
}
.p-18{
  font-size: 18px;
}
.sz-icon span{
  font-size: 48px;
  margin: 8px;
}

/* Logo sem academia 
#brand-image {
  height: 25px;
}*/

/* Efeitos imagens */
.bg-jumbotron{
  background: 
    linear-gradient(
      rgba(0, 0, 0, 0.45), 
      rgba(0, 0, 0, 0.45)
    ),
    url("../images/bg-header-2.jpg");

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;  
}

.nav-font a{
  font-family: 'Francois One', sans-serif;
  text-transform: uppercase;
}

.txt-head h1 {
  font-size: 48px;
  color: #fff;
  border-left: 4px solid #FF0000;
  padding-left: 10px;
}
.s-header{
  text-align: center;
  margin-bottom: 30px;
}
.head-footer{
  padding: 10px 0;
  background-color: #FE2E2E;
  color: #FFF;
}
.metodologia{
  padding: 100px 0;
  background-color: #f5f5f5;
}
.modalidades{
  padding: 100px 0;
  background-color: #21bbef;
  color: #fff;
}
.estrutura{
  padding: 100px 0;
  background-color: #424242;
  color: #FFF;
}
.contato{
  padding: 100px 0;
  background-color: #D8D8D8;
  color: #606060;
}

/* Margins e paddings .container  */
body > .container, .container-fluid {
  padding: 60px 15px 0;
}
.container .text-muted {
  margin: 20px 0;
}

.footer {
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    padding-top: 25px;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

.ic_footer img{
  max-width: 180px;
}

/* Efeitos e técnicas */

/* Parallax */
.slide {
  position: relative;
  padding: 25vh 10%;
  min-height: 50vh;
  /*width: 100vw;*/
  box-sizing: border-box;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, .7);
	transform-style: inherit;
}

.slide img {
  position: absolute;
  top: 50%;
  left: 35%;
  width: 320px;
  height: 240px;
  transform: translateZ(.25px) scale(.75) translateX(-94%) translateY(-100%) rotate(2deg);
  padding: 10px;
  border-radius: 5px;
  background: rgba(240,230,220, .7);
  box-shadow: 0 0 8px rgba(0, 0, 0, .7);
}

.slide img:last-of-type {
  transform: translateZ(.4px) scale(.6) translateX(-104%) translateY(-40%) rotate(-5deg);
}

.slide:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left:0;
  right:0;
}

.title {
  width: 50%;
  padding: 5%;
  border-radius: 5px;
  background: rgba(240,230,220, .7);
  box-shadow: 0 0 8px rgba(0, 0, 0, .7);
}

.slide:nth-child(2n) .title {
  margin-left: 0;
  margin-right: auto;
}

.slide:nth-child(2n+1) .title {
  margin-left: auto;
  margin-right: 0;
}

.slide, .slide:before {
  background: 50% 50% / cover;  
}

.header {
  text-align: center;
  font-size: 175%;
  color: #fff;
  text-shadow: 0 2px 2px #000;
}

#title {
  background-image: url("../images/bg-parallax.jpg");
  background-attachment: fixed;  
}
/* FIM Parallax */

/* Galeria */
.gallery {
  list-style: none;
}

/* Scroll to top */
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(232, 98, 86, 0.8) url(../images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}

/* Fim Scroll to top [Verificar adaptação para mobile]
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}
*/

