/* Esconde o botão de menu e a logo mobile no desktop */
.mobile-menu-button,
.logo-mobile {
    display: none;
}

@media (min-width: 768px) {
    .container-mobile-menor {
        padding-top: 20px !important;
        padding-bottom: 40px !important;
        border-radius: 10px;
        background-color: white;
    }
}

/* Estilos para modo mobile */
@media (max-width: 991px) {
    /* Exibe a logo mobile e esconde a logo desktop */
    .avatar {
        display: none;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .btn-abrir-menu {
        display: block;
    }

    .slidebtn {
        visibility: hidden !important;
    }

    .carousel-right {
        right: 0;
    }

    /* Exibe o botão de menu no modo mobile */
    .mobile-menu-button {
        display: block;
        background-color: #444;
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
    }

    /* na tela de login esconde o modelo desktop */

    .container-login {
        border-radius: 0;
        min-height: 0;
        position: fixed;
        right: 0;
        background: none;
        box-shadow: none;
        top: 8%;
        min-width: 100%;
        padding: 0rem 1rem; /* Estilo herdado de .container-mobile-menor */
    }
    
    .container-mobile-menor {
        justify-content: center !important;
        padding-top: 10px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 40px;
        border-radius: 10px;
        background-color: white;
    }
}
