@charset "UTF-8";

.site-logo {
    max-height: 150px;
}
/*
 * General Styles
 */
.cc-full-height {
    height: 100vh;
}

.cc-background-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: .2;
}

.so-panel .widget-title {
    font-size: 1.5em;
}

/*
 * Widget - Accordions
 */
/**
 * Accordion
 *
 */
.cc-panel-group {
    background-color: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.cc-panel-group .cc-panel {
    clear: both;
    padding: 5px 15px;
}

.cc-panel-group .cc-panel-title {
    margin: 0;
    padding: 20px 0;
    color: #999;
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all .2s;
}
.cc-panel-group .cc-panel:not(:first-child){
    border-top: 1px solid #42484b;
}

.cc-panel-group .cc-panel-title:hover, .cc-panel-group .cc-panel-title.active {
    color: #42484b;
}

.cc-panel-group .cc-panel-content {
    display: none;
}

.cc-panel-group .cc-panel-content.open {
    display: block;
}

/*
 * Widget - Buttons
 */
.btn,
button {
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    color: #fff;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #333;
}

.btn:hover,
button:hover {
    color: #333;
    border-color: #333;
    background-color: transparent;
}

.btn span,
button span {
    font-weight: 600;
}

.btn-light {
    color: #fff;
    border: 2px solid #999;
    background-color: #999;
}

.btn-light:hover {
    color: #999;
    border-color: #999;
    background-color: transparent;
}

.btn-primary {
    color: #fff;
    border: 2px solid transparent;
    background-color: #e63946;
}

.btn-primary:hover {
    color: #e63946;
    border-color: #e63946;
    background-color: transparent;
}

input[type=submit] {
    color: #fff;
    border: 2px solid transparent !important;
    background-color: #e63946;
}

.btn-ghost-dark {
    color: #333;
    border: 2px solid #333;
    background-color: transparent;
}

.btn-ghost-dark:hover {
    color: #fff;
    border-color: transparent;
    background-color: #333;
}

.btn-ghost-light {
    color: #999;
    border: 2px solid #999;
    background-color: transparent;
}

.btn-ghost-light:hover {
    color: #fff;
    border-color: transparent;
    background-color: #999;
}

.btn-ghost-primary {
    color: #e63946;
    border: 2px solid #e63946;
    background-color: transparent;
}

.btn-ghost-primary:hover {
    color: #fff;
    border-color: transparent;
    background-color: #e63946;
}

.btn-xs {
    padding: 4px 8px;
    font-size: .8em;
}

.btn-sm {
    padding: 5px 10px;
    font-size: .9em;
}

.btn-lg {
    padding: 15px 30px;
}

.btn-block {
    width: 100% !important;
    display: block;
}

/*
 * Widget - Carousel
 */
.cc-carousel .cc-carousel-item {
    outline: none;
}

.cc-carousel a {
    display: block;
}

.cc-carousel a .thumbnail-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cc-carousel a .thumbnail-wrapper:hover img {
    transform: scale(1.1);
}

.cc-carousel a .thumbnail-wrapper:before {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    opacity: 0;
    font-family: "Ionicons";
    font-size: 40px;
    text-align: center;
    color: #fff;
    content: "";
    transition: all .2s;
    transform: translateX(-50%) translateY(-50%);
}

.cc-carousel a .thumbnail-wrapper:hover:before {
    opacity: 1;
    transition: all .4s .1s;
}

.cc-carousel a .thumbnail-wrapper:after {
    position: absolute;
    content: "";
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
}

.cc-carousel a .thumbnail-wrapper:hover:after {
    opacity: .5;
}

.cc-carousel-type-post .cc-carousel-item {
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.cc-carousel-type-post .style-light {
    background-color: #f8f8f8;
}

.cc-carousel-type-post .style-dark {
    background-color: #333;
}

.cc-carousel-type-post .style-dark .post-title {
    color: #eee;
}

.cc-carousel-type-post .style-dark .post-summary {
    color: #aaa;
}

.cc-carousel-type-post .thumbnail-wrapper {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.cc-carousel-type-post .post-thumbnail {
    display: block;
    width: 100%;
}

.cc-carousel-type-post .post-wrapper {
    padding: 20px;
}

.cc-carousel-type-post .post-title {
    font-size: 1em;
}

.cc-carousel-type-post .post-summary p {
    margin: 0;
    font-size: .9em;
}

.cc-carousel-type-post .post-author {
    margin-top: 1em;
    padding-top: 1em;
    font-size: .9em;
    font-weight: 700;
    color: #a6a6a6;
    border-top: 1px solid #eaeaea;
}

.cc-carousel-type-post .post-author img {
    display: inline-block;
    margin-right: .5em;
    border-radius: 100%;
}

.cc-carousel-type-media .media-thumbnail {
    display: block;
    width: 100%;
}

/*
 * Widget - Counter
 */
.cc-counter {
    font-size: 2.5em;
    font-weight: 700;
    color: #42484b;
}

.cc-counter-title {
    font-size: .5em;
    font-weight: 400;
    color: #999;
    line-height: 1;
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-minimal {
    display: -moz-inline-box;
    -moz-box-orient: vertical;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    position: relative;
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-minimal {
    *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-minimal .odometer-digit {
    display: -moz-inline-box;
    -moz-box-orient: vertical;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    position: relative;
}

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-minimal .odometer-digit {
    *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-minimal .odometer-digit .odometer-digit-spacer {
    display: -moz-inline-box;
    -moz-box-orient: vertical;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-minimal .odometer-digit .odometer-digit-spacer {
    *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-minimal .odometer-digit .odometer-digit-inner {
    text-align: left;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-minimal .odometer-digit .odometer-ribbon {
    display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-minimal .odometer-digit .odometer-ribbon-inner {
    display: block;
    -webkit-backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-minimal .odometer-digit .odometer-value {
    display: block;
    -webkit-transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-minimal .odometer-digit .odometer-value.odometer-last-value {
    position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner {
    transition: transform 2s;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
    transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-down .odometer-ribbon-inner {
    transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    transition: transform 2s;
    transform: translateY(0);
}

/*
 * Widget - Countdown
 */
.cc-countdown-wrapper {
    font-size: 2em;
    font-weight: 400;
    color: #42484b;
    line-height: 2;
}

.cc-countdown-prefix,
.cc-countdown-suffix {
    font-size: .7em;
    font-weight: 300;
    color: #b3b3b3;
}

/*
 * Widget - Icon Box
 */
.cc-icon-box-wrapper.icon-left .cc-icon-box-content {
    padding-left: 30px;
}

.cc-icon-box-wrapper.icon-right .cc-icon-box-content {
    padding-right: 30px;
}

.cc-icon-box-wrapper.icon-left, .cc-icon-box-wrapper.icon-right {
    display: table;
}

.cc-icon-box-wrapper.icon-left .cc-icon-box-icon,
.cc-icon-box-wrapper.icon-left .cc-icon-box-content, .cc-icon-box-wrapper.icon-right .cc-icon-box-icon,
.cc-icon-box-wrapper.icon-right .cc-icon-box-content {
    display: table-cell;
    vertical-align: top;
}

.cc-icon-box-wrapper.icon-top .cc-icon-box-icon, .cc-icon-box-wrapper.icon-bottom .cc-icon-box-icon {
    width: auto !important;
}

.cc-icon-box-content {
    margin-bottom: 1em;
}

.cc-icon-box-icon {
    margin-bottom: 1em;
    text-align: center;
}

/*
 * Widget - Hero
 */
/**
 * Hero Section
 *
 */
.cc-hero-section {
    position: relative;
    width: 100%;
    color: #e6e6e6;
    display: table;
}

.cc-hero-section.vertical-align-top .cc-hero-content-wrapper {
    vertical-align: top;
}

.cc-hero-section.vertical-align-bottom .cc-hero-content-wrapper {
    vertical-align: bottom;
}

.cc-hero-section .scroll-to {
    position: absolute;
    z-index: 2;
    bottom: 15px;
    left: 50%;
    font-size: 40px;
    line-height: 1;
    text-align: center;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: .5;
}

.cc-hero-section .scroll-to:hover {
    opacity: 1;
}

.cc-hero-background-image {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cc-hero-background-image.parallax {
    background-attachment: fixed;
}

.cc-hero-background-overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .2;
    background-color: #000;
    content: "";
}

.cc-hero-content-wrapper {
    display: table-cell;
    position: relative;
    vertical-align: middle;
    z-index: 2;
}

.cc-hero-content {
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
}

.cc-hero-title {
    margin: 0;
    font-size: 2.6em;
    font-weight: 700;
    color: #fff;
}

.cc-hero-subtitle {
    margin: .25em 0 0;
    font-size: 1.6em;
    font-family: Georgia, "Times New Roman", Times, serif;
    line-height: 1;
}

.cc-hero-button {
    margin-top: 2em;
}

/*
 * Widget - Newsletter
 */
.cc-newsletter .cc-newsletter-elements {
    position: relative;
}

.cc-newsletter input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/*
 * Widget - Opening Hours
 */
.cc-opening-hours {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.cc-opening-hours span {
    display: inline-block;
    position: relative;
}

.cc-opening-hours span:before {
    position: absolute;
    top: 50%;
    left: 100%;
    right: -9999px;
    height: 1px;
    margin-left: 1em;
    content: "";
    opacity: .1;
    border-top: 1px dashed #000;
}

.cc-opening-hours .day {
    float: left;
    width: 50%;
    overflow: hidden;
}

.cc-opening-hours .hours {
    display: inline-block;
    width: 50%;
    overflow: hidden;
    text-align: right;
}

.cc-opening-hours .hours span:before {
    left: -9999px;
    right: 100%;
    margin-left: 0;
    margin-right: 1em;
}

.cc-opening-hours .current-day {
    font-weight: 700;
}

/*
 * Widget - Pie Chart
 */
.cc-pie-chart-wrapper {
    text-align: center;
}

.cc-pie-chart {
    position: relative;
}

.cc-pie-chart span {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    font-size: 2em;
    font-weight: 300;
    line-height: 1;
    color: #42484b;
    transform: translateX(-50%) translateY(-50%);
}

.cc-pie-chart-label {
    margin-top: 1em;
    font-weight: 700;
    color: #42484b;
}

/*
 * Widget - Progress Bar
 */
.cc-progress-bar-label {
    position: relative;
    font-weight: 700;
    color: #42484b;
}

.cc-progress-bar-label span {
    position: absolute;
    right: 0;
}

.cc-progress-bar {
    position: relative;
    height: 10px;
    margin-bottom: 1em;
    background-color: #f8f8f8;
}

.cc-progress-bar-inner {
    position: absolute;
    height: 100%;
    background-color: #999;
}

/*
 * Widget - Slider
 */
.cc-slider {
    visibility: hidden;
    transition: all .2s .2s;
    opacity: 0;
}

.cc-slider.slick-initialized {
    visibility: visible;
    opacity: 1;
}

.cc-slider .slick-prev {
    left: 5px;
}

.cc-slider .slick-next {
    right: 5px;
}

.cc-slider .slick-prev:before,
.cc-slider .slick-next:before {
    font-size: 40px;
    color: #fff;
}

.cc-slider .slick-active .cc-slider-content {
    opacity: 1;
    transform: translateY(0);
}

.cc-slider.cc-slider-type-post {
    font-size: 1.4em;
}

.cc-slider-content {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 2;
    max-width: 100%;
    font-size: 1em;
    opacity: 0;
    transform: translateY(10%);
    transition: all .6s .4s ease-out;
    color: #fff;
}

.cc-slider-content .cc-slider-title,
.cc-slider-content h1,
.cc-slider-content h2,
.cc-slider-content h3,
.cc-slider-content h4,
.cc-slider-content h5,
.cc-slider-content h6 {
    margin-bottom: 0;
    font-weight: 700;
    color: #eee;
}

.cc-slider-content .cc-slider-summary p {
    margin-bottom: .5em;
    color: #ccc;
}

.cc-slider-content .cc-slider-post-meta {
    margin: 0 auto;
    padding: 0;
    list-style-type: none;
    line-height: 40px;
    color: #ccc;
}

.cc-slider-content .cc-slider-post-meta li {
    display: inline;
    position: relative;
    padding: 0 10px;
}

.cc-slider-content .cc-slider-post-meta li:after {
    position: absolute;
    right: 0;
    content: "·";
    transform: translateX(100%);
}

.cc-slider-content .cc-slider-post-meta li:first-child {
    padding-left: 0;
}

.cc-slider-content .cc-slider-post-meta li:last-child {
    padding-right: 0;
}

.cc-slider-content .cc-slider-post-meta li:last-child:after {
    content: "";
}

.cc-slider-item {
    position: relative;
}

.cc-slider-item.vertical-align-middle .cc-slider-content {
    top: 50%;
    transform: translateY(-50%);
}

.cc-slider-item.vertical-align-bottom .cc-slider-content {
    bottom: 0;
}

.cc-slider-overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: .4;
}

.cc-slider-background-image {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*
 * Widget - Tabs
 */
/**
 * Tabs
 *
 */
.cc-tab-nav {
    margin: 0;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
    margin: 0;
    font-weight: 700;
    line-height: 1;
    border-top: 1px solid #eaeaea;
}

.cc-tab-nav li {
    float: left;
    padding: 20px;
    color: #999;
    cursor: pointer;
    transition: all .2s;
    opacity: .75;
}

.cc-tab-nav li:hover, .cc-tab-nav li.active {
    color: #42484b;
    opacity: 1;
}

.cc-tab-nav li:first-child {
    padding-left: 0;
}

.cc-tab-panes {
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.cc-tab-pane {
    display: none;
    overflow: hidden;
}

.cc-tab-pane.open {
    display: block;
}

/*
 * Widget - Team Members
 */
.cc-team-members {
    text-align: center;
}

.cc-profile-image {
    width: 100%;
    margin-bottom: 1em;
}

.cc-profile-name {
    margin-bottom: .25em;
    font-size: 1.5em;
}

.cc-profile-position {
    margin-bottom: 1em;
    font-size: 1em;
    font-weight: 700;
    color: #999;
}

.cc-social-profiles i {
    margin: 0 5px 10px;
    font-size: 1.2em;
    color: #787878;
    opacity: .5;
}

.cc-social-profiles i:hover {
    opacity: 1;
}

/*
 * Widget - Testimonial
 */

.contact-list .media-left {
    float: left;
}
.contact-list .media:first-child {

    margin-top: 10px;
}
.contact-list .media {
    margin-bottom: 10px;
    float: left;
    width: 100%;
}
.current {
    background-color: #fff !important;
    font-weight: bold !important;
    border: solid 1px #f8f8f8;
}


#preloader {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9990;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}
.loader-logo {
    left: 50%;
    transform: translate(-50%, 0);
    position: absolute;
    top: 40%;
}


@-webkit-keyframes rodando {
    from {
        -webkit-transform: rotateZ(-360deg);
    }
    to {
        -webkit-transform: rotateZ(0deg);
    }
}

@-moz-keyframes rodando {
    from {
        -moz-transform: rotateZ(-360deg);
    }
    to {
        -moz-transform: rotateZ(0deg);
    }
}

@-ms-keyframes rodando {
    from {
        -ms-transform: rotateZ(-360deg);
    }
    to {
        -ms-transform: rotateZ(0deg);
    }
}

@-webkit-keyframes fading {
    0% {
        opacity: 0.3
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0.3
    }
}

@keyframes fading {
    0% {
        opacity: 0.3
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0.3
    }
}

.loader-logo img {
    width:100%;
    max-width: 200px;

    animation:fading 2s infinite;
    -webkit-animation: fading 2s infinite;
    -moz-animation: fading 2s infinite;
    -ms-animation: fading 2s infinite;
}
.loader-logo h1 {
    color: ;
    font-size: 28px;
    text-align: center;
    margin-top: 20px;
}
.loader-logo h1 i{
    color:  !important;
    -webkit-animation: rodando 2s infinite linear;
    -moz-animation: rodando 2s infinite linear;
    -ms-animation: rodando 2s infinite linear;
}


.item a { color: #ff0000; text-decoration: none; }
.item a:visited { color: #ff0000; text-decoration: none; }
.item a:focus, a:hover, a:active { outline: none; }

.item { background: #ffffff; border-radius: 3px; margin-bottom: 30px; }

.item .item-header {
    padding: 22px 20px;
    min-height: 110px;
}
.item .item-header h3 { font-weight: 400; float: left; font-size: 16px; color: #ff0000; text-transform: uppercase; margin: 0;}
.item .item-header span { font-size: 12px; text-transform: uppercase; color: #ff0000; display: inline-block; }
.item .item-header span i { margin-right: 10px; }
.item .item-header .favorite { float: right; }
.item .item-header .favorite:hover { color: #ed2224; }

figure {
    margin: 0 !important;
    max-height: 270px;
}

.item figure { position: relative; overflow: hidden; }
.item figure img {
    width: 100%; height: auto;
    -webkit-transition:-webkit-transform 0.5s ease-in;
    -moz-transition:-moz-transform 0.5s ease-in;
    -o-transition:-o-transform 0.5s ease-in;
}
.item figure:hover img {
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -o-transform:scale(1.1);
}
.item figure .label { position: absolute; top: 20px; right: 20px; }
.item figure .overlay { opacity: 0; background: rgba(255,255,255,0.5); width: 100%; height: 100%; text-align: center; line-height: 244px; position: absolute; top: 0; left: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.item figure .overlay .btn-detail { background: #ed2224; color: #ffffff; }
.item figure:hover .overlay { opacity: 1; }

.label { font-size: 10px; color: #fff; border-radius: 2px; padding: 8px 10px; text-transform: uppercase; }
.label.rent { background: #4caf50; }
.label.sale { background: #2196f3; }
.label.hot { background: #d32f2f; }

.item .item-detail { padding: 20px; overflow: hidden; min-height: 105px; }
.item .item-detail span { font-size: 12px; color: #ff0000; text-transform: uppercase; padding-left: 20px; margin-right: 10px; }
.item .item-detail span i { margin-right: 10px; }
.item .item-detail .left { float: left; }
.item .item-detail .right { text-align: right; float: right; }
.item .item-detail .place { display: block; margin-bottom: 10px; padding: 0; }
                <div class='container-fluid' id='message-cookie' style='position: fixed; bottom: 0; width: 100%; z-index: 10000;'>
                    <div class='row alert alert-danger'>
                        <div class='col-md-4 col-md-offset-4'>
                            Utilizamos cookies para personalizar conteúdo, análise de tráfego e melhorar sua experiência neste site,
                            de acordo com nossos <a href='https://siganet.com.br/termosDeUso.html' target='_blank'>Termos de Uso e Privacidade</a>.
                            Ao continuar navegando, você concorda com estas condições.
                        </div>
                        <div class='col-md-12 text-center'>
                            <button type='button' class='btn btn-primary' onclick='aceitaCookie()'>
                                <span class='fa fa-check'></span>
                                Continuar
                            </button>
                        </div>
                    </div>
                </div>
                <script>
                    function setCookie(cname, cvalue, exdays) {
                        const d = new Date();
                        d.setTime(d.getTime() + (exdays*24*60*60*1000));
                        let expires = 'expires='+ d.toUTCString();
                        document.cookie = cname + '=' + cvalue + ';' + expires + ';path=/;SameSite=None; Secure';
                    }
                    function aceitaCookie() {
                        document.querySelector('#message-cookie').style.display = 'none';
                        setCookie('aceite_cookie', '1', 365);
                    }
                </script>
            