:root {
    --banner-altura: 500px /* 97vh */
}
#bannerPrincipal {
    width: 100%;
	overflow: hidden;
	height: var(--banner-altura);
    padding: 0;
    margin: 0;
    position: relative;
}
@media(max-width:991px) {
	#bannerPrincipal {
		height: calc(var(--banner-altura) - var(--header-altura) - 40px) !important
	}
}
#bannerPrincipal .carousel-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}
#bannerPrincipal .carousel-inner,
#bannerPrincipal .carousel-item {
    height: 100%;
}
#bannerPrincipal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
/* Infos para Mudar */
#bannerPrincipal .frase01 span { 
    background-color: var(--principal);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
}
#bannerPrincipal .frase02 {
    font-size: 40px;
    text-shadow: 0px 0px 5px rgba(0,0,0,.5);
    color: #fff;
    font-weight: bold;
    position: relative;
}
#bannerPrincipal .frase02:before {
    content: '';
    width: 70px;
    height: 3px;
    border-radius: 6px;
    background-color: var(--principal);
    margin: 20px auto;
}
#bannerPrincipal .btn-banner {
    background-color: #DDD;
    color: var(--principal);
}
#bannerPrincipal .btn-banner:hover {
    color: var(--principal);
    background-color: #FFF;
}
#bannerPrincipal .carousel-overlay {
    right: 0px;
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 2;
}
#bannerPrincipal .carousel-caption {
    right: 10%;
    top: 30%;
    left: 10%;
    color: #fff;
    bottom: 30%;
    z-index: 3;
}
#bannerPrincipal .carousel-indicators {
	margin-bottom: 40px;   
    z-index: 4;
}

.introducao_ctn {
    background-color: #32196b;
    background-image: url(/assets/img/home_esquerda.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF
}
.introducao_ctn .logo_esquerda {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 40%;
    background-image:url(/assets/img/logobg.png);
    background-position:left center;
    background-repeat:no-repeat
}
.introducao_ctn .imagem_direita {
    position: absolute;
    left: 60%;
    top: 0px;
    bottom: 0px;
    right: 0px;
    background-image:url(/assets/img/home_direita.png);
    background-color:#FFF;
    background-position:left center;
    background-repeat:no-repeat
}

.obras_ctn {
    background-color: var(--botao);
    position: relative;
}
.obras_ctn .container {
    position: relative;
    z-index: 2;
}
.obras_ctn .header h1 {
    color: #FFF;
}
.obras_ctn .body ._obra a {
    display: block;
    color: #FFF;
    text-transform: none;
}
.obras_ctn .body ._obra .obra-imagem {
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    height: 180px;
}
.obras_ctn .body ._obra .obra-imagem img {
    position: relative;
    margin: 0 auto;
    object-fit: cover;
    z-index: 1;
    height: 200px;
    width: 100%;
}
.obras_ctn .body ._obra .obra-imagem:after {
    z-index: 2;
    position: absolute;
    border-radius: 200px;
    background-color: var(--principal);
    color: #FFF;
    content: '+';
    width: 42px;
    height: 42px;
    bottom: 15px;
    right: 15px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;

    -webkit-transition: all .2s ease 0s;
    -moz-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s;
}
.obras_ctn .body ._obra a:hover .obra-imagem:after {
    background: #b54c04;
}
.obras_ctn .body ._obra a h1 {
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
}
.obras_ctn .footer a {
    background-color: var(--principal);
    color: #FFF;
    font-weight: 600;
    border-radius: 200px;
    max-width: 250px;
    padding: 10px 20px;
}
.obras_ctn .footer a:hover {
    background: #b54c04;
    box-shadow: 0px 0px 2px 5px rgba(238, 99, 4, .3)
}

.clientes_ctn .owl-dots {
    margin-top: 50px
}

@media(max-width: 991px) {
    #bannerPrincipal .frase02 {
        font-size: 28px;
    }
    
    header a, header .nav-link {
        color: var(--principal)
    }
}

@media(max-width:767px) {
    .logo_esquerda {
        display: none;
    }
    .imagem_direita {
        position: static !important;
        height: 350px
    }
}