/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.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-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

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

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

@font-face {
  font-family: "PlutoCondMed";
  src: url("/assets/css/fonts/pluto_cm.eot");
  src: url("/assets/css/fonts/pluto_cm.eot?#iefix") format("embedded-opentype"), url("/assets/css/fonts/pluto_cm.woff") format("woff"), url("/assets/css/fonts/pluto_cm.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body, html {
  font-family: "PlutoCondMed";
  background-color: #fcaf17;
}

*:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

*:hover {
  text-decoration: none !important;
}

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

.clearfix {
  clear: both;
}

.container {
  max-width: 1100px;
}

p {
  font-size: 16px;
  color: #f5821f;
  font-weight: 100;
}
p strong {
  font-weight: 700;
}
p.t_gastronomia {
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "PlutoCondMed";
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  color: #00abbd;
}

h1 {
  font-size: 40px;
  line-height: 40px;
  color: #fcaf17;
  margin-bottom: 60px;
}
h1.hasbg {
  color: #fff0c7;
  text-align: center;
  width: 100%;
  max-width: 425px;
  padding-top: 50px;
  padding-bottom: 20px;
  font-size: 24px;
  line-height: 24px;
  margin: 0 auto;
  background-image: url("/assets/images/bg_title.png");
  background-position: center center;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
}

h2 {
  font-size: 32px;
  line-height: 32px;
  color: #ef4023;
  margin-bottom: 20px;
}

.nclr {
  color: white;
}

.pclr {
  color: #fcaf17 !important;
}
.pclr p {
  color: #fcaf17 !important;
}

.sclr {
  color: #f5821f !important;
}
.sclr p {
  color: #f5821f !important;
}

.bclr {
  color: #00abbd !important;
}
.bclr p {
  color: #00abbd !important;
}

.rclr {
  color: #ef4023 !important;
}
.rclr p {
  color: #ef4023 !important;
}

.bgclr {
  color: #fff0c7 !important;
}
.bgclr p {
  color: #fff0c7 !important;
}

.btn {
  font-size: 32px;
  line-height: 32px;
  border-radius: 0;
  padding: 15px 35px;
}
.btn img {
  margin-right: 7px;
}
.btn.btn-full {
  width: 100%;
}
.btn.btn-primary {
  color: #fff0c7 !important;
  font-weight: 700;
  background-color: #fcaf17 !important;
  border: 1px solid #fcaf17 !important;
  color: #140d00;
  border-radius: 20px;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background-color: #c48303 !important;
  border: 1px solid #c48303 !important;
}
.btn.btn-primary.btn-sm {
  font-size: 22px;
  line-height: 22px;
  border: 4px solid #fcaf17 !important;
  padding: 15px 10px;
  border-radius: 30px;
}
.btn.btn-primary.btn-foot {
  font-size: 18px;
  line-height: 20px;
  border: 4px solid #fff0c7 !important;
  padding: 10px 20px;
  border-radius: 30px;
}
.btn.btn-secondary {
  color: #fff0c7 !important;
  font-weight: 700;
  background-color: #f5821f !important;
  border: 1px solid #f5821f !important;
  color: #140a01;
  border-radius: 20px;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus {
  background-color: #bf5d09 !important;
  border: 1px solid #bf5d09 !important;
}
.btn.btn-secondary.btn-sm {
  font-size: 22px;
  line-height: 22px;
  border: 4px solid #fcaf17 !important;
  padding: 15px 10px;
  border-radius: 30px;
}
@media only screen and (max-width: 640px) {
  .btn.btn-secondary.btn-sm {
    font-size: 14px;
    line-height: 14px;
    padding: 5px 7px;
  }
}
.btn.btn-blue {
  color: #fff0c7 !important;
  font-weight: 700;
  background-color: #00abbd !important;
  border: 1px solid #00abbd !important;
  color: black;
  border-radius: 20px;
}
.btn.btn-blue:hover, .btn.btn-blue:focus {
  background-color: #006671 !important;
  border: 1px solid #006671 !important;
}
.btn.btn-blue.btn-sm {
  font-size: 22px;
  line-height: 22px;
  border: 4px solid #fcaf17 !important;
  padding: 15px 10px;
  border-radius: 30px;
}
.btn.btn-whats {
  font-size: 18px;
  line-height: 32px;
  color: #fff0c7 !important;
  font-weight: 700;
  background-color: #00abbd !important;
  border: 1px solid #00abbd !important;
  color: black;
  padding: 15px 35px 15px 15px;
  border-radius: 18px;
}
.btn.btn-whats:hover, .btn.btn-whats:focus {
  background-color: #006671 !important;
  border: 1px solid #006671 !important;
}
.btn.btn-whats i {
  font-size: 32px;
  line-height: 32px;
  float: left;
  margin-right: 15px;
}
.btn.btn-round {
  font-size: 20px;
  line-height: 20px;
  width: 100%;
  color: #fff0c7 !important;
  font-weight: 700;
  background-color: #fcaf17 !important;
  border: 4px solid #f5821f !important;
  color: white;
  padding: 35px;
  border-radius: 60px;
}
.btn.btn-round:hover, .btn.btn-round:focus {
  background-color: #bf5d09 !important;
  border: 4px solid #bf5d09 !important;
}

.custom-control-label::before {
  border: 2px solid #45979f !important;
}

header {
  background-color: #fcaf17;
  border-bottom: 15px solid #fff0c7;
}
header .logo {
  display: block;
  margin-top: 15px;
}
@media only screen and (max-width: 640px) {
  header .logo {
    margin-top: 0;
    margin-left: 60px;
  }
}
header .mob {
  display: none;
  position: absolute;
  left: 15px;
  top: -5px;
  z-index: 2;
}
header .mob img {
  width: 48px;
  margin-top: 15px;
}
@media only screen and (max-width: 640px) {
  header .mob {
    display: block;
  }
}
header nav ul#mainmenu {
  text-align: right;
  font-size: 21px;
}
header nav ul#mainmenu li {
  display: inline-block;
  margin-right: 35px;
  position: relative;
  z-index: 50;
  padding: 20px 0;
}
header nav ul#mainmenu li a {
  display: block;
  color: #fff0c7;
  padding: 10px 0;
  transition: 0.2s all ease;
}
header nav ul#mainmenu li a:hover, header nav ul#mainmenu li a.active {
  color: #00abbd;
}
header nav ul#mainmenu li ul {
  font-size: 14px;
  width: 150px;
  background-color: #fff0c7;
  padding: 15px;
  position: absolute;
  left: 0;
  top: 73px;
  z-index: 99;
  text-align: left;
  display: none;
}
header nav ul#mainmenu li ul li {
  text-transform: uppercase;
  width: 100%;
  display: block;
  padding: 0;
}
header nav ul#mainmenu li ul li:not(:first-child) {
  padding-top: 5px;
}
header nav ul#mainmenu li ul li:not(:last-child) {
  padding-bottom: 5px;
  border-bottom: 1px solid #00abbd;
}
header nav ul#mainmenu li ul li a {
  color: #fcaf17;
}
@media only screen and (max-width: 640px) {
  header nav ul#mainmenu {
    display: none;
    margin-top: 30px;
  }
  header nav ul#mainmenu li {
    text-align: center;
    width: 100%;
    padding: 0;
  }
  header nav ul#mainmenu ul {
    width: 250px !important;
    padding: 15px;
    position: static !important;
    top: 0;
    text-align: center;
    display: none;
    margin: 0 auto;
  }
  header nav ul#mainmenu ul li {
    text-transform: uppercase;
    width: 100%;
    display: block;
    padding: 0;
  }
}
@media only screen and (max-width: 640px) and (max-width: 640px) {
  header nav ul#mainmenu ul {
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

footer {
  min-height: 250px;
  background-position: top;
  background-repeat: repeat-x;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
footer a {
  color: #fff0c7;
}
footer a:hover {
  color: inherit;
  text-decoration: underline !important;
}
footer.f_azul {
  background-color: #00abbd;
}
footer.f_laranja {
  background-color: #f5821f;
}
footer.f_vermelho {
  background-color: #ef4023;
}
footer .art {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: -110px;
  z-index: 1;
}
footer .art p {
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 2;
}
footer .art img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  footer .art {
    position: static;
    margin-bottom: 30px;
  }
  footer .art img {
    max-width: 250px;
  }
}
footer .gopage {
  position: relative;
  z-index: 3;
  border-bottom: 3px solid #fff0c7;
  padding-bottom: 50px;
}
footer .gopage a {
  text-transform: uppercase;
  font-size: 24px;
  color: #fff0c7;
}
@media only screen and (max-width: 640px) {
  footer .gopage {
    text-align: center !important;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
footer .sc_link {
  height: 55px;
  line-height: 55px;
  position: relative;
  background-repeat: no-repeat;
  background-position: left top;
  display: block;
  padding-left: 60px;
}
footer .sc_link__facebook {
  background-image: url("/assets/images/ic_facebook.png");
}
footer .sc_link__instagram {
  background-image: url("/assets/images/ic_instagram.png");
}
footer .moreinfo {
  padding-top: 70px;
}
footer .moreinfo.hasbdr {
  padding-top: 30px;
  border-top: 3px solid #fff0c7;
}
footer ul.btns li {
  display: inline-block;
  margin-left: 20px;
}
@media only screen and (max-width: 640px) {
  footer ul.btns li {
    width: 100%;
    display: block;
    margin-left: 0;
    margin-bottom: 15px;
  }
}

input[type=text],
input[type=email],
input[type=number],
textarea,
select {
  font-size: 16px !important;
  color: white !important;
  border: none !important;
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  background-color: #fcaf17 !important;
  padding: 20px 15px;
  border-radius: 20px !important;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus,
textarea:focus,
select:focus {
  color: #2a2a2a;
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: #fcaf17 !important;
}

label {
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  color: #00abbd;
  padding-right: 15px;
}
label.error {
  font-size: 12px;
  color: white;
  display: block;
  background-color: #ff0000;
  padding: 5px 15px;
  margin-top: 5px;
  display: none;
  border-radius: 20px !important;
}
label.custom-control-label {
  font-size: 16px !important;
}

.form-group {
  padding: 0 30px;
}

textarea {
  color: #a8a8a8;
  resize: none;
}
textarea:focus {
  color: #2a2a2a;
}

#response {
  display: none;
}
#response .alert {
  padding: 30px 0;
  margin: 30px 0;
}

.row_aniver,
.row_corp {
  display: none;
}

#homeslide .owl-stage-outer {
  max-height: 700px;
}

.owl-carousel .it-banner {
  position: relative;
  min-height: 600px;
  padding: 0 100px;
  background-size: cover;
  background-position: center center;
}
.owl-carousel .it-banner:after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 640px) {
  .owl-carousel .it-banner {
    padding: 0 20px;
  }
}
.owl-carousel .it-servico {
  padding: 0 20px;
}
.owl-carousel .it-servico h2 {
  padding-top: 20px;
}
.owl-carousel.it-galeria .owl-item .item {
  text-align: center;
}
.owl-carousel.it-galeria .owl-item .item img {
  max-width: 750px;
  width: auto;
  max-height: 500px !important;
  display: block !important;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .owl-carousel.it-galeria .owl-item .item img {
    width: 100%;
  }
}
.owl-carousel .item span {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 99;
  padding: 4px;
  border-radius: 4px;
}
.owl-carousel .item span.red {
  color: #fff0c7;
  background-color: #ef4023;
}
.owl-carousel .item span.blue {
  color: #fff0c7;
  background-color: #00abbd;
}
.owl-carousel .item span.yellow {
  color: #fff0c7;
  background-color: #f5821f;
}

.owl_entry {
  width: 60%;
  padding: 150px 0;
  position: relative;
  z-index: 1001;
}
@media only screen and (max-width: 640px) {
  .owl_entry {
    width: 100%;
    padding: 50px 0;
  }
}

.owl-dots {
  text-align: center;
  width: 100%;
  position: absolute !important;
  left: 0;
  bottom: 10px;
  z-index: 1;
}
.owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  background: white !important;
  margin: 0 5px;
  border-radius: 50%;
}
.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  display: block;
}
.owl-dots .owl-dot.active {
  background: #fcaf17 !important;
}
@media only screen and (max-width: 640px) {
  .owl-dots {
    bottom: 10px;
  }
}

.owl-nav {
  text-align: center;
  width: 100%;
  position: absolute !important;
  left: 0;
  bottom: 40px;
  z-index: 1;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  overflow: hidden !important;
  text-indent: -1000px !important;
  background-color: #fff0c7 !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  border-radius: 50% !important;
}
.owl-nav .owl-prev {
  background-image: url("/assets/images/ic_arrow_left.png") !important;
}
.owl-nav .owl-next {
  background-image: url("/assets/images/ic_arrow_right.png") !important;
}
@media only screen and (max-width: 640px) {
  .owl-nav {
    display: none;
  }
}

.hascontent ul {
  font-size: 16px;
  padding: 0 0 0 15px;
  margin: 0;
  list-style-type: disc !important;
  display: block;
}
.hascontent ul li {
  display: list-item !important;
}

.send-mail {
  display: none;
}

.hastag {
  margin-top: 100px;
}

.maps {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border: 10px solid #00abbd;
}
.maps iframe {
  width: 100%;
  margin: 0;
  padding: 0;
}

#map {
  height: 100%;
}

.intro {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  border-bottom: 15px solid #fff0c7;
}

.hascarousel {
  position: relative;
}

.haspattern {
  padding-top: 70px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 640px) {
  .haspattern {
    padding-top: 15px;
    padding-bottom: 100px;
  }
}
.haspattern__ishome {
  background-image: url("/assets/images/patterns/bg_pattern_home.png");
}
.haspattern__isbrincadeiras {
  background-image: url("/assets/images/patterns/bg_pattern_brincadeiras.png");
}
.haspattern__iscontato {
  background-image: url("/assets/images/patterns/bg_pattern_contato.png");
}
.haspattern__iscorporativo {
  background-image: url("/assets/images/patterns/bg_pattern_corporativo.png");
}
.haspattern__isespacokids {
  background-image: url("/assets/images/patterns/bg_pattern_espacokids.png");
}
.haspattern__isgaleria {
  background-image: url("/assets/images/patterns/bg_pattern_galeria.png");
}
.haspattern__isgastrononia {
  background-image: url("/assets/images/patterns/bg_pattern_gastronomia.png");
}
.haspattern__isnasuacasa {
  background-image: url("/assets/images/patterns/bg_pattern_nasuacasa.png");
}
.haspattern__isservicos {
  background-image: url("/assets/images/patterns/bg_pattern_servicos.png");
}

.box {
  background-color: #fff0c7;
  padding: 20px;
  position: relative;
}
.box.haspad {
  padding: 45px 55px;
}
.box .title {
  font-size: 56px;
  line-height: 56px;
  letter-spacing: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 640px) {
  .box .title {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0;
  }
}
.box .flip-box {
  background-color: transparent;
}
.box .flip-box .flip-box-inner {
  position: relative;
  width: 100%;
  height: 360px;
  cursor: pointer;
}
.box .flip-box .flip-box-inner .flip-box-front, .box .flip-box .flip-box-inner .flip-box-back {
  width: 100%;
  height: 100%;
}
.box .flip-box .flip-box-inner .flip-box-front {
  background-color: #fff0c7;
}
.box .flip-box .flip-box-inner .flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff0c7;
  display: none;
}
@media only screen and (max-width: 640px) {
  .box {
    margin-bottom: 15px;
  }
}
.box .brinca1 {
  padding-top: 200px;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}
.box .brinca1 h1 {
  font-size: 43.2px;
  line-height: 44.8px;
  padding-bottom: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 10px solid #fcaf17;
  display: inline-block;
}
.box .brinca1 h1 span {
  color: #f5821f;
}
.box .brinca1 h2 {
  font-size: 24px;
  line-height: 27.2px;
  margin-bottom: 0;
}
.box .brinca1::after {
  content: "";
  width: 100%;
  height: 160px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("/assets/images/img_brincadeiras_box1.png");
  background-repeat: no-repeat;
  background-position: bottom center;
}
.box .brinca2 {
  padding-top: 200px;
}
.box .brinca2 h1 {
  font-size: 43.2px;
  line-height: 44.8px;
  padding-bottom: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 10px solid #fcaf17;
  display: inline-block;
}
.box .brinca2 h1 span {
  color: #f5821f;
}
.box .brinca2 h2 {
  font-size: 24px;
  line-height: 27.2px;
  margin-bottom: 0;
}
.box .brinca2::after {
  content: "";
  width: 100%;
  height: 180px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("/assets/images/img_brincadeiras_box2.png");
  background-repeat: no-repeat;
  background-position: bottom center;
}
.box .brinca3 {
  padding-top: 100px;
}
.box .brinca3 h1 {
  font-size: 43.2px;
  line-height: 44.8px;
  padding-bottom: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 10px solid #fcaf17;
  display: inline-block;
}
.box .brinca3 h1 span {
  color: #f5821f;
}
.box .brinca3 h2 {
  font-size: 24px;
  line-height: 27.2px;
  margin-bottom: 0;
}
.box .brinca3::after {
  content: "";
  width: 180px;
  height: 245px;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("/assets/images/img_brincadeiras_box3.png");
  background-repeat: no-repeat;
}

.inst_feed {
  background-color: #fff0c7;
  padding: 20px;
}
.inst_feed h1 {
  margin-bottom: 30px !important;
}

.serv1, .serv2 {
  min-height: 400px;
}

.gal_feed {
  margin-bottom: 15px;
}
.gal_feed p {
  font-size: 18px;
  line-height: 18px;
  color: #fff0c7;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
  background-color: #00abbd;
}
.gal_feed p.corp {
  background-color: #ef4023;
}
.gal_feed .gal_img {
  position: relative;
}
.gal_feed .gal_img .gal_block {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-position: center center;
  background-size: cover;
}

.gal_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
}

.gal_base {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 99;
  display: none;
}

.gal_modal {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff0c7;
  padding: 24px;
  position: relative;
}
.gal_modal .gal_content {
  margin-top: 35px;
}
.gal_modal .gal_content p {
  color: #ef4023;
}
.gal_modal a {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 99;
}
@media only screen and (max-width: 640px) {
  .gal_modal a {
    right: 20px;
    top: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .gal_modal {
    width: 100%;
    left: 0;
    padding: 12px;
  }
}

.depoimento {
  min-height: 400px;
  padding: 40px;
  margin-bottom: 15px;
}
.depoimento p {
  color: #fff0c7;
}
@media only screen and (max-width: 640px) {
  .depoimento p {
    font-size: 16px;
  }
}
.depoimento.dep_first {
  background-color: #fcaf17;
}
.depoimento.dep_second {
  background-color: #00abbd;
}
.depoimento.dep_third {
  background-color: #f5821f;
}

.corp_card {
  margin-bottom: 15px;
}
.corp_card .corp_legenda {
  font-size: 18px;
  color: #fff0c7 !important;
  padding-top: 13px;
  padding-bottom: 13px;
  text-align: center;
  background-color: #ef4023;
  display: block;
  margin-bottom: 0;
}

.t_corporativo {
  width: 260px;
  max-width: 100%;
  margin-top: 60px;
}
@media only screen and (max-width: 640px) {
  .t_corporativo {
    margin-top: 0;
  }
}

.t_espacokids {
  width: 260px;
  max-width: 100%;
  margin-top: 60px;
}
@media only screen and (max-width: 640px) {
  .t_espacokids {
    margin-top: 0;
  }
}

.t_nasuacasa {
  width: 285px;
  max-width: 100%;
}

.img_oespaco {
  width: 100%;
  height: 280px;
  background-size: cover;
}
.img_oespaco.intbig {
  height: 715px;
}
