:root {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, ::before, ::after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  font: 1em/1.5 "Open Sans", sans-serif;
  color: #3F434C;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

h1 { font-size: 2.5em; }

h2 { font-size: 2.0em; }

h3 { font-size: 1.75em; }

h4 { font-size: 1.50em; }

h5 { font-size: 1.25em; }

h6 { font-size: 1em; }

a {
  color: inherit;
  text-decoration: none;
}


.gray_box {
    background: #e7e7e7;
    border: none;
    border-radius: 2px;
    box-sizing: border-box;
    display: table;
    moz-border-radius: 2px;
    moz-box-sizing: border-box;
    padding: 10px;
    webkit-border-radius: 2px;
    webkit-box-sizing: border-box;
    width: 100%;
    font-size: 14px;

}


.ttl_sitemap {
    color: #4694e2;
    font-size: 26px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 5px;
}

.grid-33 {
    float: left;
    width: 33.33333%;
padding: 0 20px 0 10px;
}


.lst_sitemap {
    color: #4D4D4D;
    border: solid 1px #ccc;
    display: table;
    width: 100%;
    background: #eaeaea;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    padding: 10px;
    margin-bottom: 20px;
}


.tagtopo {margin: 5px 0 5px 10px;  position: absolute; top: 0px; left: 0px; z-index: 9999999;}
.tagtopo a{font-size: 14px; text-decoration: none; color:#919191; cursor: pointer; }
.tagtopo a:hover {font-size: 14px; text-decoration: underline; color:#919191; cursor: pointer; }

.esconder_hs{
	position: relative;
	top: -400px;
	height: 0px;
	-webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.mostrar_hs{
	height: 200px;
	position: relative;
	top: 30px;
	-webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    margin-bottom:80px;
}

img,
iframe {
  max-width: 100%;
  height: auto;
}

/* form */

label {
  display: block;
  font-family: "Merriweather";
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 1em;
  font: inherit;
  border: none;
  background: #FFF;
  border-radius: .25em;
  box-shadow: 0 .25em .5em rgba(0,0,0,.2);
}

/* COMPONENTS */

/* grid */

.g-container {
  max-width: 72em;
  padding: 0 1em;
  margin: 0 auto;
}

.g-row {
  margin-left: -1em;
  margin-right: -1em;
}

.g-container::before,
.g-container::after,
.g-row::before,
.g-row::after {
  display: table;
  content: " ";
}

.g-container::after,
.g-row::after {
  clear: both;
}

.g-col {
  float: left;
  width: 100%;
  padding: 0 1em;
}

.g-1-1 { width: 100%; }
.g-1-2 { width:  50%; }
.g-1-3 { width:  33.33%; }
.g-2-3 { width:  66.66%; }
.g-1-4 { width:  25%; }
.g-3-4 { width:  75%; }
.g-1-5 { width:  20%; }
.g-2-5 { width:  40%; }
.g-3-5 { width:  60%; }
.g-4-5 { width:  80%; }
.g-1-6 { width:  16.66%; }
.g-5-6 { width:  83.33%; }

@media (min-width: 30em) {
  .sm-1-1 { width: 100%; }
  .sm-1-2 { width:  50%; }
  .sm-1-3 { width:  33.33%; }
  .sm-2-3 { width:  66.66%; }
  .sm-1-4 { width:  25%; }
  .sm-3-4 { width:  75%; }
  .sm-1-5 { width:  20%; }
  .sm-2-5 { width:  40%; }
  .sm-3-5 { width:  60%; }
  .sm-4-5 { width:  80%; }
  .sm-1-6 { width:  16.66%; }
  .sm-5-6 { width:  83.33%; }
}

@media (min-width: 48em) {
  .md-1-1 { width: 100%; }
  .md-1-2 { width:  50%; }
  .md-1-3 { width:  33.33%; }
  .md-2-3 { width:  66.66%; }
  .md-1-4 { width:  25%; }
  .md-3-4 { width:  75%; }
  .md-1-5 { width:  20%; }
  .md-2-5 { width:  40%; }
  .md-3-5 { width:  60%; }
  .md-4-5 { width:  80%; }
  .md-1-6 { width:  16.66%; }
  .md-5-6 { width:  83.33%; }
}

@media (min-width: 64em) {
  .lg-1-1 { width: 100%; }
  .lg-1-2 { width:  50%; }
  .lg-1-3 { width:  33.33%; }
  .lg-2-3 { width:  66.66%; }
  .lg-1-4 { width:  25%; }
  .lg-3-4 { width:  75%; }
  .lg-1-5 { width:  20%; }
  .lg-2-5 { width:  40%; }
  .lg-3-5 { width:  60%; }
  .lg-4-5 { width:  80%; }
  .lg-1-6 { width:  16.66%; }
  .lg-5-6 { width:  83.33%; }
}

/* media */

.media,
.media-box {
  display: block;
}

@media (min-width: 30em) {
  .media {
    display: table;
  }
  .media-box {
    display: table-cell;
    vertical-align: top;
  }
}

/* area */

.area-sm {
  padding: 2em 0;
}

.area-md {
  padding: 6em 0;
}

.area-lg {
  padding: 12em 0;
}

.area-half {
  padding-left: 1em;
  padding-right: 1em;
}

@media (min-width: 48em) {
  .area-row {
    display: flex;
    justify-content: center;
  }

  .area-half {
    flex-grow: 1;
    max-width: 62em;
    padding-left: 4em;
    padding-right: 4em;
  }
}

/* theme */

.t-default {
  background-color: #FFF;
}

.t-mute {
  background-color: #FFFAF5;
}

.t-dark {
  color: #FFF;
  background-color: #0A0F19;
}

.t-darker {
  color: #FFF;
  background-color: #010810;
}

.t-primary,
.t-primary-dark,
.t-primary-darker {
  color: #FFF;
}

.t-primary {
  background-color: #962D40;
}

.t-primary-dark {
  background-color: #3C050A;
}

.t-primary-darker {
  background-color: #230105;
}

.t-galera {
  padding-bottom: 15em;
  background-image: url("../img/bg-galera.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 64em) {
  .t-wat {
    background-image: url("../img/bg-wat.jpg");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
  }

  .t-mic {
    background-image: url("../img/bg-mic.png"), linear-gradient(to right, #FFF, #D5D3D0);
    background-repeat: no-repeat;
    background-position: right top;
  }
}

/* btn */

.btn {
  display: inline-block;
  padding: .75em 2em;
  padding: .75em 1.5em;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: .25em;
  box-shadow:
    inset 0 1px rgba(255,255,255,.2),
    0 .5em 1em rgba(0,0,0,.2);
  transition-property: color, background, box-shadow;
  transition-duration: 500ms;
  /* width: 100%; */
  text-align: center;
}

.btn:hover,
.btn:focus {
  box-shadow:
  inset 0 1px rgba(255,255,255,.2),
  0 .25em .5em rgba(0,0,0,.6);
}

.btn-lg {
  padding: 1.5em 4em;
}

.btn-default {
  color: #962D40;
  background: #FCFCFC;
}

.btn-default:hover,
.btn-default:focus {
  color: #FFF;
  background: #962D40;
}

.btn-facebook {
  color: #FFF;
  background: #46A;
}

.btn-facebook:hover,
.btn-facebook:focus {
  color: #46A;
  background: #FFF;
}

.btn .fa {
  margin-right: 1em;
}

/* title */

.title-1 {
  font-size: 2.5em;
  /*font-weight: bold;*/
  font-weight: normal;
  font-style: normal;
  /*text-transform: lowercase;*/
  text-transform: uppercase;
  letter-spacing: -.05em;
}

/* separator */

.sep-h {
  display: block;
  width: 10em;
  height: .0625em;
  margin-top: 2em;
  margin-bottom: 2em;
  background: rgba(0,0,0,.2);
}

.ta-c .sep-h {
  margin-left: auto;
  margin-right: auto;
}

/* THEME */
.logo-topo {
  width: 96px;
  margin-bottom: 1em;
  font-size: 11px;
  font-weight: bold;
  line-height: 15px;
  color: #932023;
}

.logo-topo img {
  margin-bottom: .625em;
}

.social {
  text-align: center;
  margin-top: 2em;
  margin-bottom: 1em;
  margin-left: 1em;
}

.social a {
  display: inline-block;
  background-color: #3B5998;
  color: #FFF;
  font-size: .875em;
  padding: .75em 1.2em;
  /*border-radius: .25em;*/
  border-radius: 100px;
}

@media (min-width: 68em) {
  .social {
    float: right;
    margin-bottom: 0;
  }
}

/* menu */
.menu {
  /*clear: both;*/
  text-align: center;
}

.menu-items,
.menu-default {
  display: none;
  /*margin-top: 1em;*/
  margin-top: 2em;
}

.menu-items li,
.menu-default li {
  list-style: none;
}

.menu-items a {
  display: block;
}

.menu-item {
  position: relative;
  display: block;
}

.menu-link {
  display: block;
  padding: .75em 1em;
  font-size: .875em;
  border-bottom: 2px solid transparent;
  transition-property: color, border-color;
  transition-duration: 500ms;
}

.menu-link:hover,
.menu-link:focus {
  color: #962D40;
  border-color: #962D40;
}

.menu-item:last-child .menu-link {
  color: #FFF;
  font-weight: bold;
  text-transform: uppercase;
  background: #962D40;
  border-bottom: 0;
  border-radius: .25em;
  box-shadow: 0 .25em .5em rgba(0,0,0,.25);
  transition-property: color, background, box-shadow;
  transition-duration: 500ms;
}

.menu-item:last-child .menu-link:hover,
.menu-item:last-child .menu-link:focus {
  color: #962D40;
  background: #FFF;
}

.menu-dropdown {
  display: none;
  z-index: 2;
  padding: .5em 0;
  margin-top: .5em;
  margin-bottom: .5em;
  background: #FAFAFA;
  box-shadow: 0 .5em 1em rgba(0,0,0,.25);
}

.menu-sublink {
  display: block;
  font-size: .875em;
  padding: .5em 1em;
}

.menu-sublink:hover,
.menu-sublink:focus {
  background: rgba(0,0,0,.05);
}

.menu-backdrop {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: rgba(0,0,0,0.05);*/
}


@media (min-width: 64em) {
  .logo-topo {
    float: left;
    display: block;
    margin-bottom: 0;
  }

  .menu {
    float: right;
  }

  .menu-toggle {
    display: none;
  }
  .menu-default {
    float: left;
    display: block !important;
    margin-top: 2em;
  }
  .menu-item {
    display: inline-block;
  }
  .menu-dropdown {
    position: absolute;
    z-index: 2;
    width: 200%;
    margin-top: 0;
    text-align: left;
  }

  .menu-default li:hover .menu-dropdown {
    display: block !important;
  }
}

/* .menu {
  text-align: center;
}

.menu-item {
  display: inline-block;
  padding: .75em 1em;
  font-size: .875em;
  border-bottom: 2px solid transparent;
  transition-property: color, border-color;
  transition-duration: 500ms;
}

.menu-item:hover,
.menu-item:focus {
  color: #962D40;
  border-color: #962D40;
}

.menu-item:last-child {
  color: #FFF;
  font-weight: bold;
  text-transform: uppercase;
  background: #962D40;
  border-bottom: 0;
  border-radius: .25em;
  box-shadow: 0 .25em .5em rgba(0,0,0,.25);
  transition-property: color, background, box-shadow;
  transition-duration: 500ms;
}

.menu-item:last-child:hover,
.menu-item:last-child:focus {
  color: #962D40;
  background: #FFF;
} */

/* banner */

.banner {}

.banner-item {
  float: left;
  width: 100%;
  height: 20em;
  background-position: center;
  background-size: cover;
  color: #FFF;
}

.banner-desc {
/*  clip: rect(0,0,0,0);
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;*/
  font-size: 6em;
  line-height: 1em
}

.banner-desc-two {
  font-size: 2em;
}

.banner .owl-controls {
  position: absolute;
  bottom: 1.65em;
  width: 100%;
}

.banner .owl-pagination {
  text-align: center;
}

.banner .owl-page {
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: 1em;
  margin-left: .25em;
  margin-right: .25em;
  background: #FFF;
  border-radius: 50%;
  box-shadow: 0 .125em .25em rgba(0,0,0,.25);
}

.banner .active {
  background: #962D40;
}


@media (min-width: 30em) {
  .banner-item { height: 25em; padding-top: 19.5em; }
}

@media (min-width: 64em) {
  .banner-item { height: 35em; }
  .banner .owl-page { font-size: 1.25em; }
}

@media (min-width: 100em) {
  .banner-item { height: 45em; }
}

/* camera-roll */

.camera-roll {
  margin-top: -10em;
}

.camera-roll-item {
  border: .25em solid #FFF;
  box-shadow: 0 .5em 1em rgba(0,0,0,.5);
  transform: rotate(-8deg);
}

/* feed */

.feed {
  list-style: none;
}

.feed > li + li { margin-top: 3em; }

.feed-date-day {
  font-weight: bold;
}

.feed-date-mon {
  text-transform: uppercase;
}

@media (min-width: 30em) {
  .feed-date,
  .feed-content {
    padding-right: 2em;
  }

  .feed-date-day,
  .feed-date-mon {
    display: block;
    text-align: center;
  }

  .feed-date-day {
    font-size: 3em;
    line-height: 1;
    letter-spacing: -.05em;
  }

  .feed-date-mon {
    font-size: 1.25em;
    font-weight: lighter;
    letter-spacing: .1em;
  }
}

/* testimonial */

.testimonials .g-col + .g-col {
  margin-top: 2em;
}

.testimonial-img {
  min-width: 7.5em;
}

@media (min-width: 30em) {
  .testimonial-content {
    padding-left: 2em;
    text-align: left;
  }
}

@media (min-width: 48em) {
  .testimonials .g-col + .g-col {
    margin-top: 0;
  }
}

/* localizacao */

.float-wow {
  display: none;
}

@media (min-width: 72em) {
  .float-wow {
    position: absolute;
    display: block;
    right: 0;
    bottom: 0;
    margin-right: -25%;
  }
}

@media (min-width: 48em) {
  .home-map { height: auto; }
}

/* footer */

/* .footer {
  text-align: center;
}

.footer .btn-facebook {
  margin-top: 1em;
}

@media (min-width: 64em) {
  .footer {
    text-align: left;
  }

  .footer .footer-logo {
    float: left;
    margin-right: 1em;
  }

  .footer .btn-facebook {
    margin-top: .75em;
  }
}
 */

.footer {
  text-align: center;
}

.footer-contact {
  margin-top: 2em;
  list-style: none;
}

.footer-contact li + li {
  margin-top: 1em;
}

.footer-contact .fa {
  display: inline-block;
  width: 2em;
  height: 2em;
  margin-right: 1em;
  font-size: .875em;
  line-height: 2em;
  text-align: center;
  background: #25A;
  border-radius: 50%;
}

.footer-cria {
  margin-top: 1em;
}

@media (min-width: 64em) {
  .footer {
    text-align: left;
  }
  .footer-logo {
    float: left;
  }
  .footer-contact {
    float: right;
    margin-top: 1.5em;
  }
  .footer-contact li {
    display: inline-block;
  }
  .footer-contact li + li {
    margin-top: 0;
    margin-left: 3em;
  }

  .footer-copy {
    float: left;
  }
  .footer-cria {
    float: right;
    margin-top: 0;
  }
  .footer-cria img {
    display: block;
  }
}

/* copy */

.copy {
  text-align: center;
}

.copy-logo {
  margin-top: 1em;
}

@media (min-width: 30em) {
  .copy-text {
    float: left;
  }

  .copy-logo {
    float: right;
    margin-top: 0;
  }

  .copy-logo img {
    display: block;
  }
}

/* page */

.page h1,
.page h2,
.page h3 {
  font-family: "Merriwheater";
}

.page img {
  margin: 1.5em;
}

@media (min-width: 64em) {
  .page img[style="float: left;"] {
    margin: 1em 1.5em;
    margin-left: -5em;
  }

  .page img[style="float: right;"] {
    margin: 1em 1.5em;
    margin-right: -5em;
  }
}

/* course-desc */

.course-desc {
  list-style: none;
}

/* gallery */

.gallery,
.gallery-item,
.gallery-img,
.gallery-box {
  display: block;
}

.gallery-item {
  border-radius: .25em;
  overflow: hidden;
  background: #000;
  box-shadow: 0 .5em 1em rgba(0,0,0,.2);
}

.gallery-item:focus .gallery-img,
.gallery-item:hover .gallery-img {
  transform: scale(1.25) rotate(-2deg);
  opacity: .5;
}

.gallery-img {
  transition: .3s ease;
}

.gallery-box {
  position: relative;
  padding: .5em;
  color: #FFF;
}

/* embed */

.embed {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* post */

.post-item + .post-item {
  margin-top: 2em;
}

.post-footer {
  border-bottom: 1px solid rgba(0,0,0,.2);
  padding-bottom: 2em;
}

.post-img {
  border-radius: .25em;
}

.post-tags {
  display: block;
}

.post-tags li {
  display: inline-block;
  padding: .25em .5em;
  list-style: none;
}

.post-tags li:first-child {
  padding-left: 0;
}

.post-tag {
  font-weight: bold;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: .25em;
}

/* list */

.list-links {
  list-style: none;
  margin-top: 1em;
  font-weight: bold;
}

/* HELPERS */

/* box-model */

/* position */

.pos-a { position: absolute; }

.pos-r { position: relative; }

/* display */

.dis-b { display: block; }

/* margin */

.mt-all * + * { margin-top: 1em; }
.mt-all li + li { margin-top: 0; }

.mt-1 { margin-top: 1em; }

.mt-2 { margin-top: 2em; }

.mt-3 { margin-top: 3em; }

.mb-1 { margin-bottom: 1em; }

.mb-2 { margin-bottom: 2em; }

.mb-3 { margin-bottom: 3em; }

/* padding */

.pt-1 { padding-top: 1em; }

.pt-2 { padding-top: 2em; }

.pt-3 { padding-top: 3em; }

.pb-1 { padding-bottom: 1em; }

.pb-2 { padding-bottom: 2em; }

.pb-3 { padding-bottom: 3em; }

.pt-sm { padding-top: 2em; }

.pt-md { padding-top: 6em; }

.pt-lg { padding-top: 12em; }

.pb-sm { padding-bottom: 2em; }

.pb-md { padding-bottom: 6em; }

.pb-lg { padding-bottom: 12em; }

/* center */

.center-x {
  float: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.center-y {}

/* border */

.bdra {
  border-radius: .25em;
}

.bdra-round {
  border-radius: 50%;
}

/* image */

.img-fluid {
  width: 100%;
  height: auto;
}

/* typography */

/* font-family */

.ff-main {
  font-family: "Open Sans", sans-serif;
}

.ff-alt {
  font-family: "Merriweather", "Georgia", serif;
  font-weight: normal;
}

/* font-size */

.fz-sm {
  font-size: .875em;
}

.fz-md {
  font-size: 1em;
}

.fz-lg {
  font-size: 1.25em;
}

/* font-style */

.fs-i {
  font-style: italic;
}

/* font-weight */

.fw-b {
  font-weight: bold;
}

/* colors */

.c-primary {
  color: #962D40;
}

/* text-align */

.ta-c {
  text-align: center;
}

.ta-j {
  text-align: justify;
}

/*pos aprovado*/
.room-border {
  border: 1px solid #CCC;
  display: table;
  vertical-align: middle;
  min-height: 138px;
}

.room-border p,
.room-border img,
.room-border .btn {
  display: table-cell;
  vertical-align: middle;
}


.wa-widget1 {
    position: fixed;
    z-index: 1;
    left: center;
    bottom: 0;
    display: block;
    color: #fff;
    font-size: 12px;
    cursor: pointer;

}