/* .margem {
  margin-right: 2em;
} */
.elementos:after,
.elementos:before {
    backface-visibility: hidden;
    border: 2px solid rgba(255, 255, 255, 0);
    top: 1.4em;
    content: " ";
    display: block;
    margin: 0 auto;
    position: relative;
    transition: all 280ms ease-in-out;
    width: 0;
}

.elementosMobile:after,
.elementosMobile:before {
    backface-visibility: hidden;
    border: 2px solid rgba(255, 255, 255, 0);
    top: 0.5em;
    content: " ";
    display: block;
    margin: 0 auto;
    position: relative;
    transition: all 280ms ease-in-out;
    width: 0;
}

.elementos:hover:after {
    backface-visibility: hidden;
    border-color: orange;
    transition: width 350ms ease-in-out;
    width: 100%;
}

.elementosMobile:hover:after {
    backface-visibility: hidden;
    border-color: orange;
    transition: width 350ms ease-in-out;
    width: 100%;
}

.showMobile .navbar-collapse {
    position: absolute;
    top: 60px;
    background: white;
    right: 0;
    left: 0;
    z-index: 10;
}

.showMobile .navbar-brand {
    display: none;
}

.nav-link {
    margin-right: 40px;
}

.menu.showMobile .nav-link {
    padding-left: 24px;
    font-size: 13px;
    display: flex;
    align-items: center;
}

    .menu.showMobile .nav-link:active {
        background: #EEF8F3;
    }

    .menu.showMobile .nav-link:after {
        content: '';
        background-image: url('../assets/arrow-right.svg');
        background-size: 100% 100%;
        width: 15px;
        height: 15px;
        margin-left: 8px;
    }

@media screen and (max-width: 680px) {
    .nav-link {
        margin-right: 0px;
    }
}
