         * {
             margin: 0;
             padding: 0;
             box-sizing: border-box;
             font-family: Arial, sans-serif;
         }
         body {
             line-height: 1.6;
             color: #333;
             background-color: #fff9f0;
             position: relative;
             min-height: 100vh;
         }
         /* Marca d'água: apenas uma imagem, canto inferior direito */
         body::after {
             content: "";
             position: fixed;
             bottom: 20px;
             right: 20px;
             width: 200px;
             height: 200px;
             background-image: url('imagens/marca-agua-biscoito.png');
             background-size: contain;
             background-repeat: repeat;
             opacity: 0.12;
             z-index: 0;
             pointer-events: none;
         }
		 
		 label {
            display: block;
            margin-bottom: 8px;
            color: #444444;
            font-weight: 600;
            font-size: 14px;
        }
		
		input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #cccccc;
            border-radius: 6px;
            font-size: 16px;
            color: #333333;
            transition: border-color 0.3s ease;
        }

        input:focus,
        textarea:focus {
            border-color: #007bff;
            outline: none;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }
		 button {
            width: 100%;
            padding: 14px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: #0056b3;
        }
		 
		.form-group {
            margin-bottom: 20px;
        }
		 
         .container_c {
            background-color: #ffffff;  
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 500px;
        }

         .conteudo {
             position: relative;
             z-index: 1;
         }
         /* Cabeçalho com marrom metálico e logomarca à esquerda */
         header {
             background: linear-gradient(135deg, #8B6A4F 0%, #A68568 25%, #70523A 50%, #B8997C 75%, #8B6A4F 100%);
             color: #fff;
             padding: 1.8rem;
             box-shadow: 0 2px 8px rgba(0,0,0,0.2);
             text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
             display: flex;
             justify-content: flex-start;
             align-items: center;
             flex-wrap: wrap;
             gap: 1.5rem;
         }
         .logo {
             max-width: 150px;
             height: auto;
             border-radius: 6px;
             box-shadow: 0 0 6px rgba(0,0,0,0.2);
         }
         .texto-cabecalho {
             text-align: left;
         }
		 .texto-titulo {
             text-align: center;
         }
         /* Barra de menu em azul escuro */
         nav {
             background-color: #0A2342;
             padding: 1rem;
             text-align: center;
             box-shadow: 0 2px 4px rgba(0,0,0,0.15);
         }
         /* Botões do menu com bordas arredondadas */
         .botao-menu {
             display: inline-block;
             background-color: #0A2342;
             color: #ffffff;
             padding: 0.6rem 1.2rem;
             margin: 0 0.5rem;
             text-decoration: none;
             font-weight: bold;
             border-radius: 25px;
             border: 2px solid #ffffff;
             transition: all 0.3s ease;
         }
         .botao-menu:hover {
             background-color: #ffffff;
             color: #0A2342;
             border-color: #ffffff;
         }
         .container {
             max-width: 1000px;
             margin: 2rem auto;
             padding: 0 1.5rem;
         }
         section {
             margin-bottom: 2.5rem;
         }
         h2 {
             color: #8B6A4F;
             margin-bottom: 1rem;
             border-bottom: 2px solid #B8997C;
             padding-bottom: 0.3rem;
         }
         /* Grade de produtos com fotos */
         .produtos {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
             gap: 1.5rem;
             margin-top: 1.5rem;
         }
         .produto {
             background: white;
             padding: 1.2rem;
             border-radius: 8px;
             box-shadow: 0 2px 5px rgba(0,0,0,0.1);
             text-align: justify;
             border-top: 3px solid #A68568;
         }
         .produto img {
             width: 100%;
             height: 180px;
             object-fit: cover;
             border-radius: 6px;
             margin-bottom: 1rem;
             border: 2px solid #E8D4BF;
         }
         /* Formulário de contato/pedido */
         .formulario {
             background: #ffffff;
             padding: 1.5rem;
             border-radius: 8px;
             box-shadow: 0 2px 6px rgba(0,0,0,0.1);
             border-top: 3px solid #0A2342;
             margin-top: 1.5rem;
         }
         .formulario h3 {
             margin-bottom: 1rem;
             color: #444;
         }
         .formulario label {
             display: block;
             margin: 0.8rem 0 0.3rem;
             font-weight: bold;
             color: #444;
         }
         .formulario input,
         .formulario textarea {
             width: 100%;
             padding: 0.7rem;
             border: 1px solid #ccc;
             border-radius: 6px;
             font-size: 1rem;
         }
         .formulario textarea {
             resize: vertical;
             min-height: 120px;
         }
         .botao-enviar {
             margin-top: 1.2rem;
             background-color: #0A2342;
             color: white;
             padding: 0.8rem 1.8rem;
             border: none;
             border-radius: 25px;
             font-weight: bold;
             cursor: pointer;
             transition: background 0.3s ease;
         }
         .botao-enviar:hover {
             background-color: #153b6d;
         }
         /* Rodapé no mesmo azul escuro */
         footer {
             background-color: #0A2342;
             color: white;
             text-align: center;
             padding: 1.2rem;
             margin-top: 2rem;
         }
         /* Ajustes para telas menores */
         @media (max-width: 500px) {
             header {
                 flex-direction: column;
                 text-align: center;
             }
             .texto-cabecalho {
                 text-align: center;
             }
             .botao-menu {
                 margin: 0.3rem;
                 width: 80%;
             }
             body::after {
                 width: 120px;
                 height: 120px;
                 bottom: 10px;
                 right: 10px;
             }
         }

/* Campos de Entrada */
.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #4e342e;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #edede9;
    border-radius: 10px;
    font-size: 15px;
    color: #4e342e;
    outline: none;
    transition: 0.3s;
}
.input-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #edede9;
    border-radius: 10px;
    font-size: 15px;
    color: #4e342e;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #d4a373; /* Cor de Cookie Dourado */
}

/* Botão de Entrar */
.btn-login {
    width: 100%;
    padding: 14px;
    background-color: #4e342e;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-login:hover {
    background-color: #6d4c41;
}

.select-fixo {
    width: 325px;
    height: 25px;
    box-sizing: border-box;
    padding: 1px;
    font-size: 12px;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        /* Botão ABRIR MENU - posição e z-index ajustado para NÃO sobrepor */
        .btn-abrir {
            position: fixed;
            top: 12px;
            left: 12px;
            z-index: 999; /* Menor que o menu, para ficar sempre atrás */
            background: #555;
            color: #fff;
            border: none;
            padding: 10px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
        }

        /* Fundo escuro */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.35);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .overlay.ativo {
            opacity: 1;
            visibility: visible;
        }

        /* Menu Lateral - espaço superior garantido */
        .menu-lateral {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: 280px;
            max-width: 88vw;
            background-color: #e0e0e0;
            overflow-y: auto;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 1001; /* Sempre na frente do botão de abrir */
            padding-top: 55px; /* ESPAÇO GARANTIDO no topo para não encostar */
        }
        .menu-lateral.aberto {
            transform: translateX(0);
        }

        .btn-fechar {
            position: absolute;
            top: 12px;
            right: 15px;
            background: none;
            border: none;
            font-size: 28px;
            color: #333;
            cursor: pointer;
            padding: 0 8px;
            line-height: 1;
        }

        /* Itens do Menu */
        .item-principal {
            border-bottom: 1px solid #bdbdbd;
        }
        .botao-item {
            width: 100%;
            padding: 16px 22px;
            background: transparent;
            border: none;
            text-align: left;
            font-size: 16px;
            color: #2d2d2d;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }
        .botao-item:hover {
            background-color: #d5d5d5;
        }
        .seta {
            transition: transform 0.3s ease;
            font-size: 14px;
        }
        .botao-item.ativo .seta {
            transform: rotate(180deg);
        }

        /* Submenu sem sobreposição */
        .submenu {
            max-height: 0;
            overflow: hidden;
            background-color: #f0f0f0;
            transition: max-height 0.3s ease;
        }
        .submenu a {
            display: block;
            padding: 14px 22px 14px 40px;
            color: #444;
            text-decoration: none;
            transition: background 0.2s;
            font-size: 15px;
        }
        .submenu a:hover {
            background-color: #e0e0e0;
            color: #222;
        }

        .item-link {
            display: block;
            padding: 16px 22px;
            color: #2d2d2d;
            text-decoration: none;
            border-bottom: 1px solid #bdbdbd;
            transition: background 0.2s;
        }
        .item-link:hover {
            background-color: #d5d5d5;
        }

        /* Ajuste para celulares */
        @media (max-width: 480px) {
            .btn-abrir {
                top: 10px;
                left: 10px;
                font-size: 15px;
                padding: 9px 14px;
            }
            .menu-lateral {
                width: 260px;
                padding-top: 50px;
            }
            .botao-item {
                padding: 15px 20px;
                font-size: 15px;
            }
            .submenu a {
                padding: 13px 20px 13px 36px;
                font-size: 14px;
            }
        }

.formulario {
            max-width: 550px;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 35px 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .titulo-form {
            text-align: left;
            color: #333;
            margin-bottom: 30px;
            font-size: 23px;
            font-weight: 600;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e0e0;
        }

        .conteudo-form {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .grupo-campo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
        }

        .grupo-campo label {
            margin-bottom: 6px;
            font-weight: 500;
            color: #444;
            text-align: left;
            width: 100%;
        }

        /* Borda normal */
        .grupo-campo input {
            width: 100%;
            padding: 11px 13px;
            border: 1px solid #bdbdbd;
            border-radius: 4px;
            font-size: 15px;
            transition: all 0.2s ease;
            background-color: #fff;
        }

        /* Borda dourada SOMENTE no campo selecionado */
        .grupo-campo input:focus {
            outline: none;
            border: 2px solid #D4AF37;
            box-shadow: 0 0 6px rgba(212, 175, 55, 0.45);
        }

        .areac-botoes {
            margin-top: 30px;
            text-align: left;
        }

        .btnc {
            padding: 12px 28px;
            background-color: #555;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.2s;
        }

        .btnc:hover {
            background-color: #333;
        }