*{
    font-family: "Montserrat", sans-serif;
}

header{

    .social-menu{
        display: flex;
        align-items: center;

        li{
            font-weight: 400;
            font-size: 15px;
            line-height: 100%;
            color: #fff;
            list-style-type: none;

            .icon-header{
                margin-right: 8px;
            }
        }
    }
}

footer {
    background-color: #1D1D1D;
    border-top: solid 11px #9B7B2E;
    padding: 48px 0 0 0;

    .social-footer {
        display: flex;
        justify-content: center;
        padding: 0;
        margin: 0;

        li {
            list-style-type: none;
            margin: 20px 20px;
            padding: 0;
        }
    }

    .copy{
        font-weight: 400;
        font-size: 12px;
        color: #fff;

        span{
            color: #9B7B2E;
        }
    }

    .social-menu{
        display: flex;
        align-items: center;
        justify-content: flex-end;

        li{
            font-weight: 400;
            font-size: 15px;
            line-height: 100%;
            color: #fff;
            list-style-type: none;
            margin-right: 20px;

            .icon-header{
                margin-right: 8px;
            }
        }
    }
}


/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    .copy {
          text-align: center;
    }
    
    .social-menu {
        justify-content: center !important;
    }
}

/* MOBILE */
@media all and (max-width: 767px) { 
      .copy {
            text-align: center;
        }

        footer{
            .social-menu {
                flex-direction: column;
            }
        }

        
        .social-menu {

            li {
                margin-bottom: 10px;

                .barra-mob{
                    display: none;
                }
            }
        }
}