@font-face {
    font-family: 'lince';
    src: url("font-lince/fonts/lince.eot?1o9cjp");
    src: url("font-lince/fonts/lince.eot?#iefix1o9cjp") format("embedded-opentype"), url("font-lince/fonts/lince.woff?1o9cjp") format("woff"), url("font-lince/fonts/lince.ttf?1o9cjp") format("truetype"), url("font-lince/fonts/lince.svg?1o9cjp#lince") format("svg");
    font-weight: normal;
    font-style: normal;
}

.font-lince:before {
    font-family: 'lince';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e600";
    line-height: inherit;
}


/*
 *  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 {
    -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;
}


/*
 *  Core Owl Carousel CSS File
 */

.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;
    -ms-touch-action: pan-Y;
}

.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-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.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 {
    display: none;
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-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 - Lazy Load Plugin
 */

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
    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;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: 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;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
}

.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: #b18aa4;
    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: #b18aa4;
}

::-moz-selection {
    color: #fff;
    background: #88316a;
}

::selection {
    color: #fff;
    background: #88316a;
}


/* Label Error */


/* Alerts Form */

.ajaxForm-alert {
    padding: 10px;
    border-radius: 4px;
    margin-top: 14px;
    color: #b6ae84;
    background-color: #fcf8e3;
    border-width: 1px;
    border-style: solid;
    border-color: #dfd8b2;
}

.ajaxForm-alert--error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #dfb6bd;
}

.ajaxForm-alert--sucess {
    color: #4e814f;
    background-color: #dff0d8;
    border-color: #c1d8ae;
}

.u-noAfter::after {
    display: none !important;
    content: none !important;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.Menu {
    position: fixed;
    background-color: red;
    background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%);
    background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
    right: 0;
    transform: translateX(115%);
    top: 0;
    bottom: 0;
    width: 350px;
    height: 100%;
    height: 100vh;
    z-index: 200;
    display: table;
    transition: right linear .2s, transform linear .2s;
}

@media (max-width: 768px) {
    .Menu {
        width: 75%;
        width: 100%;
    }
}

.Menu.is-visible {
    transform: translateX(0);
}

body main {
    transition: filter .2s linear;
}

body.is-blurred main {
    filter: url(#blur);
    /* Firefox needs SVG */
    filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='2');
    /* IE lte 9 */
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -ms-filter: blur(2px);
    -o-filter: blur(2px);
    filter: blur(2px);
}

body.has-menuOpen {
    overflow: hidden;
    height: 100%;
    height: 100vh;
}

body.has-menuOpen .Header-menuBtn-iconOpen {
    display: none;
}

body.has-menuOpen .Header-menuBtn-iconClose {
    display: initial;
}

.MenuOpen,
.Menu-close {
    background: transparent;
    border: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 26px;
    z-index: 10;
}

.Menu-close {
    color: #fff;
}

@media (max-width: 768px) {
    .Menu-close {
        font-size: 40px;
    }
}

@media(max-width: 290px) {
    .title-canal-titular {
        font-size: 14px !important;
    }
}

.Menu-links-link {
    display: block;
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    transition: color linear .1s;
}

.Menu-links-link:hover {
    color: #88316a;
    text-decoration: none;
}

.Menu-wrapper {
    display: table-cell;
    vertical-align: middle;
}

.Menu-links {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.button {
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    color: white;
    background-color: #88316a;
    padding: 12px 20px;
    border-radius: 5px;
    border: 0;
    transition: background-color .15s linear;
}

.button:hover,
.button:active,
.button:focus,
.button:focus:active {
    background-color: #752a5b;
}

.titleContainer {
    text-align: center;
}

.title {
    display: inline-block;
    font-size: 17px;
    color: #88316a;
    font-weight: bold;
    text-transform: uppercase;
}

.title-line::after {
    content: '';
    display: inline-block;
    width: 120%;
    height: 1px;
    margin-left: -10%;
    background-color: #75c410;
}

.title-line--grey::after {
    background-color: #afafaf;
}

.Header {
    background-image: url("../imagens/header-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    height: 618px;
    padding-top: 30px;
}

.Header::after {
    content: '';
    display: block;
    background-image: url("../imagens/flower-bg-append.png");
    width: 100%;
    height: 336px;
    background-repeat: no-repeat;
    background-position: right;
    position: relative;
    top: 400px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .Header::after {
        display: none;
    }
}

.Header-items {
    display: inline-block;
    float: right;
    margin-top: 30px;
    padding: 0;
}

.Header-items-item+.Header-items-item {
    margin-left: 12px;
}

.Header-items-item {
    display: inline-block;
}

.Header-items-item--phone,
.Header-menuBtn {
    border: 1px solid #88316a;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.Header-items-item--phone i,
.Header-menuBtn i {
    color: #88316a;
    margin-right: 10px;
    font-size: 18px;
}

.Header-menuBtn {
    background-color: #88316a;
    color: #fff;
    text-transform: uppercase;
    outline: 0;
    transition: background-color .2s linear;
}

.Header-menuBtn i {
    color: #fff;
}

.Header-menuBtn .Header-menuBtn-iconClose {
    display: none;
}

.Header-menuBtn:hover {
    background-color: #752a5b;
}

.Categorias {
    margin-top: -150px;
    overflow: hidden;
}

.Categorias-items {
    padding: 0;
}

@media (max-width: 768px) {
    .Categorias-items {
        height: 150px;
        overflow: scroll;
        white-space: nowrap;
    }
}

.Categorias-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 10px;
    display: inline-block;
    height: 160px;
    width: 13.98601%;
    text-align: center;
    padding-top: 71.11111px;
    color: #fff;
    /* transition: background-size .15s linear; */
    transition: 0.9s;
    position: relative;
}

@media (max-width: 1200px) {
    .Categorias-item {
        height: 140px;
        padding-top: 62.22222px;
        width: 13.88889%;
    }
}

@media (max-width: 992px) {
    .Categorias-item {
        height: 100px;
        padding-top: 52.63158px;
        padding-left: 10px;
        padding-right: 10px;
        width: 13.88889%;
        word-break: break-word;
        vertical-align: middle;
    }
    .Categorias-item span {
        transform: translateY(-50%);
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .Categorias-item {
        height: 110px;
        padding-top: 57.89474px;
        padding-left: 10px;
        padding-right: 10px;
        width: 32.33333%;
        word-break: break-word;
        vertical-align: middle;
        white-space: normal;
    }
    .Categorias-item span {
        transform: translateY(-50%);
        display: inline-block;
    }
}

.Categorias-item:hover {
    background-size: 110%;
}

.Categorias-items a.is-active .Categorias-item {
    /* -webkit-filter: grayscale(95%) brightness(120%); */
    /* Safari 6.0 - 9.0 */
    /* filter: grayscale(95%) brightness(120%); */
    -webkit-filter: brightness(170%);
    filter: brightness(170%);
    box-shadow: 5px 5px 5px #2d1122;
}

.Conheca {
    margin-top: 100px;
}

.Conheca .owl-theme .owl-nav {
    text-align: left;
}

.Conheca .owl-theme .owl-nav .owl-prev,
.Conheca .owl-theme .owl-nav .owl-next {
    border-radius: 100%;
    width: 35px;
    height: 35px;
    background-color: #9a6789;
    text-align: center;
    line-height: 25px;
    font-size: 16px;
    transition: background-color .15s linear;
}

.Conheca .owl-theme .owl-nav .owl-prev:hover,
.Conheca .owl-theme .owl-nav .owl-next:hover {
    background-color: #7c526e;
}

.Conheca-col2-title {
    font-size: 45px;
    font-family: "Raleway", sans-serif;
    color: #1d1d1d;
    line-height: 1.0;
    font-weight: 300;
    margin-top: 30px;
    margin-bottom: 50px;
}

.Conheca-col2-text {
    font-size: 16px;
    color: #3c3c3c;
    line-height: 1.938;
    text-align: justify;
}

.Conheca-slide-item {
    background-size: contain;
    width: 523px;
    height: 420px;
    max-width: 100%;
    background-repeat: no-repeat;
}

.Time {
    margin-bottom: 60px;
    width: 100%;
}

@media (max-width: 1200px) {
    .Time-menu {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .Time-menu {
        overflow: scroll;
        white-space: nowrap;
    }
}

.Time-menu-item+.Time-menu-item {
    margin-left: 7px;
}

.Time-menu-item {
    font-size: 16px;
    color: #64475a;
    font-weight: bold;
    line-height: 1.375;
    text-align: center;
    background-color: #e5e5e5;
    border: 0;
    outline: 0;
    padding: 10px 12px;
    border-radius: 30px;
}

@media (max-width: 1200px) {
    .Time-menu-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 1200px) and (min-width: 768px) {
    .Time-menu-item {
        margin-left: 50px;
    }
}

@media (max-width: 1200px) {
    .Time-menu-item::after {
        display: none !important;
    }
}

.Time-menu-item::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15px;
    height: 15px;
    background-color: #9a6789;
    margin-bottom: -15px;
    transform: rotate(45deg);
    opacity: 0;
}

.Time-menu-item:hover,
.Time-menu-item.is-active {
    background-color: #9a6789;
    color: #fff;
}

.Time-menu-item:hover::after,
.Time-menu-item.is-active::after {
    opacity: 1;
}

.Time-view-data {
    display: none;
}

.Time-view {
    margin-top: 40px;
}

.Time-view-item {
    vertical-align: top;
    display: inline-block;
    width: 25%;
}

.Time-view-item-img {
    width: 220px !important;
    height: 220px;
    background-size: cover;
    display: block;
    margin: 0 auto;
    border-radius: 100%;
    object-fit: contain;
}

.Time-view-item-name {
    font-size: 17px;
    color: #88316a;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 5px;
}

.Time-view-item-text {
    font-size: 14px;
    color: #3b3b3b;
    font-style: italic;
    line-height: 1.467;
    text-align: center;
}

.Convenios {
    background-color: #e5e2e9;
    padding-top: 40px;
}

.Convenios .owl-controls {
    text-align: center;
}

.Convenios .owl-controls .owl-dots {
    background-image: url("../imagens/convenios-dots-bg.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    display: inline-block;
    width: 300px;
    height: 58px;
}

.Convenios .owl-controls .owl-dots .owl-dot {
    margin-top: 35px;
    margin-bottom: -15px;
}

.Convenios-item {
    /* display: inline-block; */
    width: 168px;
    height: 95px;
    margin: 10px 0;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
}

.Convenios-item img {
    display: block;
    margin: 0 auto;
    max-width: 80%;
}

.Blog {
    background-image: url("../imagens/blog-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 55px;
    padding-bottom: 40px;
}

.Blog-posts-link,
.Videos-posts-link {
    color: initial;
}

.Blog-posts-link:hover,
.Videos-posts-link:hover,
.Blog-posts-link:active,
.Videos-posts-link:active,
.Blog-posts-link:focus,
.Videos-posts-link:focus,
.Blog-posts-link:focus:active,
.Videos-posts-link:focus:active {
    color: initial;
    text-decoration: none;
}

.Blog-post:hover [class$="post-btn"] {
    background-color: #88316a;
    color: #fff;
}

@media (min-width: 768px) {
    .Blog-post {
        padding-right: 50px;
    }
}

.Blog-post-header,
.Videos-post-header {
    margin-top: 40px;
    margin-bottom: 20px;
    height: 60px;
}

.Blog-post-header-date {
    color: #88316a;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding-right: 10px;
    border-right: 1px solid #e0e0e0;
}

.Blog-post-header-date-month {
    font-size: 18px;
    display: block;
    line-height: 15px;
}

.Blog-post-header-date-day {
    font-size: 24px;
    display: block;
    line-height: 15px;
}

.Blog-post-header-title,
.Videos-post-header-title {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    width: 75%;
}

.Blog-post-image img,
.Videos-post-image img {
    border-radius: 10px;
    max-width: 100%;
}

.Blog-post-image-item {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Blog-post-text,
.Videos-post-text {
    font-size: 15px;
    color: rgba(88, 88, 88, 0.8);
    font-style: italic;
    margin: 20px 0;
}

.Blog-post-btn,
.Videos-post-btn {
    border-radius: 100%;
    outline: 0;
    background-color: #88316a;
    color: #fff;
    border: 2px solid #88316a;
    transition: background-color linear .15s, color linear .15s;
    width: 35px;
    height: 35px;
}

.Blog-post-btn:hover,
.Videos-post-btn:hover {
    background-color: #b30b79;
    color: #fff;
    border: none;
}

.Footer {
    background-color: #e5e2e9;
    padding-top: 70px;
}

.Footer-items {
    margin-bottom: 40px;
}

.Footer-input {
    height: 50px;
}

.Footer-textarea {
    resize: none;
}

.Footer-input,
.Footer-textarea {
    font-size: 15px;
    color: #464646;
}

.Footer-input::-webkit-input-placeholder,
.Footer-textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #464646;
    font-style: italic;
}

.Footer-input::-moz-placeholder,
.Footer-textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #464646;
    font-style: italic;
}

.Footer-input:-ms-input-placeholder,
.Footer-textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #464646;
    font-style: italic;
}

.Footer-input:-moz-placeholder,
.Footer-textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #464646;
    font-style: italic;
}

.Footer-input.error,
.Footer-textarea.error {
    border: 1px solid #E57373;
}

.Footer-title {
    font-size: 18px;
    color: #88316a;
    margin-bottom: 20px;
}

.Footer-text {
    font-size: 15px;
    color: #212121;
    line-height: 1;
    margin-bottom: 10px;
}

.Footer-address {
    font-size: 15px;
    color: #464646;
}

.Footer-menu {
    margin-top: -25px;
}

.Footer-menu .Footer-menu-link--contato,
.Footer-menu .Footer-menu-link--contato::after {
    display: none;
}

.Footer-menu-link {
    font-size: 16px;
    color: #212121;
    transition: color linear .15s;
}

.Footer-menu-link:hover,
.Footer-menu-link:active,
.Footer-menu-link:focus,
.Footer-menu-link:focus:active {
    color: #88316a;
    text-decoration: none;
}

.Footer-menu-link:not(:last-child)::after {
    content: '\25CF';
    display: inline-block;
    font-size: .6em;
    color: #88316a;
    vertical-align: middle;
    margin: 0 12px;
}

.Footer-bottomBar {
    border-top: 1px solid #914276;
    padding: 50px 0;
}

.Footer-bottomBar p {
    font-size: 13px;
    color: #212121;
}

.Footer-bottomBar .font-lince {
    float: right;
    font-size: 40px;
    color: #88316a;
    transition: color linear .15s;
    margin-top: -52px;
}

.Footer-bottomBar .font-lince:hover,
.Footer-bottomBar .font-lince:active,
.Footer-bottomBar .font-lince:focus,
.Footer-bottomBar .font-lince:focus:active {
    color: #752a5b;
    text-decoration: none;
}

.Videos-post:hover [class$="post-btn"] {
    background-color: #88316a;
    color: #fff;
}

.Videos-post-header {
    margin-top: 0;
}

.Videos-post-header-title {
    width: 100%;
    margin: 0;
}

.Videos-post-image {
    max-height: 135px;
}

.Redes-title {
    font-size: 16px;
    color: #212121;
    line-height: 1.125;
    text-align: left;
}

.Redes-list {
    padding: 0;
    border-top: 1px solid #88316a;
    padding-top: 20px;
    margin-bottom: 50px;
}

.Redes-list a {
    color: #141414;
    transition: color linear .15s;
}

.Redes-list a:hover,
.Redes-list a:active,
.Redes-list a:focus,
.Redes-list a:focus:active {
    color: #88316a;
    text-decoration: none;
}

.Redes-list-item {
    list-style-type: none;
    font-size: 18px;
    color: inherit;
    margin-left: 7px;
    margin-bottom: 20px;
}

.Redes-list-item i {
    margin-right: 10px;
    color: #88316a;
}

.Redes-list-item--facebook i {
    color: #3b5998;
}

.Redes-list-item--instagram i {
    color: #c13584;
}

.Redes-list-item--youtube i {
    color: #cd201f;
}

.touchHelper {
    display: none;
    margin: 0 auto;
    width: 50px;
    opacity: .4;
    transition: opacity 1s ease-in-out;
}

@media (max-width: 768px) {
    .touchHelper {
        display: block;
    }
}

.touchHelper.is-hidden {
    opacity: 0;
}

label.error {
    display: none !important;
}

.Pagination {
    text-align: center;
}

.Pagination-items {
    margin: 0;
    padding: 0;
    text-align: center;
}

.Pagination-items-item {
    display: inline-block;
}

.Pagination-items-item a {
    display: inline-block;
    width: 26px;
    height: 26px;
    border: 2px solid #88316a;
    color: #88316a;
    border-radius: 100%;
    transition: background-color linear .25s, color linear .15s;
}

.Pagination-items-item:hover a,
.Pagination-items-item.is-active a {
    background-color: #88316a;
    color: #fff;
    text-decoration: none;
}

@media (min-width: 768px) {
    .Time-menu {
        white-space: nowrap;
        overflow-x: auto;
        height: 70px;
    }
    .Time-menu::-webkit-scrollbar {
        width: 1em;
        height: 5px;
    }
    .Time-menu::-webkit-scrollbar-track {
        background-color: #e5e5e5;
    }
    .Time-menu::-webkit-scrollbar-thumb {
        background-color: #9a6789;
    }
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #88316a;
    border-color: #88316a;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    z-index: 2;
    color: #fff;
    background-color: #88316a;
    border-color: #88316a;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 2px 8px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #88316a;
    text-decoration: none;
    background-color: #fff;
    border: 2px solid #88316a;
    border-radius: 100%;
    margin: 0 2px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border: 2px solid #88316a;
    border-radius: 100%;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-radius: 100%;
}

@media (min-width: 768px) {
    .Footer-item--videos {
        padding-left: 25px;
    }
}

.Footer-bottomBar {
    border-top: none;
    padding: 50px 0;
}

.Footer-menu {
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    border-top: 1px solid #914276;
    border-bottom: 1px solid #914276;    
}

.page .Header {
    background-image: url("../imagens/bg-interna.jpg");
    background-position: center top;
    height: 282px;
}

@media (max-width: 768px) {
    .page .Header {
        height: 180px;
    }
}

.page .Categorias {
    margin-top: -90px;
}

@media (min-width: 768px) {
    .page .Categorias {
        margin-bottom: 70px;
    }
}

.page .Header::after {
    z-index: -1;
}

.page-servicos .Categorias {
    margin-top: 10px;
}

.servicos-ServicosMain {
    margin-bottom: 100px;
}

@media (min-width: 768px) {
    .servicos-ServicosMainContainer {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .servicos-ServicosMain-aside-menu {
        text-align: center;
    }
}

.servicos-ServicosMain-aside-menu ul {
    padding: 0;
}

.servicos-ServicosMain-aside-menu li {
    list-style-type: none;
}

.servicos-ServicosMain-aside-menu-link {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #64475a;
    border-radius: 50px;
    margin-bottom: 10px;
    transition: background-color linear .15s, color linear .15s, border-color linear .15s;
    list-style-type: none;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
}

.servicos-ServicosMain-aside-menu-link:hover,
.servicos-ServicosMain-aside-menu-link.is-active,
.servicos-ServicosMain-aside-menu-link:focus {
    background-color: #9a6789;
    border-color: #9a6789;
    color: #fff;
    text-decoration: none;
}

.servicos-ServicosMain-article span {
    font-family: inherit !important;
    color: inherit !important;
    font-weight: normal !important;
    font-size: 15px !important;
    text-align: justify !important;
}

.servicos-ServicosMain-article p {
    margin-bottom: 20px !important;
    font-family: inherit !important;
    line-height: 150% !important;
    font-weight: normal !important;
    font-size: 15px !important;
    text-align: justify !important;
}

.servicos-ServicosMain-article-header {
    margin-bottom: 15px;
}

.servicos-ServicosMain-article-header-category {
    display: block;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.servicos-ServicosMain-article-header-title {
    display: inline-block;
    width: 90%;
    font-size: 30px;
    margin: 0;
    margin-top: -10px;
    font-family: "Raleway", sans-serif;
    color: #63234d;
}

.servicos-ServicosMain-article-header::before {
    content: '';
    display: inline-block;
    background-image: url("../imagens/favicon.png");
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    margin-right: 10px;
    vertical-align: bottom;
}

.page-servicos .titleContainer--main {
    padding: 20px 0;
}

.page-blog .Blog-post-image,
.page-blog .Videos-post-image {
    float: left;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 20px;
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .page-blog .Blog-post-header-title,
    .page-blog .Videos-post-header-title {
        width: auto;
    }
}

.blog-Main {
    margin-bottom: 70px;
}

.blog-Main-article {
    text-align: justify;
}

.blog-Main-article-img {
    float: left;
    max-width: 300px;
    max-height: 300px;
    margin: 0 10px 10px 0;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.blog-Main-postItem {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 40px;
}

.blog-Main-postItem::after {
    content: "";
    display: table;
    clear: both;
}

.blog-Main-postItem:last-child {
    border-color: transparent;
}

@media (max-width: 768px) {
    .page-blog .Blog-post-image,
    .page-blog .Videos-post-image {
        float: none;
        text-align: center;
    }
    .page-blog .Blog-post-header,
    .page-blog .Videos-post-header {
        margin-top: 10px;
    }
    .page-blog .Blog-post-footer,
    .page-blog .Videos-post-footer {
        text-align: center;
    }
    .page-blog .blog-Main-postItem {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .page-blog .Blog-post-btn,
    .page-blog .Videos-post-btn {
        margin-right: 0;
    }
}

.blog-Main-article p {
    margin-bottom: 15px;
}

.blog-Main-article-title {
    font-size: 40px;
    font-family: "Raleway", sans-serif;
    color: #1d1d1d;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .blog-Main-article-title {
        font-size: 25px;
    }
}

.blogPost-VejaTambem .Blog-post-header-title,
.blogPost-VejaTambem .Videos-post-header-title {
    width: 70%;
}

@media (max-width: 992px) {
    .blogPost-VejaTambem .Blog-post-image,
    .blogPost-VejaTambem .Videos-post-image {
        float: none;
        text-align: center;
    }
    .blogPost-VejaTambem .Blog-post-footer,
    .blogPost-VejaTambem .Videos-post-footer {
        text-align: center;
    }
    .blogPost-VejaTambem .Blog-post-btn,
    .blogPost-VejaTambem .Videos-post-btn {
        margin-right: 0;
    }
}

.page-blog--post .blogPost-VejaTambem {
    margin-bottom: 70px;
}

.page-videos .Header {
    margin-bottom: 20px;
}

.page-videos .Footer {
    margin-top: 70px;
}

.page-videos .Videos-post-header-title {
    margin-top: 30px;
}

.videos-VejaTambem {
    margin-top: 60px;
}

.videos-Main-theater {
    margin-bottom: 20px;
}

.videos-Main-theater iframe {
    width: 100%;
    height: 625px;
}

@media (max-width: 992px) {
    .videos-Main-theater iframe {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .videos-Main-theater iframe {
        height: 300px;
    }
}

@media (max-width: 440px) {
    .videos-Main-theater iframe {
        height: 190px;
    }
}

.videos-VejaTambem .Videos-post {
    margin-bottom: 20px;
}

.videos-VejaTambem .Videos-post-header {
    display: none;
}

@media (max-width: 768px) {
    .videos-VejaTambem .Videos-post-image {
        float: none;
        text-align: center;
    }
    .Videos-post-footer {
        margin-right: 0;
        text-align: left;
        margin-bottom: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .Footer-item {
        padding: 0 30px;
    }

    .Videos-post-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 1200px) {
    .Categorias {
        margin-top: -120px;
    }
}

@media (max-width: 992px) {
    .Header {
        background-size: 150%;
        background-position: top;
        height: 510px;
    }
    .Conheca {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

@media (max-width: 992px) and (min-width: 768px) {
    .Conheca-col1,
    .Conheca-col2 {
        display: inline-block !important;
        vertical-align: bottom;
        float: none;
        width: 49.75%;
    }
}

@media (max-width: 992px) {
    .Conheca-slide-item {
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        width: 320px;
        height: 280px;
    }
    .Footer-item {
        margin-top: 30px;
    }
    .form-dado-titular {
        display: block !important;
    }
}

@media (max-width: 992px) and (min-width: 768px) {
    .Redes-col1,
    .Redes-col2 {
        display: inline-block;
        width: 48%;
        vertical-align: top;
    }
    .Redes-col2 {
        margin-left: 3.5%;
    }
}

@media (max-width: 992px) {
    .Footer-menu {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .Header-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 500;
    }
    .Header {
        padding-top: 0;
        background-image: url("../imagens/header-bg_mobile.jpg");
        background-position: center bottom;
        background-size: initial;
        background-repeat: no-repeat;
        height: 350px;
    }
    .Header-bar {
        background-color: #ffffff;
        height: 60px;
        padding-top: 10px;
        padding-bottom: 15px;
    }
    .Header-logo {
        width: 70px;
        height: 40px;
    }
    .Header-items {
        margin-top: 0;
    }
    .Header-items-item {
        display: none;
    }
    .Header-items-item--menu {
        display: block;
    }
    .Header-menuBtn {
        font-size: 14px;
    }
    .Categorias {
        margin-top: -20px;
    }
    .Categorias-items {
        height: auto;
        margin-left: 15px;
    }
    .Conheca-col1 {
        display: none;
    }
    .Conheca {
        margin-top: 0;
    }
    .Conheca-col2-title {
        font-size: 35px;
    }
    .Conheca-col2-text {
        font-size: 14px;
    }
    .Convenios-item {
        width: 100%;
    }
    .Blog-post-btn,
    .Videos-post-btn {
        margin-right: 35px;
    }
    .Footer-menuContainer {
        display: none;
    }
    .Footer-bottomBar p {
        font-size: 12px;
    }
    .Footer-bottomBar {
        padding: 25px 0;
    }
    .Footer-bottomBar .font-lince {
        margin-top: -50px;
        font-size: 30px;
    }
    .Time-view-data {
        display: block;
    }
    .Time-view {
        display: none !important;
    }
}

.owl-item .Time-view-item {
    width: 100%;
}

.Time .titleContainer {
    margin-bottom: 30px;
    margin-top: 15px;
}

.blog-Main-article * {
    font-family: inherit !important;
}

.Convenios-disclaimer {
    font-size: 11px;
    color: #797979;
    font-style: italic;
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
    margin-top: -70px;
    z-index: 99;
}

.Convenios .owl-controls .owl-dots {
    margin-top: 30px;
}

.page-Promocoes {
    margin-bottom: 50px;
}

.page-Promocoes .Time-view-item-name {
    margin-bottom: 20px;
    margin-top: 10px;
}

.page-Promocoes-main {
    background-size: cover;
    background-position: center center;
    height: 350px;
    margin: 20px 0;
}

.page-Promocoes-main-title {
    text-align: left;
}

.page-Promocoes-items-item-cover {
    height: 250px;
    background-size: cover;
    background-position: center center;
}

.page-Promocoes-items-item {
    margin-bottom: 30px;
}

.page-Promocoes-items {
    margin-top: 30px;
}

.page-Promocoes-noLink {
    color: inherit;
}

.page-Promocoes-noLink:hover,
.page-Promocoes-noLink:active,
.page-Promocoes-noLink:focus,
.page-Promocoes-noLink:focus:active {
    color: inherit;
    text-decoration: none;
}


/*# sourceMappingURL=style.css.map */

ul.terms-list {
    list-style: none;
    padding: 0;
}

li.term-item a {
    color: #464646;
}

@media (max-width: 768px) {
    .Header-items-item {
        display: inline-block;
    }
}

@media (max-width: 430px) {
    .Header-items-item {
        zoom: .7;
        margin-top: 12px;
    }
    .Categorias-item {
        width: 30.5%;
    }
    .Categorias-items a.is-active .Categorias-item {
        width: 33%;
    }
}

@media(min-width: 992px) {
    .Categorias-items a.is-active .Categorias-item {
        width: 16.5%;
        margin-left: 5px;
        margin-right: 5px;
    }

    .Categorias-item {
        width: 12.5%;
    }

    .Categorias-item:hover {
        width: 14%;
        margin-left: 10px;
        margin-right: 10px;
    }

    .video-rodape-post {
        bottom: 0px;
        position: absolute;
    }

    .videos-VejaTambem .Videos-post {
        margin-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .Categorias-items a.is-active .Categorias-item {
        height: 120px;
        margin-left: 7px;
        margin-right: 7px;
    }

    .Footer-menu-link:not(:last-child)::after {
        display: none;
    }

    .servicos-ServicosMain-aside-menu-link {
        width: 100%;
    }

    .Blog-post-text, .videos-post-text-footer {
        margin: 80px 0 20px 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .servicos-ServicosMain-aside-menu-link {
        min-width: 241px;
    }

    .videos-VejaTambem .Videos-post {
        min-height: 370px;
    }
}

@media (min-width: 1200px) {
    .servicos-ServicosMain-aside-menu-link {
        min-width: 263px;
    }

    .videos-VejaTambem .Videos-post {
        min-height: 340px;
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* .Footer-menu {
    display: flex;
    flex-direction: column;
}
   */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
        top: 70px;
        position: absolute;
    }

    .Footer-menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        margin-top: 81px;
        /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); */
    }

    .Footer-menu a {
        padding: 12px 16px;
        text-align: left;
    }

    .Footer-menu.show {
        display: flex !important;
    }

    .servicos-ServicosMain-article-header-title {
        margin-top: unset;
    }

    .Blog-post-header, .Videos-post-header {
        height: unset;
    }

    .img-video-post {
        width: 100vw;
    }

    .btn-menu-toggle {
        display: flex;
        justify-content: flex-end;
        margin-right: 15px;
        background: white;
        margin-top: 110px;
    }

    .servicos-ServicosMain-article-header-title {
        width: 100%;
    }

    .Videos-post-header-title.js-videosTitleSameHeight {
        margin-top: 80px;
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    .btn-menu-toggle {
        display: none;
    }
}

.video-post-header-footer {
    margin-bottom: 0px;
}

.blog-Main-article-img {
    width: 100% !important;
    max-width: unset;
    max-height: unset;
    margin-bottom: 40px;
}

.Videos-post-image {
    width: 100% !important;   
}

.Videos-post-header-title.js-videosTitleSameHeight {
    margin-top: 10px;
}

.Blog-post-text.home, .videos-post-text-footer, .Blog-post-text.artigos, .Videos-post-text.videos {
    text-align: justify;
    font-style: normal;
}

.btn-ler-mais, .btn-ver-mais {
    width: 120px;
    height: 40px;
    border-radius: 10px;
}

.title-endereco {
    margin-bottom: 5px !important;
}

.link-rodape {
    color: #464646;
    text-decoration: none !important;
}

.link-rodape:hover {
    color: #9a6789;
}

.title-email {
    margin-bottom: 2px;
    display: block;
}

.g-recaptcha {
    transform-origin: 0;
    transform: scale(0.77);
}

.canal-titular .g-recaptcha {
    transform: unset;
    transform-origin: unset;
}

.div-envio {
    display: flex;
    justify-content: flex-end;
}

.title-canal-titular {
    font-size: 24px;
}

.form-conteudo {
    font-size: 16px;
}

.texto-titular {
    font-size: 17px;
    line-height: 24px;
}

input[type=checkbox], input[type=radio] {
    width: 21px;
    height: 19px;
    margin-right: 5px;
}

.form-check {
    display: flex;
}

#escolha_a_opção {
    margin-bottom: 7px;
    display: block;
}

.canal-titular input, .canal-titular textarea {
    padding: 24px 15px;
    border-radius: 10px;
    border: 1px solid #ffd4f0;
}

.canal-titular input::placeholder, .canal-titular textarea::placeholder {
    font-size: 16px !important;
    font-family: 'Roboto', sans-serif !important;
}

.title-duvida {
    font-size: 17px;
}

.form.canal-titular {
    background: #f9f9f9;
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid #88316a;
}

.label-radio {
    margin-bottom: 0;
    margin-top: 4px;
}

.Convenios-item:hover {
    transform: scale(1.15);
}