.elementor-10453 .elementor-element.elementor-element-8063757{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-10453 .elementor-element.elementor-element-78f24f0{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-10453 .elementor-element.elementor-element-60f1df9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}@media(min-width:768px){.elementor-10453 .elementor-element.elementor-element-60f1df9{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-f0cd2f9 */p {
            font-size: 14px;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            gap: 20px;
        }

        .formulario {
            flex: 2;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding: 10px;
        }

        .form-grid>div {
            min-width: 0;
            /* Permite que os itens encolham adequadamente */
        }

        label {
            font-size: 14px;
            font-weight: bold;
            display: block;
        }

        input,
        select {
            padding: 8px;
            width: 100%;
            margin-top: 4px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
        }

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
        }

        .abas {
            display: flex;
            flex-wrap: wrap;
            gap: 3px;
            /* espaçamento entre os botões */
            width: 100%;
            justify-content: center;
            /* centraliza os botões se houver quebra */
        }

        .aba-categoria {
            flex: 1 1 calc(10% - 3px);
            /* 100% dividido por 7 categorias, menos o gap */
            text-align: center;
            padding: 10px 10px;
            background-color: #000000;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 400;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            /* bordas arredondadas */
            font-size: 14px;
            box-sizing: border-box;
        }

        .aba-categoria:hover {
            background-color: #474747;
            color: white;

        }

        .aba-categoria.ativa {
            background-color: #C09E6A;
            color: white;

        }

        .grid-itens {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .item-card {
            background: white;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #ccc;
        }

        .item-card.selecionado {
            border: 2px solid #47bd37;
        }

        .item-card h4 {
            margin: 0 0 10px;
            font-size: 14px;
        }

        .item-card p {
            margin: 0 0 4px;
            font-size: 14px;
        }

        .divisor-suave {
            height: 1px;
            background: linear-gradient(to right, #e2e8f0, transparent);
            margin: 12px 0;
        }

        .btn {
            padding: 6px 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 6px;
        }

        .btn-adicionar {
            background: #C09E6A;
            color: white;
            font-size: 14px;
        }
        
        .btn-adicionar:hover {
            background: #cfaa72;
        }

        .pedido {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .pedido-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pedido-lista {
            background: white;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 8px;
            flex: 1;
            overflow-y: auto;
            margin-top: 10px;
        }

        .pedido-item {
            border-bottom: 1px solid #eee;
            padding: 8px 0;
        }

        .item-nome {
            font-weight: bold;
        }

        .linha-inferior {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .controles {
            display: flex;
            gap: 4px;
            align-items: center;
        }

        .controles button,
        .controles .quantidade {
            width: 30px;
            /* Largura fixa */
            height: 30px;
            /* Altura fixa */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            /* Remove padding interno */
        }

        .btn-danger-small,
        .btn-success-small {
            background-color: #f3f3f3;
            color: #000;
            font-weight: bold;
            font-size: 14px;
        }

        
        .btn-danger-small:hover,
        .btn-success-small:hover {
            background-color: #0e0e0e;
            color: white;
        }

        .quantidade {
            font-weight: 500;
            font-size: 14px;
        }

        .total {
            font-weight: bold;
            text-align: right;
            margin-top: 10px;
        }

        .btn-confirmar {
            margin-top: 10px;
            padding: 20px 40px;
            background: #059669;
            color: white;
            width: 100%;
            font-size: 16px;
        }
        
        .btn-confirmar:hover,
        .btn-confirmar:active, 
        .btn-confirmar:focus {
            background: #05a170;
        }

        .modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
        }

        .modal.ativo {
            display: flex;
        }

        .modal-conteudo {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
        }

        /* Estilo base para botões de modal */
        .btn-modal {
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s ease;
            cursor: pointer;
            min-width: 120px;
            text-align: center;
            border: 1px solid transparent;
            /* Borda transparente por padrão */
        }

        /* Botão de Confirmação (destacado) */
        .btn-confirmacao {
            background-color: #059669;
            color: white;
        }

        .btn-confirmacao:hover {
            background-color: #047857;
        }

        /* Botão de Cancelamento (discreto) */
        .btn-cancelamento {
            background-color: white;
            color: #333;
            border: 1px solid #ddd;
            /* Borda sutil */
        }

        .btn-cancelamento:hover {
            background-color: #f5f5f5;
            border-color: #ccc;
        }

        /* Container dos botões no modal */
        .modal-botoes {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 20px;
        }
        
        /* Layout para telas menores (mobile) */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                /* Coloca os itens em coluna */
            }

            .formulario,
            .pedido {
                flex: none;
                /* Remove o flex grow */
                width: 100%;
            }

            .pedido {
                order: 2;
                /* Move a seção do pedido para baixo */
                margin-top: 20px;
            }

            .grid-itens {
                grid-template-columns: 1fr;
                /* Uma única coluna */
            }

            /* Ajustes adicionais para melhor visualização */
            .form-grid {
                grid-template-columns: 1fr;
                /* Formulário em uma coluna */
            }

            .abas {
                overflow-x: auto;
                /* Permite rolagem horizontal nas abas */
                padding-bottom: 10px;
            }

            /* Melhora a visualização dos cards */
            .item-card {
                padding: 15px;
            }

            /* Ajusta os botões */
            .btn {
                padding: 10px;
                font-size: 14px;
            }

            /* Aumenta a área de toque */
            .aba-categoria {
                padding: 8px 16px;
                font-size: 14px;
            }

            /* Ajusta o cabeçalho do pedido */
            .pedido-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }/* End custom CSS */