/* ==========================================================================
   GERAL
   ========================================================================== */

#content_wrapper  {
	margin-left: 100px;
	transition: all .5s ease;
}

body {
	font-family: 'Dosis', sans-serif;
}

#preloader {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99999; 
	background-color: #fff;
}

#status{
	position:absolute;
	top:50%; 
	left:50%; 
	margin:-100px 0 0 -100px;
	width:200px;
	height:200px;
	background-image: url(../img/loader.gif);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 75px 75px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Grand Hotel', cursive;
	margin-top: 0; 
	margin-bottom: 10px;
}

p {
	font-size: 18px;
	color: #666;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	color: #ff6682;
	text-decoration: none;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

a:hover {
	color: #bd66ff;
	text-decoration: none;
}

a:focus {
	color: #ff6682;
	outline: none;
	border: none;
	text-decoration: none;
}



/*------------------------------------------*/
/*	 Cores
/*------------------------------------------*/

.verde {color: #95cc47}
.verde-bg {background-color: #95cc47}
.roxo {color: #bd66ff}
.roxo-bg {background-color: #bd66ff}
.roxo-alt {color: #56509f}
.roxo-alt-bg {background-color: #56509f}
.laranja {color: #ffaf40}
.laranja-bg {background-color: #ffaf40}
.vermelho {color: #ff6666}
.vermelho-bg {background-color: #ff6666}
.amarelo {color: #ffdd00}
.amarelo-bg {background-color: #ffdd00}
.amarelo-alt {color: #fff9f2}
.amarelo-alt-bg {background-color: #fff9f2}
.azul {color: #62abf5}
.azul-bg {background-color: #62abf5}
.rosa {color: #ff6682}
.rosa-bg {background-color: #ff6682}



/*------------------------------------------*/
/*	 Botão Base
/*------------------------------------------*/

.btn-base {
	font-size: 16px;
    font-weight: 400;
    line-height: 60px;
    color: #56509f;
	text-transform: uppercase;
    display: inline-block;
	border-radius: 2em;
    background-color: #ffdd00;
    padding: 0 30px;
	transition: all .2s ease-out;
}

.btn-base:hover, .btn-base:focus {
	background-color: #ff6682;
	color: #fff;
}



/*------------------------------------------*/
/*	 Separador
/*------------------------------------------*/

.divisor {
	width: 700px;
    height: 2px;
    border-radius: 2em;
    background: #ffdd00;
    text-align: center;
    margin: auto;
}

.divisor:after {
    content: '';
    position: relative;
    top: -9px;
    width: 80px;
    height: 10px;
    background: #ff6682;
    display: inline-block;
    border-radius: 2em;
}



/*------------------------------------------*/
/*	 Titulo
/*------------------------------------------*/

.titulo {
	margin-bottom: 40px;
	text-align: center;
}

.titulo i {
	width: 80px;
    height: 80px;
    margin-bottom: 10px;
    font-size: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.titulo h2 {
	font-size: 48px;
}



/* ==========================================================================
   MENU
   ========================================================================== */

.menu {
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
	transition: all .5s ease;
	z-index: 999;
}

.menu-itens {
	height: 100%;
}

.menu-item {
	position: relative;
	width: 100px;
    height: 13.5%;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all .5s ease;
    font-size: 28px;
    color: #fff;
}

.menu-fechar {
	position: relative;
	width: 100px;
    height: 5.5%;
    display: flex;
    align-items: center;
    justify-content: center;
	font-size: 28px;
    color: #fff;
	transition: all .5s ease;
}

.menu-conteudo {
	position: absolute;
    left: 100px;
    width: 100%;
    height: 13.5%;
    display: flex;
    align-items: center;
    justify-content: center;
	transform: translateX(-100px);
	transition: all .5s ease;
}

.menu-conteudo:after {
	content: '';
    background: #00000012;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
	z-index: -1;
}

.menu-texto p {
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
	z-index: 1;
}

.menu-itens a:hover .menu-conteudo {
	transform: translateX(0);
}

.menu-abrir {
	position: fixed;
    bottom: 0;
    width: 50px;
    height: 5.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    transition: all .5s ease;
    background-color: #ff6682;
	z-index: 998;
}



/* ==========================================================================
   MENU CELULAR
   ========================================================================== */

#menu-xs {
	display: none;
}

.mxs {
	position: relative;
    top: 0;
    left: 0;
	right: 0;
	transition: all .5s ease;
	z-index: 999;
}

.mxs-fixed {
	position: fixed;
}

.mxs-logo img {
	padding: 20px 0;
    margin: auto;
}

.mxs-itens {
	width: 100%;
}

.mxs-item {
	position: relative;
	width: 16.66666666666667%;
    height: 50px;
	float: left;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all .5s ease;
    font-size: 22px;
    color: #fff;
}



/* ==========================================================================
   BARRA
   ========================================================================== */

#barra {
	background: #ff6682;
	text-align: center;
}

.barra-item i {
	font-size: 16px;
	color: #ffdd00;
	margin-right: 10px;
}

.barra-item p {
	font-size: 14px;
	line-height: 50px;
	letter-spacing: 0.5px;
	color: #fff;
	display: inline-block;
	margin: 0;
}
/*
.row .col-xs-3:nth-child(2) .barra-item p {
    font-size: 15px;
    letter-spacing: 0;
}
*/

/* ==========================================================================
   INTRO
   ========================================================================== */

#banners {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	/*padding: 240px 0;*/
	padding-bottom: 30px;
    height: 70vh;
    align-items: flex-end;
    display: flex;
}

.banner-1 {
	background-image: url(../img/banners/banner-1.jpg);
}

.banner-2 {
	background-image: url(../img/banners/banner-2.jpg);
}

.banner-3 {
	background-image: url(../img/banners/banner-3.jpg);
}

.banner-4 {
	background-image: url(../img/banners/banner-4.jpg);
}

#intro .owl-theme .owl-nav {
	position: absolute;
    top: 45%;
    left: 0;
    right: 0;
	margin: 0;
}

#intro .owl-theme .owl-nav .owl-prev {
	background: #ff6666;
	padding: 8px 16px 11px 12px;
	position: absolute;
	left: 2%;
}

#intro .owl-theme .owl-nav .owl-next {
	background: #bd66ff;
	padding: 8px 13px 11px 15px;
	position: absolute;
	right: 2%;
}

#intro .owl-theme .owl-nav [class*=owl-] {
	font-size: 20px;
    margin: 0;
    padding: 5px 9px;
	border-radius: 0;
	transition: all .2s ease;
}

#intro .owl-theme .owl-nav [class*=owl-]:hover {
    background: #ca3f35;
}

#intro .owl-theme .owl-dots {
	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.banner-texto {
	background: #fffffff0;
    /*width: 50%;
    margin-left: 7%;*/
    padding: 30px;
    border-radius: 25px;
	/*position: absolute;
	left: 0;
    right: 0;
    bottom: -20000%;*/
}



/* ==========================================================================
   BENEFICIOS
   ========================================================================== */

#beneficios {
	background: #fff9f2;
	padding: 100px 0;
}

.beneficios-bloco {
	padding: 0 30px 40px;
    border-radius: 25px;
    color: #fff;
    text-align: center;
}

.beneficios-bloco i {
	width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-bottom: 20px;
    font-size: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.beneficios-bloco h3 {
	font-family: 'Dosis', sans-serif;
	font-size: 34px;
    margin-bottom: 20px;
}

.beneficios-bloco p {
	font-size: 18px;
	color: #fffffff0;
}



/* ==========================================================================
   ESCOLA
   ========================================================================== */

#escola { 
	padding: 100px 0;
}

.escola {
	text-align: justify;
	margin-bottom: 40px;
}

.escola h2 {
	font-family: 'Dosis', sans-serif;
	color: #ffaf40;
    margin: 0;
}

.escola h3 {
	font-size: 34px;
	margin: 0;
}

.escola-bercario, .escola-infantil {
	padding: 30px;
}

.escola-bercario p, .escola-infantil p {
	text-align: justify;
}

.escola-bercario h2 {
	color: #ff6682;
}

.escola-infantil h2 {
	color: #fd0;
}

.escola-infantil p {
	color: #fff;
}

.escola-bercario .owl-three .owl-item p, .escola-infantil .owl-three .owl-item p {
	text-align: center;
	padding-top: 10px;
}

.mackenzie {
	padding: 50px;
}

.mackenzie img {
	width: 540px;
	text-align: center;
    margin: auto;
}



/* ==========================================================================
   PROPOSTA
   ========================================================================== */

#proposta { 
	background-color: #fff9f2;
	padding: 100px 0;
}

.proposta-bloco {
	background-color: #fff;
	border-radius: 25px;
	text-align: center;
	margin-bottom: 40px;
}

.proposta-bloco img {
	border-radius: 25px 25px 0 0;
	padding-bottom: 20px;
}

.proposta-bloco h3 {
	font-family: 'Dosis', sans-serif;
	color: #bd66ff;
	padding: 0 20px;
}

.proposta-bloco p {
	padding: 0 20px;
	margin-bottom: 40px;
}

.proposta-bloco p span {
	color: #ff6682;
}

.proposta-bloco a {
	font-size: 18px;
	display: block;
    text-align: center;
    border-radius: 0 0 25px 25px;
}

.proposta-imagem img {
	padding: 0;
    margin-bottom: -5px;
}

.proposta-extra {
	background: #95cc47;
	transition: all .2s ease;
	transform: translateY(-20px);
}

.proposta-extra  span {    
    font-size: 13px;
    line-height: 25px;
    color: #fff;
	padding: 0 10px;
}

.proposta-bloco:hover .proposta-extra {
	background: #ffaf40;
}



/* ==========================================================================
   CÂMERA
   ========================================================================== */

#camera { 
	background-color: #95cc47;
	padding: 50px 0;
	position: relative;
	overflow: hidden;
}

#camera:before {
	content: '';
	width: 55%;
	height: 100%;
	position: absolute;
	top: 0;
    right: 0;
    background-color: #a2d657;
	transform: skewX(-15deg) translateX(5%);
}

.camera {
	display: table;
	padding: 20px 0;
	z-index: 1;
}
.cameras-icone i {
	width: 80px;
    height: 80px;
    margin-bottom: 10px;
    font-size: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #95cc47;
    background-color: #fff;
}

.cameras-icone, .cameras-titulo {
	display: table-cell;
    vertical-align: middle;
}

.cameras-titulo h2, .cameras-texto h3 {
	font-family: 'Dosis', sans-serif;
	font-weight: 700;
	margin-bottom: 0;
}

.cameras-texto:first-child {
    margin-bottom: 30px;
}

.cameras-texto h3 {
	color: #ffeb3b;
}

.cameras-texto a {
	font-size: 18px;
	color: #fff;
}

.cameras-texto a:hover {
	color: #bd66ff;
}



/* ==========================================================================
   GALERIA
   ========================================================================== */

#galeria { 
	padding: 100px 0;
}

.galeria-botao {
	text-align: center;
}

.portfolio-item {
	position: relative;	
	text-align: center;
	margin-bottom: 30px;
}

.hover-overlay {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
	border-radius: 25px;
}

.hover-overlay img {
	transition: all 600ms;
	-moz-transition: all 600ms;
	-webkit-transition: all 600ms;
	-o-transition: all 600ms;
}

/*------------------------------------------*/
/*	  Overlay Content 
/*------------------------------------------*/ 

.overlay-content {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	text-align: center;
	zoom: 1;
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.overlay-content i {
	color: #fff;
	font-size: 58px;
}

/*------------------------------------------*/
/*	  Overlay Background 
/*------------------------------------------*/ 

.item-overlay {
	opacity: 0;
	filter: alpha(opacity=100);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ff6666d6;
	-moz-transition: opacity 400ms ease-out;
	-webkit-transition: opacity 400ms ease-out;
	-o-transition: opacity 400ms ease-out;
	transition: opacity 400ms ease-out;
}

/*------------------------------------------*/
/*	  Image Hover Effect 
/*------------------------------------------*/ 

.hover-overlay:hover > img {
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	-moz-transform: scale(1.2);
}

.hover-overlay:hover .item-overlay {
	opacity: 1; 
	-moz-opacity: 1; 
	filter: alpha(opacity=100);
}

.portfolio-item:hover .overlay-content {
	bottom: 40%;
	opacity: 1; 
	-moz-opacity: 1; 
	filter: alpha(opacity=100);
}



/* ==========================================================================
   VIDEOS
   ========================================================================== */

#videos { 
	background-color: #fff9f2;
	padding: 100px 0;
}

.video iframe {
	width: 100%;
    height: 280px;
    min-height: 200px;
	border-radius: 25px;
	margin-bottom: 30px;
}

.video img {
	width: 100%;
    height: 280px;
	border-radius: 25px;
	margin-bottom: 30px;
}



/* ==========================================================================
   CONTATO
   ========================================================================== */

#contato { 
	padding: 100px 0 50px;
}

.contato-item {
	margin: 0 0 30px;
}

.contato-icone, .contato-conteudo {
	display: inline-block;
	vertical-align: top;
}

.contato-icone {
	margin-right: 10px;
}

.contato-icone i {
	font-size: 16px;
	color: #ff6682;
	text-align: center;
    margin: auto;
}

.contato-conteudo p, .contato-conteudo a {
	font-size: 16px;
	letter-spacing: 0.5px;
	color: #666;
	display: inline-block;
	margin: 0;
}

/*------------------------------------------*/
/*	  Formulário
/*------------------------------------------*/ 

.contato-item form input, .contato-item form textarea {
	border: 1px solid #ccc;
	outline: 0;
	transition: all .2s;
}

.contato-item form input[type='text'], .contato-item form input[type='email'], .contato-item form input[type='tel'] {
	width: 100%;
    height: 40px;
	padding: 0 10px;
    margin-bottom: 5px;
}

.contato-item form textarea {
	width: 100%;
    height: 80px;
	padding: 10px;
}

.contato-item form input[type='submit'] {
	outline: none;
    border: none;
    line-height: 50px;
    border-radius: 0;
}

/*------------------------------------------*/
/*	  Efeitos
/*------------------------------------------*/ 

.contato-item form input:hover, .contato-item form textarea:hover {
	border-color: #ff6666;
}

.contato-item form input:focus, .contato-item form textarea:focus {
	border-color: #bd66ff;
	outline: 0;
}

.contato-item form input::-moz-placeholder, .contato-item form textarea::-moz-placeholder {
	color: #aaa;
	opacity: 1;
}

.contato-item form input::-ms-input-placeholder, .contato-item form textarea::-ms-input-placeholder {
	color: #aaa;
}

.contato-item form input::-webkit-input-placeholder, .contato-item form textarea::-webkit-input-placeholder {
	color: #aaa;
}


#mapa iframe {
	width: 100%;
	height: 500px;
	min-height: 300px;
	margin-bottom: -5px;
}



/* ==========================================================================
   FOOTER
   ========================================================================== */

#footer {
	background-color: #f9f9f9;
	padding: 20px;
}

#footer p {
	font-size: 15px;
	font-weight: 300;
	color: #888;
	text-align: center;
	padding: 0;
	margin: 0;
}

/* ==========================================================================
   QMAIS LINK
   ========================================================================== */

.qmais {
	color: #ff6666;
}

.qmais:hover {
	color: #ffdd00;
}



/* ==========================================================================
   CARDÁPIO
   ========================================================================== */

.horario {
	position: fixed;
    bottom: 50px;
    left: 0;
    right: 0;
    background: #ef637c;
    text-align: center;
	transition: all .5s ease;
	transform: translateY(100px);
	z-index: 1;
}

.horario p {
	line-height: 50px;
    letter-spacing: 0.3px;
    color: #fff;
    margin: 0;
}

.mostrar-horario {
	transform: translateY(0);
}



/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */

#scrollUp {
	display: none;
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 0;
	right: 0;
	background-image: url(../img/back.png);
	background-repeat: no-repeat;
	background-position: 50% 48%;
	background-color: #ffdd00;
	-webkit-transition: all 250ms linear;
	-moz-transition: all 250ms linear;
	transition: all 250ms linear;	
}

#scrollUp:hover {
	background-color: #ff6682;
}

nav a#pull {  
    display: none;  
}



/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
   
@media (max-width: 1200px) {
	.barra-item p {font-size: 12px;}
	
	.beneficios-bloco {padding: 0 25px 30px;}
	.beneficios-bloco h3 {font-size: 24px;}
}

@media (max-width: 992px) {
	.barra-item i {display: block; margin: 0 0 5px;}
	.barra-item p {font-size: 12px; line-height: 1; display: block; margin: 0;}
	.beneficios-bloco {padding: 0 35px 35px; margin-bottom: 40px;}
	.beneficios-bloco h3 {font-size: 32px;}
}


@media (max-width: 480px) {
	#header {display: none;}
	#menu-xs {display: block;}
	.mxs-logo img {height: 100px;}
	
	#content_wrapper {margin: 50px 0;}
	
	.titulo h2 {font-size: 42px;}
	
	#banners {padding: 150px 0;}
	.banner-texto {bottom: -15000%; padding: 20px; border-radius: 0;}
	.banner-texto h1 {font-size: 28px; text-align: center;}
	.banner-texto p {display: none;}
	
	/*#beneficios, #escola, #proposta, #galeria, #videos, #contato {padding-left: 20px; padding-right: 20px;}*/
	
	#beneficios {padding-bottom: 30px;}
	.beneficios-bloco {margin: 0 10px 70px;}
	
	.video iframe {height: 180px; margin-bottom: 20px;}
	.video img {height: auto;}
	
	#barra {position: fixed; left: 0; right: 0; bottom: 0; z-index: 888;}
	.barra-item i {font-size: 22px; line-height: 50px;}
	.barra-item p {display: none;}
	
	.contato-conteudo p {font-size: 15px;}
	
	.divisor {width: 100%;}
	#scrollUp {transform: translateX(100px);}
}