*{
      font-family: "Montserrat", sans-serif;
}

:root {
  --azul: #000066;
  --azulescuro: #000052;
  --azulescuro2: #020267;
  --vermelho: #FF0000;
  --verde: #00D4040D;
  --branco: #fff;
  --gelo: #F1F1F1;
  --cinza: #5F5D5D;
  --cinza2: #424241;
  --cinzaClaro: #D9D9D9;
  --laranjaClaro: #FE61000D;
  --vermelhoClaro: #FF00000D;
  --sombra: 4px 4px 20px 2px #56596759;
}

.btn-padrao {
    font-weight: 600;
    font-size: 18px;
    color: var(--branco) !important;
    background-color: var(--azulescuro);
    /* margin: 0 8px; */
    border-radius: 5px;
    transition: 300ms all ease-in-out;
    padding: 13px 24px;

    &:hover{
        background-color: var(--vermelho);
    }
}

h1{
    font-weight: 500;
    font-size: 40px;
    line-height: 135%;
    color: var(--branco);
}
h2{
    font-weight: 500;
    font-size: 36px;
    color: var(--azul);
}
h3{
    font-weight: 600;
    font-size: 24px;
    color: var(--vermelho);
    text-transform: uppercase;
}
h4{
    font-weight: 600;
    font-size: 24px;
    color: var(--branco);
    margin-top: 20px;
}

.card-padrao{
    border: 1px solid var(--azulescuro);
    box-shadow: 4px 4px 8px 5px #4E4E4E0F;
    padding: 24px;
    border-radius: 5px;

    .titulo-card-padrao{
        margin-top: 16px;
        font-weight: 500;
        font-size: 20px;
        line-height: 100%;
        color: var(--azul);
    }
    .texto-card-padrao{
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: var(--cinza);
        min-height: 260px;

    }
}
.card-empreendimento{
    .moldura{
        border-radius: 8px 0 0;
        position: relative;
        overflow: hidden;

        .img-empreendimento {
            width: 100%;
            object-fit: cover;
            height: 380px;
            border-radius: 8px 8px 0 0;
            transition: 300ms all ease-in-out;
        }
        .tag {
            font-weight: 600;
            font-size: 18px;
            color: var(--azul);
            background-color: var(--branco);
            display: inline-block;
            padding: 16px;
            border-radius: 8px;
            position: absolute;
            left: 20px;
            top: 20px;
        }
    }
    .info-card-empreendimento {
        box-shadow: 1px 4px 15.2px 0px #00000040;
        background-color: #fff;
        border-radius: 0 0 8px 8px;
        padding: 24px;

        .titulo-card {
            font-weight: 600;
            font-size: 24px;
            line-height: 135%;
        }
        .lista-link {
            display: flex;
            align-items: flex-end;
            margin-bottom: 20px;
        }

        ul{
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
                li{
                    list-style-type: none;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 120%;
                    color: var(--cinza);
                    margin: 0 16px 10px 0px;

                    .icon-emp-list{
                        width: 24px;
                        height: 24px;
                        object-fit: contain;
                    }
                }
        }

        .btn-padrao {
            display: block;
            text-align: center;
        }

    }
    
}
.card-empreendimento:hover .img-empreendimento {
    scale: 1.1;
}
.card-blog{
    .moldura{
        position: relative;
        overflow: hidden;
        border-radius: 8px;

        .img-blog {
            width: 100%;
            object-fit: cover;
            height: 300px;
            border-radius: 18px 8px 0 0;
            transition: 300ms all ease-in-out;
        }
        .data-blog {
            font-weight: 500;
            font-size: 16px;
            line-height: 120%;
            color: var(--azul);
            background-color: var(--gelo);
            display: inline-block;
            padding: 16px;
            border-radius: 0px 0 8px 0;
            position: absolute;
            left: -1px;
            top: -1px;
            border-bottom: solid 8px var(--branco);
            border-right: solid 8px var(--branco);
        }
    }
    .titulo-blog{
        font-weight: 600;
        font-size: 24px;
        line-height: 135%;
        color: var(--azulescuro2);
        margin: 16px 0 0 0;
    }
    .resumo-blog{
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: var(--cinza);
    }
    hr{
        color: var(--cinzaClaro)
    }
    .btn-blog{
        font-weight: 600;
        font-size: 20px;
        line-height: 135%;
        color: var(--azul);
    }
    .seta-blog{
        position: relative;
        left: 0;
        transition: 300ms all ease-in-out;
    }
}
.card-blog:hover .img-blog {
    scale: 1.1;
}
.card-blog:hover .seta-blog {
    left: 8px;
}
header{
    background-color: var(--azul);
    padding: 16px 0;
    z-index: 10;
    position: relative;
    /* border-radius: 8px; */

    .nav-item {
        font-weight: 600;
        font-size: 18px;
        color: var(--branco);
    }
    .btn-corretor {
        font-weight: 600;
        font-size: 18px;
        color: var(--branco);
        background-color: var(--azulescuro);
        margin: 0 8px;
        border-radius: 5px;
        transition: 300ms all ease-in-out;

        &:hover{
            background-color: var(--vermelho);
        }

        img{
            margin-right: 8px;
        }
    }
}
footer{
    background-color: var(--azul);
    padding: 50px 0 0;

    .text-footer {
        font-weight: 400;
        font-size: 18px;
        line-height: 160%;
        margin: 30px 0;
        color: var(--branco);
    }

    .links-social{
        display: flex;
        padding: 0;
        margin: 0;

        li{
            margin-right: 20px;
            list-style-type: none;
        }
    }

    h5{
        font-weight: 600;
        font-size: 20px;
        color: var(--branco);
        margin-bottom: 30px;
        overflow-wrap: break-word;
    }

    .links-footer{
        padding: 0;
        margin: 0;

        li{
            list-style-type: none;
            font-weight: 400;
            font-size: 16px;
            color: var(--branco);
            margin-bottom: 16px;

        }
    }
    .contato-footer{
        padding: 0;
        margin: 0;

        li{
            list-style-type: none;
            font-weight: 400;
            font-size: 16px;
            color: var(--branco);
            margin-bottom: 16px;

        }
    }
    .barra-azul-escura{
        background-color: var(--azulescuro);
        margin-top: 48px;

        .copy{
            font-weight: 400;
            font-size: 14px;
            color: var(--branco);
            margin: 16px 0;

            .link-politica{
                font-weight: 400;
                text-decoration: underline;
            }

        }
    }
}
#cabecalho{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;

    .sombra-servico {
        background: #00000040;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
        top: 0;
        border-radius: 8px;
    }

    .z-index-10{
        position: relative;
        z-index: 10;

        .migalhas {
            display: flex;
            justify-content: center;
            align-items: center;
    
            li{
                font-weight: 500;
                font-size: 16px;
                line-height: 135%;
                color: var(--branco);
                list-style-type: none;
                
                img{
                    margin: 0 12px 0 8px;
                }
            }
        }
    }

    h1{
        font-weight: 500;
        font-size: 40px;
        line-height: 135%;
        color: var(--branco);
        text-align: center;
    }
    
}
#mini-cabecalho{
    background-color: var(--vermelhoClaro);
    padding: 24px 0;

    .migalhas {
        display: flex;
        align-items: center;
        padding: 0;
        margin: 0;

        li{
            font-weight: 500;
            font-size: 16px;
            line-height: 135%;
            color: var(--azul);
            list-style-type: none;
            
            
            img{
                margin: 0 12px 0 8px;
            }
            
        }
        .destaque{
            font-weight: 600;
            text-transform: uppercase;
        }
    }
}

.modal-body {
    padding: 40px;
    border: 2px solid #D9D9D9;
    box-shadow: 0px 4px 10.4px 0px #00000040;
    border-radius: 10px;

    .texto{
        font-weight: 500;
        font-size: 18px;
        line-height: 150%;
        color: #000066;
        text-align: center;
        padding: 8px 8px 10px;
        
        span{
            font-weight: 600;
        }

    }

    h2 {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .form-contato-modal{
        .form-label{
            font-weight: 500;
            font-size: 20px;
            line-height: 140%;
            color: var(--cinza);
        }
        .form-control, .form-select{
            font-weight: 400;
            font-size: 16px;
            line-height: 140%;
            border: 1px solid #F1F1F1;
            background-color: #F1F1F1;
            min-height: 50px;
        }
        .form-check-label {
            font-weight: 400;
            font-size: 15px;
            line-height: 140%;
        }
    }

    .formulario-mcmv{
        .form-label{
            font-weight: 500;
            font-size: 20px;
            line-height: 140%;
            color: var(--cinza);
        }
        .form-control, .form-select{
            font-weight: 400;
            font-size: 16px;
            line-height: 140%;
            border: 2px solid #000066;
            min-height: 50px;
            color: #000066;
        }
        .form-check-label {
            font-weight: 400;
            font-size: 15px;
            line-height: 140%;
        }

        /* Para input */
        input::-webkit-input-placeholder {
            color: #000066 !important;
        }
        input::-moz-placeholder {
            color: #000066 !important;
        }
        input:-ms-input-placeholder {
            color: #000066 !important;
        }
        input:-moz-placeholder {
            color: #000066 !important;
        }

        /* Para select */
        select::-webkit-input-placeholder {
            color: #000066 !important;
        }
        select::-moz-placeholder {
            color: #000066 !important;
        }
        select:-ms-input-placeholder {
            color: #000066 !important;
        }
        select:-moz-placeholder {
            color: #000066 !important;
        }
    }


    .close-mcmv{
        display: flex;
        justify-content: flex-end;

        .btn-close {
            background-color: #F3F3F3;
            padding: 14px;
            border-radius: 30px;
        }
    }
}



/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    h4 {
        font-size: 20px;
    }
    h1 {
        font-size: 28px;
    }
    h2{
        font-size: 24px;
    }

    header {
        .nav-item {
            text-align: center;
            width: 100%;
        }
        .social-central{
            flex-direction: column;

            .btn-corretor {
                margin: 10px 0;
                text-align: center;
                padding: 8px;
            }
        }
    }
    
    .btn-padrao {
        font-size: 16px;
        padding: 17px 24px;
    }

    footer {
        h5 {
            margin-top: 40px;
        }
    }

    
    #cabecalho {
        h1 {
            font-size: 28px;
        }
    }
}

/* MOBILE */
@media all and (max-width: 767px) { 
    h4 {
        font-size: 20px;
    }
    h1 {
        font-size: 28px;
    }
    h2{
        font-size: 24px;
    }

    header {
        .nav-item {
            text-align: center;
        }
        .social-central{
            flex-direction: column;

            .btn-corretor {
                margin: 10px 0;
                text-align: center;
                padding: 8px;
            }
        }
    }
    
    .btn-padrao {
        font-size: 16px;
        padding: 17px 24px;
    }

    footer {
        h5 {
            margin-top: 40px;
        }
    }
    #cabecalho {
        min-height: 340px;

        h1 {
            font-size: 28px;
        }
    }
}

