/* menu novo */
.box-menu {
    right: 17px;
    top: 17px;
    cursor: pointer;
    background: #0a97e9;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    float: right;
    position: absolute;
    z-index: 9999;
}

.full-menu {
    height: 274px;
}

.wrapper {
    width: 50px;
    height: 50px;
}

.hamburger {

    position: absolute;
    left: 12px;
    top: 13px;
    width: 27px;
    height: 25px;

}

.hamburger span {

    position: absolute;
    display: inline-block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    transition: all .3s;

}

.hamburger span:nth-child(1) {
    top: 3px;
}

.hamburger span:nth-child(2) {
    top: 12px;
}

.hamburger span:nth-child(3) {
    top: 12px;
}

.hamburger span:nth-child(4) {
    top: 20px;
}

.hamburger.active span:nth-child(1) {
    width: 0;
    margin-left: 15px;
}

.hamburger.active span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger.active span:nth-child(4) {
    width: 0;
    margin-left: 15px;
}

.nav1 {
    position: relative;
    right: -9999px;
}

.nav1 a {
    white-space: nowrap;
    position: relative;
    display: inline-block;
    color: #333;
    text-decoration: none;
    /* width: 150px;
    height: 58px; */
    line-height: 54px;
}

.nav1 a.active {
    color: #bd0909;
}

.nav1 a.active::after {
    top: 19px;
    height: 20px;
}

.nav1 a span {
    opacity: 0;
    display: inline-block;
    font-size: 14px;
}

.nav1 a span.icon {
    transform: scale(.5);
    color: #fff;
    font-size: 22px;
    /* display: inline-block; */
    width: 21px;
    transition: transform .3s;
    margin-left: 18px;
    margin-right: 4px;
}

.nav1 a span.texto {
    font-weight: bold;
    font-size: 20px;
    opacity: 0;
    /* margin-right: -40px; */
    transition: margin .3s, opacity .3s, transform .3s;

}

.full-menu .nav1 {
    right: 180px;
    text-align: right;
    background-color: #0a97e9d5;

    border-radius: 25px 0px 25px 25px;
    width: 230px;
    padding-left: 10px;
}

.full-menu .nav1 a:hover span {
    color: #53ff24;

}

.full-menu .nav1 a span {
    opacity: 1;
}

.full-menu .nav1 a span.icon {
    transform: scale(1.1);

}

.full-menu .nav1 a span.texto {
    margin-right: 10px;
    color: #fff;

}

.full-menu .nav1 a:hover span.texto {
    transform: translateX(-5px);
    transition-delay: 0s;
    color: #53ff24;
}

/* Botoes de Categoria */
.btn-categoria {
    display: flex;
    align-items: center;
    background-color: #E9ECEF;
    border-radius: 50px;
    /* border: 1px solid #125400; */
    font-weight: bold;
    /* color: #2a7900; */
}

.btn-categoria img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 5px;
}


.btn-categoria-efeito {
    overflow: hidden;
    position: relative;
}

.btn-categoria-efeito:hover {
    background-color: #4bbb1799;
    color: white;
    font-weight: bold;
}

.btn-categoria-efeito span {
    z-index: 20;
}

.btn-categoria-efeito:after {
    background: #ffffff;
    content: "";
    height: 155px;
    left: -85px;
    opacity: .4;
    position: absolute;
    top: -60px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 70px;
    z-index: 1;
}

.btn-categoria-efeito:hover:after {
    left: 130%;
    -webkit-transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1);
}



.capa {
    width: 175px;
    /* Define a largura fixa */
    height: 50px;
    /* Define a altura fixa */

    /* Mantém a proporção e cobre o contêiner */
}
