@media (min-width: 768px) {
    #menu-hamburguer-container {
        display: none;
    }
}

#menu-hamburguer-container {
    position: relative;
    z-index: 1001;
    font-family: Edenred;
}

#btn-hamburguer {
    background: #F1F7FF;
    border: none;
    cursor: pointer;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    outline: none;
}

#btn-hamburguer svg {
    fill: #000;
    height: 18px;
}

#menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; 
    overflow-y: auto; 
    padding-top: 60px;
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out;
}

#menu-mobile.active {
    transform: translateX(0);
}

#btn-fechar {
    position: absolute;
    top: 32px; 
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    line-height: 1;
    z-index: 1002;
}

.logo-edenred {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.logo-edenred img {
    width: auto;
    height: 60px;
}

img#btn-fechar {
    width: 24px;
}

#menu-mobile .main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 40px;;
}

#menu-mobile .main-menu > li > a {
    display: block;
    padding: 20px 0;
    margin: 0 32px;
    border-bottom: 1px solid #d5d8dc;
    text-decoration: none;
    color: #000;
    font-size: 2rem;
    position: relative;
    font-weight: 500;
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-menu a.dropdown-item {
    display: flex; 
    align-items: center;
    padding: 15px 20px;
    margin: 0 20px;
    text-decoration: none;
    background-color: #fff; 
    border-bottom: 1px solid #d5d8dc;
}

.dropdown-menu a.dropdown-item img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.dropdown-menu .item-content {
    flex: 1;
}

.dropdown-menu .item-content .title-menu {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.dropdown-menu .item-content p {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.acesso-tambem {
    margin-top: 40px;
    background-color: #f7f9fc; 
    padding: 20px;
    text-align: center;
    max-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.acesso-tambem-title {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    margin: 0 0 15px 0;
}

.logos-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: center;
    gap: 15px;
}

.logo-item {
    background-color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.logo-item img {
    max-height: 30px;
    max-width: 100%;
    width: auto;
    height: auto;
}

.logo-item.large {
    width: 100%;
    max-width: 150px; 
    margin: 15px 0 0 0;
}