        *{outline: none;}
		#team{
            width: 100%;
            float: left;
        }
        #team #team_title{
            width: 95%;
            float: left;

            margin: 2.5%;
			margin-bottom: 0; 
			
			text-align: center;
            font-weight: bold;
        }
        #team #team_title b{
        	color: #3dff00;
        }
        #team #team_list{
            width: 95%;
            float: left;

            margin: 2.5%;
            
            overflow-x: auto;
            white-space: nowrap;
            align-items: flex-start;
            
            display: inline-flex;
            gap: 20px;
            align-items: flex-start; /
            
            background: #fff;

            scrollbar-color: #444 #000; /* cor da barra e do fundo */
            scrollbar-width: thin;      /* barra mais fina */
        }
        /* Para navegadores WebKit (Chrome, Edge, Safari) */
        #team_list::-webkit-scrollbar {
        	height: 8px; /* altura da barra horizontal */
        }

        #team_list::-webkit-scrollbar-track {
          	background: #000; /* fundo total preto */
        }

        #team_list::-webkit-scrollbar-thumb {
          	background: #222; /* a barra em si em cinza escuro */
          	border-radius: 10px; /* cantos arredondados */
        }

        #team_list::-webkit-scrollbar-thumb:hover {
          	background: #555; /* cor um pouco mais clara ao passar o mouse (opcional) */
        }
        #team #team_list .team_member{
            width: 250px;

            display: inline-block;

            margin: 0% 1%;
        }
        #team #team_list .team_member .member_image{
            width: 250px;
            float: left;
            aspect-ratio: 1 / 1;

            border-radius: 5px;

            overflow: hidden;
        }
        #team #team_list .team_member .member_image img{
            width: 100%;
            height: 100%;
            float: left;

            filter: grayscale(100%);

            object-fit: cover;
            object-position: center;
        }
        #team #team_list .team_member .member_info{
            width: 80%;
            float: left;

            background: #fff;
            border-radius: 10px;

            margin: 0% 10%;
            margin-top: -20px;

            filter: blur(0);
        }
        #team #team_list .team_member .member_info .info_name{
            width: 90%;
            float: left;

            margin: 5%;
            margin-bottom: 0;;

            text-align: center;

			cursor: default;

        }
        #team #team_list .team_member .member_info .info_name:hover a{
			color: #3dff00;
		}
        #team #team_list .team_member .member_info .info_name a{
        	font-weight: bold;
        	text-decoration: none;
        	color: #000;
        }
        #team #team_list .team_member .member_info .info_office{
            width: 95%;
            float: left;

            margin: 2.5%;
            margin-bottom: 5%;

            text-align: center;
            font-size: 15px;
            color: #000;
            
            opacity: 50%;
        }