* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    /*outline: 1px solid red;*/
}

*::after, *::before {
    box-sizing: border-box;
}

body {
    font-size: 14px;
}

.container {
    width: 100%;
    max-width: 1400px;
}

section {
    display: flex;
    justify-content: center;
}

/* topo */
.topo__img {
    /*width: 100%;*/
    display: block;
	margin: 0 auto;
    margin-bottom: 40px;
	max-width:100%; 
	max-height:500px;
}
.topo__img img{ max-width:100%; }
/* end topo */

/* navigation */
.navigation {
    width: 240px;
    display: flex;
    flex-flow: column;
    position: relative;
}

.navigation__content {
    background-color: #fff;
    width: inherit;
}

.fixo {
    position: fixed;
    top: 20px;
}

.navigation p {
    background-color: #f0f0f0;
    padding: 15px;
    width: 100%;
}

.navigation__links {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: flex-start;
    border: 1px solid #e9e9e9;
    border-top: 5px solid #BA0000;
    width: 100%;
    margin-bottom: 20px;
}

.navigation__link {
    padding: 5px;
    padding-left: 20px;
    line-height: 30px;
    text-decoration: none;
    background: url(imagens/seta1.png) left center no-repeat;
    color: #666;
    border-bottom: 1px solid #e9e9e9;
    width: 100%;
    cursor: pointer;
}

.navigation__link.selected, .navigation__link:hover {
    color: black;
    /* border-bottom-color: darkred; */
    background-color: #f1f1f1;
}

/* end navigation */

/* conteudo */
.conteudo .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.conteudo__conteudo {
    width: calc(100% - 260px);
}


.carousel img{
    display: block;
    height: 400px;
	max-width:100%;
}

.slick-next {
    right: 0px;
    z-index: 2;
}

.slick-prev {
    left: 0px;
    z-index: 2;
}

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
}

.slick-prev:before, .slick-next:before {
    font-size: 40px;
    opacity: 1;
}

.conteudo__conteudo h2 {
    font-size: 32px;
    color: #999;
}

hr {
    border-color: #e9e9e9;
    margin: 40px 0;
}

.imovel__galeria {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;

    margin-top: 40px;
    width: 100%;
    padding: 5px;
}

.imovel__galeria__item {
    border: 5px solid white;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    width: 160px;
    transition: .2s ease;
    margin-right: 5px;
    margin-bottom: 5px;
}

.imovel__galeria__item img {
    width: 100%;
    display: block;
}

.imovel__galeria__item:hover {
    /* border:5px solid #BA0000; */
}

.lb-disable-scrolling {
    overflow: hidden;
    position: static;
}

.btenviarmsg{margin-left: auto;
    background-color: #4b4b4b;
    color: #fff;
    border: none;
    padding: 10px; cursor:hand; cursor:pointer;}

/*
form {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
}


form div {
    width: 50%;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
}

form p {
    color: #BA0000;
    margin: 10px 0;
}

form input {
    width: 99%;
    padding: 8px;
}

form textarea {
    width: 100%;
}

form .codigo {
    width: 10%;
}
*/

.formcodigo {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: space-between;

    width: 100%;
    margin-top: 20px;
}

.formcodigo span {
    background-color: #CECECE;
    padding: 10px;
}

.formcodigo input {
    text-align: center;
}

.formcodigo button {
    margin-left: auto;
    background-color: #BA0000;
    color: #fff;
    border: none;
    padding: 10px;
}
.campo{width: 99%;   padding: 8px;}
/* form textarea, .caixa{width: 100%;} */
#tbcontato2 { margin-bottom: 50px; }
/* end conteudo */

/*rodape*/
.rodape {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    padding: 20px;
}

.rodape .container, .assinatura .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.rodape__item {
    color: #4b4b4b;
    display: flex;
    align-items: center;
}

.rodape__item i {
    font-size: 44px;
    margin-right: 10px;
}

.assinatura {
    /* border-top: 6px solid #BA0000; */
    background-color: #f5f5f5;
    padding: 20px;
}
/*end rodape*/

@media (max-width: 720px) {
    .imovel__galeria__item {
        width: 100%;
    }

    .navigation, .conteudo__conteudo {
        width: 100%;
    }

    .formcodigo button {
        width: 100%;
        margin-top: 10px;
    }

/*
    form div {
        width: 100%;
    }
*/
    .fixo {
        position: unset;
        top: unset;
    }

	.assinaturaimob{width: 100%;
    text-align: center;
    margin-top: 20px;}

	.carousel img{height: unset;}

}


