:root {
    /* colors */
    --black-border: rgba(0, 0, 0, 0.06);
    --blue: #16243E;
    --blue-dark: #00112D;
    --blue-light: #283F6B;
    --gray: #434343;
    --gray-border: rgba(179, 182, 182, 0.05);
    --gray-dark: #333333;
    --gray-light: rgba(246, 246, 246, 0.65);
    --green: #21BA21;
    --orange: #F26411;
	--orange-dark: #DB341A;
    --purple: #6C6588;
    --purple-dark: #423B5B;
    --white: #FFFFFF;

    /* gradients */
    --black-gradient: transparent linear-gradient(180deg, #00000000 0%, #09121EA8 100%) 0% 0% no-repeat;
    --gray-gradient: transparent linear-gradient(180deg, #F4F4F4B0 0%, #FFFFFF 100%) 0% 0% no-repeat;
    --gray-dark-gradient: linear-gradient(to right top, #ffffff, #fcfcfc, #fafafa, #f7f7f7, #f5f5f5, #f3f3f3, #f1f1f1, #efefef, #ededed, #eaeaea, #e8e8e8, #e6e6e6);
    --orange-gradient: transparent linear-gradient(24deg, #000000 0%, #000000 30%, #00112d 91%, #00112d 100%) 0% 0% no-repeat;

    /* shadows */
    --shadow: 0px 3px 6px #0000000D;
    --shadow-strong: 0px 4px 13px #DEDBDB73;
    --shadow-stronger: 0px 7px 9px #87A69F36;
}

html,
body {
	width: 100%;
    margin: 0px;
    padding: 0px;
}

body {
	font-family: "Segoe UI", Arial, sans-serig;
	font-size: 16px;
	font-weight: 400;

    display: none;
}

body.fixed {
    padding-top: 78px;
}

img {
	max-width: 100%;
}

a:focus,
button:focus {
	outline: 0;
}

a:hover {
	text-decoration: none;
}

button:focus {
	outline: none;
}

:focus {
    outline: none;
}

.open-text {
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 10px;
    display: none;
    cursor: pointer;
}

/***************************************
botões
***************************************/

.btn-orange {
    border: 2px solid var(--orange);
    padding: 10px 15px;
    color: var(--gray-dark);

    display: block;
}

.btn-gradient {
    background: var(--orange-gradient);
    color: var(--white);

    font-family: Roboto;
    font-size: 12px;
    font-weight: bold;
}

.btn-bg-orange {
    background: var(--orange-gradient);
    border-radius: 7px;
    font-family: Roboto;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white);

    height: 75px;
    padding: 25px 40px;
    display: inline-block;
}

.btn-bg-orange:hover {
    color: var(--white);
}

.btn-bg-orange img {
    margin-left: 10px;
}


/***************************************
títulos
***************************************/

.title {
    font-family: Roboto;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--blue-dark);
}

.title span {
    color: var(--orange);
}

/***************************************
breadcrumb
***************************************/

#bread {
    background-image: url(../img/breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;

    padding: 35px 25px;
}

nav .breadcrumb {
    justify-content: center;
    background-color: transparent;

    margin-bottom: 0;
}

nav .breadcrumb li,
nav .breadcrumb li a,
nav .breadcrumb .breadcrumb-item.active {
    font-style: italic;
    font-weight: 300;
    color: var(--blue-dark);
}

nav .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--blue-dark);
}

/***************************************
overlay
***************************************/

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: #111;
    visibility: hidden;
    z-index: 103;
}

#overlay.active {
    opacity: .8;
    visibility: visible;
}


/***************************************
whatsapp
***************************************/

#whatsapp {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 104px;
    height: 100px;
    padding: 15px 0;
    z-index: 10;
    
    background-color: var(--green);
    text-align: center;
}

#whatsapp a {
    color: var(--white);
}

#whatsapp a i {
    font-size: 46px;
}

#whatsapp a span {
    display: block;

    font-size: 12px;
    font-weight: 300;
}

/***************************************
header
***************************************/

header {
    background-color: #FFF;
    position: relative;
    z-index: 9999;
}

header .navbar-toggler {
    padding: 0 0 0 15px;
}

header .navbar .navbar-toggler-icon {
    width: 22px;
    height: 22px;
    
    background-image: url(../img/menu.png);
}

header .navbar-nav .nav-link {
    padding: 20px 25px;
    position: relative;

    font-family: Roboto;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--blue-dark);

    -webkit-transition: all .2s ease-in;
       -moz-transition: all .2s ease-in;
        -ms-transition: all .2s ease-in;
         -o-transition: all .2s ease-in;
            transition: all .2s ease-in;
}

header .nav-item.active .nav-link,
header .nav-item:hover .nav-link,
header .nav-item .dropdown.show {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header .nav-item.active .nav-link:before,
header .nav-item:hover .nav-link:before,
header .nav-item .dropdown.show:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 100%;
    z-index: 1001;
    
    background: var(--orange-gradient);
    border-radius: 0 4px 4px 0;
}

header .navbar .contact {
    font-size: 12px;
    color: var(--blue-dark);
    background-color: var(--white);
    box-shadow: var(--shadow-stronger);
    border-radius: 100px;

    padding: 5px 15px;
    margin: 0 15px 15px;
}

header .navbar .contact .whats a {
    font-size: 18px;
    font-weight: bold;
    color: var(--orange-dark);
}

header .navbar .contact .whats a img {
    margin-right: 5px;
}

header .navbar-nav .dropdown-menu {
    border: 0;
    background-color: var(--black-border);
    border-radius: 0;
}

header .dropdown-item {
    padding: 15px 25px;

    color: var(--blue-dark);
    font-family: Roboto;
    font-size: 13px;
    text-transform: uppercase;
}


header.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;

    -webkit-transition: .2s ease-in;
       -moz-transition: .2s ease-in;
        -ms-transition: .2s ease-in;
         -o-transition: .2s ease-in;
            transition: .2s ease-in;
}

header.fixed .navbar-brand img {
    height: 52px;
}

header.fixed .navbar-expand-lg .navbar-nav .nav-link {
    padding: 22px 14px;
}

header.fixed .navbar .contact {
    margin: 0;
    box-shadow: none;
    padding: 5px 25px;
}

/***************************************
home
***************************************/

#home #bread {
    display: none;
}

/***************************************
banners
***************************************/

#banner {
    position: relative;
}

#banner .banner {
    width: 100%;
}

#banner .cycle-pager,
#banner .cycle-pager-mobile {
    position: absolute;
    bottom: 0px;
    z-index: 104;
    width: 100%;
    cursor: pointer;

    text-align: center;
}

#banner .cycle-pager span,
#banner .cycle-pager-mobile span {
    font-size: 50px;
    color: var(--white);
    opacity: .75;

    cursor: pointer;
}

#banner .cycle-pager span.cycle-pager-active,
#banner .cycle-pager-mobile span.cycle-pager-active {
    color: var(--orange-dark);
    opacity: 1;
}


/***************************************
camada
***************************************/

#camada {
    background-color: var(--white);
    background-image: url(../img/bg-about.jpg);
    background-position: left center;
    background-repeat: no-repeat;
}


/***************************************
serviços
***************************************/

#servicos .gradient {
    background: var(--orange-gradient);

    padding: 50px;
    min-height: 340px;

    display: flex;
    justify-content: center;
}

#servicos .gradient.blue {
    background: var(--gray-dark-gradient);
}

#servicos .gradient .servico {
    text-align: center;
}

#servicos .gradient .servico .img {
    /*border: 4px solid var(--orange);*/
    border-radius: 100%;
    display: inline-block;
    /*padding: 10px;*/
    margin-bottom: 10px;
}

#servicos .gradient .servico .subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 16px !important;
    font-weight: 300; /* light */
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
}

#servicos .gradient.blue .servico .subtitle {
    color: var(--blue-dark);
}

#servicos .gradient .servico .text {
    font-weight: 300;
    color: var(--white);
}

#servicos .gradient.blue .servico .text {
    color: var(--blue-dark);
}

#servicos .gradient .go {
    padding-top: 15px;
}

#servicos .gradient .go a {
    font-family: Roboto;
    font-size: 11px;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
}

#servicos .gradient .go a img {
    margin-left: 5px;
}

#servicos .slick-prev { left: 10px; transform: rotate(180deg) translate(0, 50%); }
#servicos .slick-next { right: 10px; }

#servicos .slick-next:before { content: url(../img/arrow-orange.png); position: relative; top: 1px; }
#servicos .slick-prev:before { content: url(../img/arrow-orange.png); position: relative; top: 1px; }

#servicos .slick-arrow {
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: var(--shadow);

    width: 58px;
    height: 40px;
    z-index: 2;
}


/***************************************
empresa
***************************************/

#empresa {
    padding: 0;
}

#empresa .title {
    background-image: url(../img/rectangle.png);
    background-position: left center;
    background-repeat: no-repeat;

    padding: 37px 20px;
    margin-top: 50px;
}

#empresa .title span {
    background-color: #FFF;
    
    padding: 10px 0;
}

#empresa .text p {
    font-family: Segoe UI;
    font-weight: 300;
    color: var(--blue-dark);

    margin: 25px 0;
}

	#empresa .text p strong {
	    font-weight: 600;
	}

#empresa a {
    font-weight: 400;
    text-transform: uppercase;
    color: var(--orange);
}

#empresa a img {
    margin-left: 10px;
}

#empresa .img-empresa {
    position: relative;
    top: -20px;
}


/***************************************
destaques
***************************************/

#destaques {
    padding: 50px 0 0;
}

#destaques .title {
    margin-bottom: 50px;
}

#destaques .box .img {
    position: relative;
    display: block;
}

#destaques .slider-obras .box img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

#destaques .box .img .box-shadow {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;

    background: var(--black-gradient);
}

#destaques .box .img .box-shadow .text {
    position: absolute;
    width: 100%;
    bottom: 10px;
}

#destaques .box .img .box-shadow .text .name {
    font-size: 23px;
    font-weight: 400;
    color: var(--white);
    
    padding: 0 15px;
}

#destaques .box .img .box-shadow .text .city {
    font-size: 15px;
    font-weight: 300;
    color: var(--white);
    
    padding: 0 15px;
}

#destaques .slick-prev { left: 0; transform: rotate(180deg) translate(0, 50%); }
#destaques .slick-next { right: 0; }

#destaques .slick-next:before { content: url(../img/arrow-orange.png); }
#destaques .slick-prev:before { content: url(../img/arrow-orange.png); }

#destaques .slick-arrow {
    background-color: #FFF;

    width: 58px;
    height: 40px;
    z-index: 2;
}

#destaques .slick-dots li button:before { color: var(--blue-dark); font-size: 55px; }
#destaques .slick-dots li.slick-active button:before { color: var(--orange-dark); opacity: 1; }

#destaques .box .subtext {
    font-size: 15px;
    font-weight: 300;
    color: var(--gray-dark);

    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

#destaques .box .subtext .tipo {
    font-size: 15px;
    font-weight: bold;
}

#destaques .box .subtext .btn-orange {
    font-size: 12px;
    font-weight: 300;
    text-align: center;

    padding: 12px 8px;

    -webkit-transition: .2s ease-in;
       -moz-transition: .2s ease-in;
        -ms-transition: .2s ease-in;
         -o-transition: .2s ease-in;
            transition: .2s ease-in;
}

#destaques .box .subtext .btn-orange:hover {
    background-color: var(--orange);
    color: var(--white);
}


/***************************************
caixa
***************************************/

#caixa {
    padding: 100px 0 50px;
}


/***************************************
depoimentos
***************************************/

#depoimentos {
    padding: 0 0 50px;
}

#depoimentos .depoimento {
    text-align: center;
}

#depoimentos .depoimento .img {
    display: inline-block;
    border: 10px solid #FFF;
    border-radius: 100%;
    box-shadow: var(--shadow-stronger);

    position: relative;
    top: 50px;
}

#depoimentos .depoimento .img img {
    border-radius: 100%;

    width: 135px;
    height: 135px;
}

#depoimentos .depoimento .box {
    background-color: var(--gray-light);
    border-radius: 25px;
    padding: 80px 20px 50px;
    text-align: center;
}

#depoimentos .depoimento .box .text {
    height: 50px;
    overflow: hidden;
    -webkit-transition: height .2s ease-in;
       -moz-transition: height .2s ease-in;
        -ms-transition: height .2s ease-in;
         -o-transition: height .2s ease-in;
            transition: height .2s ease-in;
}

#depoimentos .depoimento .box .text.open {
    height: auto;
    overflow: unset;
    -webkit-transition: height .2s ease-in;
       -moz-transition: height .2s ease-in;
        -ms-transition: height .2s ease-in;
         -o-transition: height .2s ease-in;
            transition: height .2s ease-in;
}

#depoimentos .depoimento .box .text p {
    font-size: 18px;
    font-weight: 300;
    color: var(--gray);
}

#depoimentos .depoimento .box .name {
    font-size: 16px;
    font-weight: bold;
    color: var(--gray);
}

#depoimentos .depoimento .box .city {
    font-weight: 300;
    color: var(--gray);
}

#depoimentos .slick-prev { left: -30px; transform: rotate(180deg) translate(0, 50%); }
#depoimentos .slick-next { right: -30px; }

#depoimentos .slick-next:before { content: url(../img/arrow-orange.png); }
#depoimentos .slick-prev:before { content: url(../img/arrow-orange.png); }

#depoimentos .slick-dots li button:before { color: var(--blue-dark); font-size: 55px; }
#depoimentos .slick-dots li.slick-active button:before { color: var(--orange-dark); opacity: 1; }

#depoimentos .slick-arrow {
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);

    width: 58px;
    height: 40px;
    top: 70%;
    z-index: 2;
}


/***************************************
mapa
***************************************/

#mapa,
#mapa .embed-responsive,
#mapa iframe {
    height: 380px;
}


/***************************************
footer
***************************************/

footer {
    background-color: var(--blue);

    padding: 50px 0 70px;
    position: relative;
}

footer .title {
    font-family: Roboto;
    font-size: 14px;
    font-weight: bold;
    color: var(--white);
}

footer .bloco {
    padding: 20px 0;
    display: block;
}

footer .logo {
    padding-bottom: 25px;
}

footer .menu ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

footer .menu ul li a {
    font-family: Roboto;
    font-size: 12px;
    font-weight: 300;
    color: var(--white);

    padding-left: 20px;
    background-image: url(../img/icon-list.png);
    background-position: left center;
    background-repeat: no-repeat;

    -webkit-transition: .2s ease-in;
       -moz-transition: .2s ease-in;
        -ms-transition: .2s ease-in;
         -o-transition: .2s ease-in;
            transition: .2s ease-in;
}

footer .menu ul li a:hover {
    color: var(--orange);
}

footer .input-group>.custom-select:not(:last-child),
footer .input-group>.form-control:not(:last-child) {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 300;
    color: var(--purple);
    border-radius: 8px 0 0 8px;
    border: 0;
    background-image: url(../img/icon-newsletter.png);
    background-position: 20px center;
    background-repeat: no-repeat;

    height: 50px;
    padding: 10px 0 10px 50px;
}

footer .input-group>.custom-select:not(:last-child)::-webkit-input-placeholder  { color: var(--purple); }
footer .input-group>.custom-select:not(:last-child)::-moz-placeholder           { color: var(--purple); }
footer .input-group>.custom-select:not(:last-child):-ms-input-placeholder       { color: var(--purple); }
footer .input-group>.custom-select:not(:last-child):-moz-placeholder            { color: var(--purple); }

footer .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 63, 107, .25);
}

footer .news .btn-gradient {
    border-radius: 0 8px 8px 0;
    border: 0;
}

footer .news .btn-gradient:hover {
    color: var(--white);
}

footer .news .btn-gradient:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 63, 107, .25);
}

footer .news label.error {
    color: var(--orange);
    font-size: 14px;
    font-weight: 300;

    width: 100%;
    position: absolute;
    bottom: -32px;
}

footer .call p {
    margin-bottom: 0;
    font-family: Roboto;
    font-size: 12px;
    font-weight: 300;
    color: var(--white);
}

footer .call .fone a {
    font-family: Roboto;
    font-size: 21px;
    font-weight: bold;
    color: var(--white);
}

footer .mail {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
}

footer .mail img {
    margin-right: 10px;
}

footer .redes {
    padding: 20px 0;
}

footer .redes a {
    background-color: var(--blue-light);
    border-radius: 100%;
    font-size: 20px;
    text-align: center;
    color: var(--white);

    display: inline-block;
    padding: 10px 0;
    width: 52px;
    height: 52px;

    -webkit-transition: .2s ease-in;
       -moz-transition: .2s ease-in;
        -ms-transition: .2s ease-in;
         -o-transition: .2s ease-in;
            transition: .2s ease-in;
}

footer .redes a:hover {
    opacity: .7;
}

footer .content {
    margin-top: 25px;
    padding: 25px 15px 0;
    border-top: 2px solid var(--gray-border);
}

footer .content .endereco {
    font-family: Roboto;
    font-size: 12px;
    font-weight: 300;
    color: var(--white);
}

footer .scrollTop {
    background-color: var(--blue-light);
    border-radius: 6px 6px 0 0;
    text-align: center;

    padding: 10px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 75px);
    transform: translate(50%, 0);
    width: 75px;
    cursor: pointer;
}

footer .scrollTop i {
    color: var(--white);
}

footer .scrollTop .topo {
    display: block;

    line-height: 5px;
    font-size: 8px;
    color: var(--white);
    text-transform: uppercase;
}


/***************************************
detalhe
***************************************/

#destaques.obras {
    padding: 50px 0;
}


/***************************************
orçamento
***************************************/

#orcamento {
    background: var(--gray-gradient);
    
    padding: 80px 0;
}

#orcamento .title {
    font-size: 30px;
    line-height: 28px;
    text-transform: none;

    padding-top: 15px;
    position: relative;
}

#orcamento .title:before {
    content: '';
    width: 40px;
    height: 4px;
    position: absolute;
    top: 0;
    left: calc(50% - 40px);
    transform: translate(50%, 0);
    
    background-color: var(--orange);
}

#orcamento .subtitle {
    font-family: Roboto;
    font-weight: 300;
    font-size: 16px;
    color: var(--blue-dark);
    line-height: 20px;
    letter-spacing: 1.5px;

    margin-bottom: 25px;
    padding-top: 15px;
}


/***************************************
detalhe
***************************************/

#detalhe {
    padding: 50px 0;
}

#detalhe .title {
    margin-bottom: 50px;
}

#detalhe .box {
    position: relative;
}

#detalhe .descricao p {
    font-weight: 300;
    color: var(--blue-dark);
}

#detalhe .confira {
    display: block;
    margin-bottom: 25px;

    font-weight: bold;
    color: var(--blue-dark);
}

#detalhe .item {
    font-weight: 300;
    color: var(--blue-dark);
}

#detalhe .item .big {
    font-family: Roboto;
    font-size: 25px;
    font-weight: bold;
}

#detalhe .galeria {
    position: relative;
    display: block;

    margin: 25px 0;
}

#detalhe .galeria .zoom {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    padding: 3px 0;

    text-align: center;
    color: var(--orange);
    background-color: var(--white);
}


/***************************************
serviços
***************************************/

#servicos.servicos {
    padding: 50px 0;
}

#servicos .title {
    margin-bottom: 50px;
}

#servicos.servicos .servico .img {
    display: inline-block;
    padding: 15px;

    border: 4px solid var(--orange);
    border-radius: 100%;
    margin-bottom: 25px;
}

#servicos.servicos .servico .subtitle {
    font-family: Roboto;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--blue-dark);
}

#servicos.servicos .servico .text {
    font-weight: 300;
    color: var(--blue-dark);
    margin: 15px 0;
}

#servicos.servicos .servico .btn-orange {
    display: inline-block;

    border-radius: 7px;
    padding: 25px 40px;
    font-family: Roboto;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--orange);

    -webkit-transition: .2s ease-in;
       -moz-transition: .2s ease-in;
        -ms-transition: .2s ease-in;
         -o-transition: .2s ease-in;
            transition: .2s ease-in;
}

#servicos.servicos .servico .btn-orange:hover {
    background-color: var(--orange);
    color: var(--white);
}

#servicos.servicos .servico .btn-orange img {
    margin-left: 10px;
}

#servicos.servicos .content {
    padding: 0;
    margin-bottom: 15px;
    border-bottom: 2px dashed var(--black-border);
}

#servicos.servicos .content:first-child {
    border-top: 0;
}


/***************************************
contato
***************************************/

#contato {
    padding: 50px 0;
}

#contato .title {
    margin-bottom: 50px;
}

#contato .box {
    padding: 15px;
}

#contato .box .subtitle {
    font-family: Roboto;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--blue-dark);
}

#contato .box .contato {
    padding: 50px 0;
}

#contato .box .contato .item {
    margin-top: 20px;
}

#contato .box .contato .item:first-child {
    margin-top: 0;
}

#contato .box .contato .item .icon {
    text-align: center;
    background: var(--orange-gradient);
    border-radius: 20px;

    padding: 15px 0;
    margin-right: 15px;
    min-width: 70px;
    width: 70px;
    height: 58px;
}

#contato .box .contato .item .text .name {
    font-family: Roboto;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--gray-dark);
}

#contato .box .contato .item .text .fone,
#contato .box .contato .item .text .fone a {
    font-family: Roboto;
    font-size: 20px;
    color: var(--gray-dark);
    letter-spacing: .5px;
    word-break: break-word;
}

#contato .box .contato .item .text .fone.email {
    font-size: 11px;
}

#contato .redes {
    font-family: Roboto;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--gray-dark);
}

#contato .redes a {
    background-color: var(--blue-light);
    border-radius: 100%;
    color: var(--white);
    text-align: center;
    font-weight: normal;

    width: 38px;
    height: 38px;
    display: inline-block;
    padding: 7px 0;
    margin-left: 10px;

    -webkit-transition: .2s ease-in;
       -moz-transition: .2s ease-in;
        -ms-transition: .2s ease-in;
         -o-transition: .2s ease-in;
            transition: .2s ease-in;
}

#contato .redes a:hover {
    opacity: .7;
}

#contato #form-contato {
    background-color: var(--gray-light);
    border-radius: 20px;
    padding: 20px 15px;
}

#contato #form-contato .form-control {
    height: 54px;
    
    border: 0;
    border-radius: 6px;
    box-shadow: var(--shadow);
    font-weight: 300;
    color: var(--blue-dark);
}

#contato #form-contato .form-control::-webkit-input-placeholder  { color: var(--blue-dark); }
#contato #form-contato .form-control::-moz-placeholder           { color: var(--blue-dark); }
#contato #form-contato .form-control:-ms-input-placeholder       { color: var(--blue-dark); }
#contato #form-contato .form-control:-moz-placeholder            { color: var(--blue-dark); }

#contato #form-contato p {
    font-size: 18px;
    font-weight: bold;
    color: var(--blue-dark);
}

#contato #form-contato select.form-control {
    -webkit-appearance: none;
    background-image: url(../img/select-arrow.png);
    background-position: right 10px center;
    background-repeat: no-repeat;
}

#contato #form-contato select.form-control .option {
    color: var(--gray-dark);
}

#contato #form-contato textarea.form-control {
    height: 91px;
    resize: none;
}

#contato .btn-orange {
    height: 75px;
    padding: 0 20px;

    background: var(--orange-gradient);
    border: 0;
    border-radius: 7px;
    font-family: Roboto;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white);
}

#contato .btn-orange img {
    margin-left: 10px;
}

#contato #form-contato label.error {
    font-size: 14px;
    font-weight: 300;
    color: var(--orange-dark);
}


/***************************************
depoimentos
***************************************/

#depoimentos.depoimentos {
    padding: 50px 0;
}

#depoimentos.depoimentos .title {
    margin-bottom: 50px;
}


/***************************************
empresa
***************************************/

#empresa.empresa .box {
    padding: 15px;
    position: relative;
}

#empresa.empresa .box .subtitle {
    font-family: Roboto;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--blue-dark);

    margin-bottom: 50px;
}

#empresa.empresa .box .subtitle span {
    display: block;
}

#empresa.empresa .box .btn-bg-orange {
    color: var(--white);
    
    padding: 25px 20px;
    display: inline-block;
}

#empresa.empresa .diferencial {
    padding: 50px 0;
}

#empresa.empresa .diferencial .blue {
    background-color: var(--blue-dark);
}

#empresa.empresa .diferencial .blue img {
    position: relative;
}

#empresa.empresa .diferencial .blue .left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;

    border-style: solid;
    border-width: 50px 0 0 50px;
    border-color: transparent transparent transparent var(--blue-dark);
}

#empresa.empresa .diferencial .blue .right {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    z-index: 2;

    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--white) transparent transparent;
}

#empresa.empresa .box .text {
    font-weight: 300;
    color: var(--blue-dark);

    margin-bottom: 50px;
}

#empresa.empresa .box .down {
    background-color: var(--gray-light);
    border-radius: 100%;
    text-align: center;
    
    width: 87px;
    height: 87px;
    display: inline-block;
    padding: 20px 0;
}

#empresa.empresa .box .down img {
    transform: rotate(90deg) translate(25%, 0);
}

#empresa.empresa #mvv {
    padding: 50px 0;
}

#empresa.empresa #mvv .icon {
    background: var(--orange-gradient);
    border-radius: 100%;

    width: 255px;
    height: 255px;
    padding: 65px 0;
}

#empresa.empresa #mvv .subtitle {
    font-family: Roboto;
    font-size: 20px;
    font-weight: bold;
    color: var(--blue-dark);

    margin-top: 25px;
}

#empresa.empresa #estrutura .title {
    background-image: none;
    padding: 0;
    margin-bottom: 50px;
}

#empresa.empresa .slider-estrutura .img {
    padding: 15px;
}

#empresa.empresa .slider-estrutura .slick-prev { left: -20px; transform: rotate(180deg) translate(0, 50%); }
#empresa.empresa .slider-estrutura .slick-next { right: -20px; }

#empresa.empresa .slider-estrutura .slick-next:before { content: url(../img/arrow-white-hor.png); position: relative; top: 1px; }
#empresa.empresa .slider-estrutura .slick-prev:before { content: url(../img/arrow-white-hor.png); position: relative; top: 1px; transform: translate(-25%, 0); }

#empresa.empresa .slider-estrutura .slick-arrow {
    background: var(--orange-gradient);
    border-radius: 0 6px 6px 0;
    
    width: 30px;
    height: 80px;
    z-index: 2;
}

#empresa.empresa .slick-dots li button:before { color: var(--blue-dark); font-size: 55px; }
#empresa.empresa .slick-dots li.slick-active button:before { color: var(--orange-dark); opacity: 1; }

#empresa.empresa a img {
    margin-left: 0;
}

/***************************************
obras
***************************************/

#pobras #page-prev { display: none; }

#pobras #destaques .box img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}