/* =========================================================
   GERAL
========================================================= */

html,
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #202020;
    background: #ffffff;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin-top: 0;
}

.container {
    max-width: 1170px;
}


/* =========================================================
   CORES BASE
========================================================= */

:root {
    --azul: #002f5f;
    --azul-escuro: #002448;
    --azul-claro: #0a4d86;
    --texto: #1c1c1c;
    --cinza: #777;
    --cinza-claro: #f5f5f5;
}


/* =========================================================
   TOPO
========================================================= */

.topo {
    background: #fff;
    position: relative;
    z-index: 999;
}

.navbar-parcios {
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    min-height: 78px;
    box-shadow: none;
}

.navbar-parcios .container {
    position: relative;
}

.navbar-parcios .navbar-brand {
    height: 78px;
    padding: 11px 15px;
}

.navbar-parcios .navbar-brand img {
    max-height: 56px;
    width: auto;
}

.navbar-parcios .navbar-nav {
    margin-top: 15px;
}

.navbar-parcios .navbar-nav > li > a {
    color: #222;
    font-size: 12px;
    font-weight: 500;
    padding: 15px 18px;
    background: transparent !important;
    transition: 0.25s;
}

.navbar-parcios .navbar-nav > li > a:hover {
    color: #003a70;
}

.navbar-parcios .navbar-nav > .active > a,
.navbar-parcios .navbar-nav > .active > a:hover,
.navbar-parcios .navbar-nav > .active > a:focus {
    color: #003a70;
    background: transparent;
    position: relative;
}

.navbar-parcios .navbar-nav > .active > a:after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 5px;
    height: 2px;
    background: #2c6da6;
}

.menu-orcamento {
    margin-left: 14px;
}

.navbar-parcios .navbar-nav > li.menu-orcamento > a.btn-menu-orcamento {
    background: #002f5f !important;
    color: #fff !important;
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 2px;
    box-shadow: 0 2px 7px rgba(0,0,0,.12);
}

.navbar-parcios .navbar-nav > li.menu-orcamento > a.btn-menu-orcamento:hover {
    background: #00447e !important;
}

.btn-menu-orcamento i {
    margin-right: 7px;
}


/* =========================================================
   BANNER PRINCIPAL
========================================================= */

.banner-home {
    position: relative;
    min-height: 455px;
    background-image: url("../imagens/banner.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 30, 58, .72) 0%,
        rgba(0, 30, 58, .38) 43%,
        rgba(0, 30, 58, .08) 75%,
        rgba(0, 0, 0, .08) 100%
    );
}

.banner-home .container {
    position: relative;
    z-index: 2;
}

.banner-conteudo {
    padding-top: 10px;
}

.banner-linha {
    border-left: 2px solid rgba(255,255,255,.7);
    padding-left: 25px;
}

.banner-conteudo h1 {
    font-size: 42px;
    line-height: .99;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.banner-conteudo p {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.55;
    margin: 22px 0 24px 28px;
}

.banner-botoes {
    margin-left: 28px;
}

.banner-botoes .btn {
    min-width: 185px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    padding: 13px 18px;
    margin-right: 10px;
    transition: 0.25s;
}

.btn-orcamento {
    background: #002f5f;
    color: #fff;
    border: 1px solid #fff;
}

.btn-orcamento:hover,
.btn-orcamento:focus {
    background: #00467f;
    color: #fff;
}

.btn-projetos {
    background: rgba(0,0,0,.16);
    color: #fff;
    border: 1px solid rgba(255,255,255,.8);
}

.btn-projetos:hover,
.btn-projetos:focus {
    background: #fff;
    color: #002f5f;
}

.btn-projetos i {
    margin-left: 14px;
    font-size: 18px;
    vertical-align: middle;
}


/* =========================================================
   NÚMEROS
========================================================= */

.numeros {
    background: linear-gradient(90deg, #00335f 0%, #002849 100%);
    color: #ffffff;
    padding: 25px 0 22px;
}

.numero-item {
    display: flex;
    min-height: 105px;
    align-items: flex-start;
    position: relative;
    padding: 3px 24px 0 0;
}

.numero-borda:before {
    content: "";
    position: absolute;
    left: -18px;
    top: 5px;
    width: 1px;
    height: 82px;
    background: rgba(255,255,255,.35);
}

.numero-icone {
    width: 48px;
    font-size: 34px;
    padding-top: 3px;
    color: #fff;
}

.numero-conteudo {
    padding-left: 8px;
}

.numero {
    font-size: 31px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 9px;
}

.numero-conteudo h3 {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 6px;
}

.numero-conteudo p {
    color: #fff;
    opacity: .92;
    font-size: 11px;
    line-height: 1.5;
    margin: 0;
}


/* =========================================================
   EMPRESA
========================================================= */

.empresa {
    padding: 42px 0 18px;
    background: #fff;
}

.empresa-row {
    display: flex;
    align-items: center;
}

.empresa-foto {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.empresa-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.empresa-conteudo {
    padding-left: 45px;
    max-width: 560px;
}

.titulo-pequeno {
    font-size: 11px;
    font-weight: 700;
    color: #002f5f;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.titulo-pequeno span {
    width: 34px;
    height: 1px;
    background: #6b8aa6;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

.empresa-conteudo h2 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    color: #171717;
    margin-bottom: 17px;
}

.empresa-conteudo p {
    font-size: 14px;
    line-height: 1.55;
    color: #333;
    margin-bottom: 12px;
}

.empresa-diretor {
    margin-top: 13px;
}

.empresa-diretor strong {
    display: block;
    color: #003a70;
    font-size: 14px;
}

.empresa-diretor span {
    display: block;
    font-size: 13px;
    color: #222;
    margin: 2px 0 4px;
}

.empresa-diretor p {
    font-size: 12px;
    margin: 0;
}


/* =========================================================
   SERVIÇOS
========================================================= */

.servicos {
    background: #f7f7f7;
    padding: 22px 0 34px;
}

.titulo-central {
    text-align: center;
    margin-bottom: 22px;
}

.titulo-central h2 {
    font-size: 29px;
    font-weight: 800;
    color: #1b1b1b;
    margin: 0;
}

.servicos-row {
    margin-left: -8px;
    margin-right: -8px;
}

.servicos-row > div {
    padding-left: 8px;
    padding-right: 8px;
}

.servico-card {
    background: #fff;
    min-height: 315px;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
    transition: .25s;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.servico-imagem {
    height: 132px;
    overflow: hidden;
    position: relative;
}

.servico-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servico-icone {
    position: absolute;
    left: 10px;
    bottom: -1px;
    width: 40px;
    height: 40px;
    background: #002f5f;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
}

.servico-conteudo {
    padding: 14px 12px 16px;
}

.servico-conteudo h3 {
    color: #002f5f;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 9px;
}

.servico-conteudo p {
    color: #555;
    font-size: 11px;
    line-height: 1.55;
    margin: 0;
}

.ver-fotos {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #0b3155;
    text-transform: uppercase;
}

.ver-fotos i {
    margin-right: 5px;
}

.servico-card {
    transition: all .3s ease;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}


/* MODAL */

#modalEstruturas .modal-content {
    border-radius: 3px;
}

#modalEstruturas .modal-header {
    background: #0b3155;
    color: #fff;
    border-bottom: 0;
}

#modalEstruturas .modal-title {
    font-weight: 700;
    text-transform: uppercase;
}

#modalEstruturas .close {
    color: #fff;
    opacity: 1;
    text-shadow: none;
}


/* FOTOS */

.foto-servico {
    height: 190px;
    margin-bottom: 30px;
    overflow: hidden;
    background: #eee;
}

.foto-servico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.foto-servico:hover img {
    transform: scale(1.08);
}


/* =========================================================
   PROJETOS
========================================================= */

.projetos {
    background: radial-gradient(circle at center, #06497e 0%, #002f5f 45%, #002442 100%);
    color: #fff;
    padding: 18px 0 28px;
}

.projetos-cabecalho {
    display: flex;
    align-items: flex-end;
    margin-bottom: 18px;
}

.titulo-claro {
    color: #fff;
}

.projetos h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.btn-todos-projetos {
    border: 1px solid rgba(255,255,255,.8);
    color: #fff;
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    padding: 12px 18px;
    min-width: 205px;
    border-radius: 2px;
}

.btn-todos-projetos:hover {
    background: #fff;
    color: #002f5f;
}

.btn-todos-projetos i {
    margin-left: 20px;
    font-size: 17px;
    vertical-align: middle;
}


/* 5 colunas */

.col-md-20 {
    width: 20%;
    float: left;
    padding-left: 7px;
    padding-right: 7px;
}

.projeto-card {
    display: block;
    color: #fff;
    background: rgba(0,23,45,.35);
    overflow: hidden;
    min-height: 190px;
    transition: .25s;
}

.projeto-card:hover {
    color: #fff;
    transform: translateY(-3px);
}

.projeto-imagem {
    height: 135px;
    overflow: hidden;
}

.projeto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
}

.projeto-card:hover .projeto-imagem img {
    transform: scale(1.05);
}

.projeto-info {
    padding: 9px 10px 10px;
    background: rgba(0,37,68,.88);
    min-height: 57px;
}

.projeto-info h3 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
}

.projeto-info span {
    color: rgba(255,255,255,.9);
    font-size: 10px;
}

.projetos .carousel-control {
    width: 35px;
    background: transparent;
    text-shadow: none;
    opacity: 1;
}

.projetos .carousel-control.left {
    left: -42px;
}

.projetos .carousel-control.right {
    right: -42px;
}

.projetos .carousel-control i {
    position: absolute;
    top: 43%;
    font-size: 38px;
    color: #fff;
}


/* =========================================================
   CLIENTES
========================================================= */

.clientes {
    padding: 27px 0 23px;
    background: #fff;
}

.clientes-titulo h2 {
    font-size: 28px;
    line-height: 1.15;
    color: #171717;
    font-weight: 800;
    margin: 3px 0 0;
}

.clientes-logos {
    min-height: 130px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 0 30px;
}

.cliente-logo {
    width: 24%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
}

.cliente-logo img {
    max-height: 75px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.clientes .carousel-control {
    background: none;
    width: 28px;
    opacity: 1;
    text-shadow: none;
}

.clientes .carousel-control.left {
    left: -8px;
}

.clientes .carousel-control.right {
    right: -8px;
}

.clientes .carousel-control i {
    color: #285379;
    font-size: 36px;
    position: absolute;
    top: 38%;
}


/* =========================================================
   RODAPÉ
========================================================= */

.rodape {
    background: linear-gradient(90deg, #00345e 0%, #00294c 100%);
    color: #fff;
    padding-top: 17px;
}

.rodape .row {
    padding-bottom: 10px;
}

.logo-rodape {
    max-width: 150px;
    margin-bottom: 8px;
}

.rodape-empresa p {
    max-width: 265px;
    font-size: 10px;
    line-height: 1.45;
    color: rgba(255,255,255,.9);
}

.redes-sociais {
    margin-top: 8px;
}

.redes-sociais a {
    width: 27px;
    height: 27px;
    border: 1px solid rgba(255,255,255,.7);
    display: inline-block;
    text-align: center;
    line-height: 26px;
    color: #fff;
    margin-right: 5px;
    border-radius: 2px;
}

.redes-sociais a:hover {
    background: #fff;
    color: #002f5f;
}

.rodape-bloco h4 {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.rodape-bloco p {
    font-size: 10px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 6px;
}

.rodape-bloco p i {
    width: 18px;
    font-size: 12px;
}

.rodape-bloco p span {
    margin-left: 18px;
}

.rodape-bloco ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rodape-bloco ul li {
    margin-bottom: 2px;
}

.rodape-bloco ul li a {
    color: #fff;
    font-size: 10px;
}

.rodape-bloco ul li a:hover {
    text-decoration: underline !important;
}

.rodape-fale {
    padding-left: 5px;
}

.btn-footer {
    color: #fff;
    border: 1px solid rgba(255,255,255,.6);
    background: transparent;
    font-size: 9px;
    font-weight: 700;
    border-radius: 0;
    padding: 10px 13px;
    min-width: 180px;
    text-align: left;
}

.btn-footer i {
    float: right;
    font-size: 17px;
    margin-top: -3px;
}

.btn-footer:hover {
    background: #fff;
    color: #002f5f;
}

.rodape-copy {
    border-top: 1px solid rgba(255,255,255,.22);
    padding: 9px 0 5px;
}

.rodape-copy .row {
    padding-bottom: 0;
}

.rodape-copy p {
    font-size: 8px;
    color: rgba(255,255,255,.85);
    margin: 0;
}


/* =========================================================
   WHATSAPP FIXO
========================================================= */

.whatsapp-fixo {
    position: fixed;
    right: 23px;
    bottom: 20px;
    z-index: 9999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #19c853;
    color: #fff;
    text-align: center;
    line-height: 54px;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,.25);
    transition: .25s;
}

.whatsapp-fixo:hover,
.whatsapp-fixo:focus {
    color: #fff;
    background: #12ad46;
    transform: scale(1.06);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .navbar-parcios .navbar-nav > li > a {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 10px;
    }

    .menu-orcamento {
        margin-left: 3px;
    }

    .navbar-parcios .navbar-nav > li.menu-orcamento > a.btn-menu-orcamento {
        padding-left: 10px;
        padding-right: 10px;
    }

    .banner-home {
        min-height: 420px;
    }

    .banner-conteudo h1 {
        font-size: 37px;
    }

    .numero-item {
        margin-bottom: 22px;
    }

    .numero-borda:before {
        display: none;
    }

    .empresa-row {
        display: block;
    }

    .empresa-conteudo {
        padding-left: 0;
        padding-top: 28px;
        max-width: none;
    }

    .servico-card {
        margin-bottom: 16px;
    }

    .projetos-cabecalho {
        display: block;
    }

    .projetos-cabecalho .text-right {
        text-align: left;
        margin-top: 15px;
    }

    .col-md-20 {
        width: 33.333333%;
        margin-bottom: 14px;
    }

    .clientes-titulo {
        margin-bottom: 20px;
    }

    .cliente-logo {
        width: 33.333%;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 767px) {

    .navbar-parcios {
        min-height: 66px;
    }

    .navbar-parcios .navbar-brand {
        height: 66px;
        padding: 10px 15px;
    }

    .navbar-parcios .navbar-brand img {
        max-height: 44px;
    }

    .navbar-parcios .navbar-toggle {
        margin-top: 16px;
        border-radius: 0;
    }

    .navbar-parcios .navbar-nav {
        margin-top: 5px;
    }

    .navbar-parcios .navbar-nav > li > a {
        font-size: 12px;
        padding: 10px 15px;
    }

    .navbar-parcios .navbar-nav > .active > a:after {
        display: none;
    }

    .menu-orcamento {
        margin: 7px 15px 15px;
    }

    .navbar-parcios .navbar-nav > li.menu-orcamento > a.btn-menu-orcamento {
        text-align: center;
    }


    /* BANNER */

    .banner-home {
        min-height: 440px;
        background-position: center center;
    }

    .banner-overlay {
        background: rgba(0,32,60,.66);
    }

    .banner-conteudo {
        padding-top: 15px;
    }

    .banner-linha {
        padding-left: 15px;
    }

    .banner-conteudo h1 {
        font-size: 32px;
        line-height: 1.03;
    }

    .banner-conteudo p {
        margin-left: 17px;
        font-size: 15px;
    }

    .banner-botoes {
        margin-left: 17px;
    }

    .banner-botoes .btn {
        width: 100%;
        margin: 0 0 9px;
    }


    /* NÚMEROS */

    .numeros {
        padding-bottom: 8px;
    }

    .numero-item {
        padding-left: 8px;
        min-height: 100px;
    }

    .numero {
        font-size: 28px;
    }


    /* EMPRESA */

    .empresa {
        padding-top: 25px;
    }

    .empresa-conteudo h2 {
        font-size: 26px;
    }


    /* SERVIÇOS */

    .servicos {
        padding-top: 25px;
    }

    .titulo-central h2 {
        font-size: 25px;
        line-height: 1.2;
    }

    .servico-card {
        min-height: 300px;
    }


    /* PROJETOS */

    .projetos h2 {
        font-size: 25px;
    }

    .col-md-20 {
        width: 50%;
    }

    .projeto-imagem {
        height: 125px;
    }

    .projetos .carousel-control.left,
    .projetos .carousel-control.right {
        display: none;
    }


    /* CLIENTES */

    .clientes-titulo h2 {
        font-size: 25px;
    }

    .cliente-logo {
        width: 50%;
    }

    .clientes-logos {
        padding: 0 15px;
    }


    /* RODAPÉ */

    .rodape-bloco,
    .rodape-empresa {
        margin-bottom: 22px;
    }

    .rodape-fale {
        padding-left: 0;
    }

    .rodape-copy .text-right {
        text-align: left;
        margin-top: 5px;
    }

    .whatsapp-fixo {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 27px;
        right: 14px;
        bottom: 14px;
    }

}


/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width: 480px) {

    .banner-conteudo h1 {
        font-size: 28px;
    }

    .banner-home {
        min-height: 425px;
    }

    .col-md-20 {
        width: 100%;
    }

    .projeto-imagem {
        height: 180px;
    }

    .servicos-row > .col-xs-6 {
        width: 100%;
    }

    .servico-imagem {
        height: 180px;
    }

    .servico-card {
        min-height: initial;
    }

    .cliente-logo {
        width: 100%;
    }

}