@charset "utf-8";
/* CSS Document */


        .header {
            margin-bottom: 20px;
        }
        
        /* O seu código .navbar-mobile está perfeito, vamos mantê-lo */
        .navbar-mobile {
            background-color: #AD6F61;
            height: 50px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* O seu código do botão e menu dropdown também está perfeito, sem alterações */
        .menu-button {
            background-color: #FBFBF3;
            width: 40px;
            height: 40px;
			 left: 50%;
            border: none;
            cursor: pointer;
            position: relative;
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            padding: 8px;
            position: absolute; /* Posição absoluta para o botão */
            right: 15px; /* Alinha à direita */
        }
        
        .menu-button span {
            display: block;
            height: 3px;
            background-color: #AD6F61;
            border-radius: 2px;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 50px;
            width: 180px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ad6f61;
			background:rgba(173,111,97,0.5);
			border-radius: 5px; 
			z-index: 1000;
			line-height: 10px;
			
        }

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

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

        .dropdown-menu a {
            display: block;
            padding: 15px;
            text-align: center;
            text-decoration: none;
            color: #FBFBF3;
            white-space: nowrap;
        }

        .dropdown-menu a:hover {
            background-color: #ad6f61;
        }
        
        .navbar-desktop {
            display: none;
        }

        /* INÍCIO DAS ALTERAÇÕES PARA DESKTOP */
        @media (min-width: 768px) {
            .navbar-mobile {
                display: none;
            }

            .navbar-desktop {
                display: block;
                background-color: #fbfbf3;
            }

            .navbar-desktop .top-bar {
                background-color: #AD6F61;
                height: 50px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .navbar-desktop .desktop-menu {
                /* Estilo do menu na barra superior */
                display: flex;
                justify-content: center;
                align-items: center;
                flex-grow: 1; /* Ocupa o espaço restante */
            }
            
            .navbar-desktop .desktop-menu ul {
                list-style: none;
                margin: 0;
                padding: 0;
                display: flex;
            }

            .navbar-desktop .desktop-menu li {
                margin: 0 15px;
            }

            .navbar-desktop .desktop-menu a {
                display:block; 
				color:#fbfbf3; 
				text-decoration:none; 
				padding:10px 12px; 
				border-radius:8px;
            }

            .navbar-desktop .desktop-menu a:hover {
                background:rgba(255,255,255,.12);
            }

            .logo-section {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                padding: 20px 50px; /* Padding para o logo */
            }

            .logo-link-desktop img {
                width: 261px;
                height: 88px;
            }
        }
        /* FIM DAS ALTERAÇÕES PARA DESKTOP */