*{
      font-family: "Poppins", sans-serif;

}

#mini-menu {

    box-shadow: 0 0 rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 rgba(0,0,0,.1);
    background-color: #2a2a2a;
    opacity: .7;
    color: #e6e6e6;
    padding: 0;
    display: flex;
    position: relative;
    z-index: 2;

    .alinhar-meio{
        display: flex;
        align-items: center;
    }

    .contatos-mini-menu {
        display: flex;
        margin: 0;
        padding: 0;

        li{
            list-style-type: none;
            display: flex;
            font-size: 15px;
            margin-right: 8px;
            align-items: center;

            i{
                font-size: 14px ;
                color: #b1976b ;
                margin-right: 8px ;
            }

        }
        

        .ponto-mini-menu {
            position: relative;
            top: -5px;
        }

        a{
            color: #fff;

            &:hover{
                color: #b1976b;
            }

        }
    }
    
    .social-mini-menu{
        display: flex;
        justify-content: space-between;
        margin: 0;
        align-items: center;

        li {
            font-size: 14px;
            color: #fff;
            margin-right: 8px;
            list-style-type: none;
    
            i{
                font-size: 16px;
                color: #b1976b;
                margin-right: 8px;
            }
        }

        .btn-consultoria {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: #b1976b;
            text-align: center;
            padding: 8px 20px;
            font-size: 3px !important;

            li{
                font-size: 14px;
                color: #fff;
                margin-right: 8px;
                list-style-type: none;
    
                i{
                    font-size: 12px;
                    color: #fff;
                    margin-right: 8px;
                }
            }

        }
    
    }
}

#mini-menu a:hover{
    color: #b1976b;
}



header{
    border: none;
    background-color: transparent;
    z-index: 1;
    position: relative;

    .nav-link {
       color: #c1c1c1;
       font-size: 17px;
       font-weight: 600;
       margin-left: 20px;

       &:hover{
        color: #fff;
       }

    }
    
    .social-mini-menu{
        display:none;
    }

    .navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
        color: #fff;
    }

    .logo-header {
        width: 217px;
    }

    .dropdown-menu.show {
        background-color: #191919;
        border: none;
        border-radius: 0;

        li{
            width: 100%;

            a {
                padding: 0 16px;
                line-height: 45px;
                color: #bebebe;
                text-align: justify;

                &:hover{
                    background-color: #191919;
                    color: #fff;
                }
            }
        }
    }
}
    

#menu-movel {
    background-color: #1e1e1e;
    position: fixed;
    top: -80px;
    width: 100%;
    transition: top 0.3s;
    z-index: 20;
    padding: 20px 0;
    display: flex;
    align-items: center;

    .central{
        align-items: center;
    }

  .itens-menu-movel{
    display: flex;
    flex-direction: row;
    
    a {
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 0 16px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        
        &:hover {
          color: #fff;
        }
      }
  }

  
    .dropdown-menu.show {
        background-color: #191919;
        border: none;
        border-radius: 0;
        top: 31px !important;

        li{
            width: 100%;

            a {
                padding: 0 16px;
                line-height: 45px;
                color: #bebebe;
                text-align: justify;

                &:hover{
                    background-color: #191919;
                    color: #fff;
                }
            }
        }
    }


  .logo-header{
    width: 217px;
  }
}



footer {
    background-color: #1d1d1d;
    padding: 60px 0 0 0;

    .central-footer{
        text-align: center;
    }


    .logo-footer {
        width: 210px;
        margin-bottom: 20px;
    }
    .citacao-footer {
        color: #ababab;
        line-height: 1.7;
    }

    .social-mini-menu {
        display: flex;
        justify-content: center;
        margin: 0;
        align-items: center;
        padding: 0;

        li {
            font-size: 14px;
            color: #fff;
            margin: 0px 16px;
            list-style-type: none;
    
            i{
                font-size: 16px;
                color: #b1976b;
                margin-right: 8px;
            }
        }
    }

    h6 {
        font-size: 18px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 35px;
    }

    .endereco-footer {
        color: #ababab;
        line-height: 1.7;
    }
    .telefone-footer{
        color: #fff;
        line-height: 1.7;
        margin: 0;
    }
    .mail-footer{
        color: #a69a87;
        line-height: 1.7;
    }

    .itens-footer {
        margin: 0;
        padding: 0;

        li {
            color: #b1a17d;
            list-style-type: none;
            margin-bottom: 10px;
            font-size: 16px;

            &:hover{
                color: #fff;
            }
        }
    }

    .space-copy{
        background-color: #111;
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
        margin-top: 40px;

        .copy {
            color: #a3a3a3;
            margin: 0 0 0 60px;
        }

        .menu-footer {
            display: flex;
            margin: 0;
            padding: 0;
            justify-content: space-evenly;

            li {
                list-style-type: none;
                color: #838383;
                margin: 0;
            }
        }
    }
}



/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    #mini-menu{
        display: none;
    }
    #menu-movel{
        display: none;
    }
    header {
        background-color: #121211;

            .social-mini-menu{
                display: flex;
                margin: 0;
                align-items: center;
                justify-content: center;

                li {
                    font-size: 14px;
                    color: #fff;
                    margin-right: 8px;
                    list-style-type: none;
            
                    i{
                        font-size: 16px;
                        color: #b1976b;
                        margin-right: 8px;
                    }
                }

                .btn-consultoria {
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    background: #b1976b;
                    text-align: center;
                    padding: 8px 20px;
                    font-size: 3px !important;

                    li{
                        font-size: 14px;
                        color: #fff;
                        margin-right: 8px;
                        list-style-type: none;
            
                        i{
                            font-size: 12px;
                            color: #fff;
                            margin-right: 8px;
                        }
                    }

                }
            
            }
    }
    .menu{
        width: 32px;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }

    footer{
        text-align: center;

        h6 {
            margin-top: 30px;
            margin-bottom: 20px;
        }

        .space-copy {
            flex-direction: column;

            .copy {
                margin: 20px 0 20px 60px;
            }
        }
    }

    header {
        .dropdown-menu.show {
            li {
                a {
                    padding: 0 16px;
                    line-height: 45px;
                    color: #bebebe;
                    text-align: justify;
                    background-color: #191919;
                }
            }
        }
    }

}

/* MOBILE */
@media all and (max-width: 767px) { 
    #mini-menu{
        display: none;
    }
    #menu-movel{
        display: none;
    }
    header {
        background-color: #121211;

        .social-mini-menu{
            display: flex;
            margin: 0;
            align-items: center;
            justify-content: center;

            li {
                font-size: 14px;
                color: #fff;
                margin-right: 8px;
                list-style-type: none;
        
                i{
                    font-size: 16px;
                    color: #b1976b;
                    margin-right: 8px;
                }
            }

            .btn-consultoria {
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                background: #b1976b;
                text-align: center;
                padding: 8px 20px;
                font-size: 3px !important;

                li{
                    font-size: 14px;
                    color: #fff;
                    margin-right: 8px;
                    list-style-type: none;
        
                    i{
                        font-size: 12px;
                        color: #fff;
                        margin-right: 8px;
                    }
                }

            }
        
        }
    }
    .menu{
        width: 32px;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }

    #display {
        h1 {
            font-size: 2rem;
        }
        h2 {
            margin-bottom: -20px;
        }
        p {
            line-height: 29px;
            font-size: 18px;
            margin: 0 15px 60px;
        }
    }

    #sobre {
        .img-sobre {
            margin-bottom: -30px;
        }
    }


    footer {
        text-align: center;

        h6 {
            margin-bottom: 15px;
            margin-top: 40px;
        }

        .space-copy {
            flex-direction: column;

            .copy{
                margin: 0 20px;
                font-size: 12px;
            }

            .menu-footer {
                flex-wrap: wrap;
                margin-top: 30px;
                font-size: 12px;

                li {
                    margin: 0px 8px 11px 0;
                    font-size: 13px;
                }
            }
        }
    }
}

