body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #F1F4F9;
}

input {
    font-size: 17px;
}

button {
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
    transition: 0.3s;
}

h2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

h2 img {
    width: 20px;
    margin-left: 0px;
    margin-right: 10px;
    background-color: #cbe600;
    padding: 5px;
    border: 1px solid #2c2c2c;
    border-radius: 8px;
}

#conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 60px;
    max-width: 900px;
}

#adicionar_fornecedor {
    width: 50%;

    font-size: 16px;

    color: #fff;

    font-weight: 500;

    border: none;

    background-image: linear-gradient(to bottom, #2c2c2c, #555555);

    margin-bottom: 5px;

    padding: 12px 16px 12px 16px;

    border-radius: 8px;
}

#logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 400px;
    min-width: 350px;
    width: 100%;
    margin-top: -100px;
    margin-bottom: -120px;
}

#campo_pesquisa_fornecedor input {
    width: 90%;
    border: none;
    outline: none;
}

#campo_pesquisa_fornecedor img {
    width: 24px;
}

#campo_pesquisa_produtos {
    display: flex;
    align-items: center;
    border: 1px solid #333;
    justify-content: space-between;
    border-radius: 8px;
    margin-bottom: 20px;
}

#pesquisar_produto {
    background-color: #cbe600;
    padding: 5px;
    height: 30px;
    width: 30px;
    margin-right: 5px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#campo_pesquisa_produtos input {
    height: 25px;
    width: 90%;
    border: none;
    outline: none;
}

#campo_pesquisa_produtos img {
    width: 24px;
}

img#voltar {
    cursor: pointer;
    position: absolute;
    left: 25px;
    top: 85px;
    width: 25px;
}

a {
    text-decoration: underline;
    color: #2c2c2c;
}

p.aviso {
    color: #2c2c2ce0;
    font-size: 12px;
    font-weight: 400;
}

p#baixo {
    color: #DADADA;
}

button#refazer {
    border: none;
    background-image: linear-gradient(to bottom, #2c2c2c, #555555);
    color: #fff;
    padding: 15px 20px;
    width: 90%;
    margin: auto;
    font-size: 16px;
    border-radius: 8px;
    margin-top: auto;
}

#conteudo h1 {
    font-size: 26px;
    color: #2c2c2c;
}

#pedidos {
    width: 90%;
    margin: auto;
}

.nome_quant {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.campo_pedidos_realizados {
    margin: auto;
    width: 100%;
    margin-top: 0px;
}


/* INPUT BUSCA */

.campo_busca {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 4px 8px;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease-in-out;
    box-sizing: border-box;
    position: relative;
}

.campo_busca:focus-within {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.input_busca {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 8px 10px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    color: #333;
    box-sizing: border-box;
}

.input_busca::placeholder {
    color: #aaa;
    font-weight: 400;
}

.btn-buscar {
    background-color: #cbe600;
    width: 41px;
    height: 41px;
    position: absolute;
    right: 0px;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.btn-buscar:hover {
    background-color: #b3cc00;
}

.btn-buscar img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.pedido_realizado {
    margin-bottom: 20px;
}

.pedido {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0 0.3em #97A6BF;
    color: #2c2c2c;
    width: 90%;
    height: fit-content;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    border: none;
    height: fit-content;
    cursor: pointer;
}

.pedido img {
    width: 50px;
    padding: 5px;
    border-radius: 8px;
    margin-left: 10px;
    margin-right: 20px;
}

.descricao_pedido {
    margin: auto;
    margin-left: 0px !important;
    text-align: center;
}

#data_pedido {
    font-size: 14px;
    margin-right: 10px;
}

#data_pedido p {
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 0px;
}

#campo_data {
    background-color: #a2a2a241;
    padding: 5px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 0px !important;
    margin-top: 10px !important;
}

p.nome_produto {
    font-weight: 500;
    font-size: 18px;
    text-align: start;
    margin-right: 1rem;
}

.preco {
    background-color: #a2a2a241;
    width: fit-content;
    margin-bottom: 12px;
    margin-top: 12px;
    padding: 2px 25px;
    border-radius: 8px;
    color: #2c2c2c;
    font-weight: 600;
}


div#produtos_promocao {
    margin-top: -60px;
    margin-bottom: 150px;
}

div.descricao_pedido {
    display: flex;
    flex-direction: column;
}

div.descricao_pedido img {
    width: 30px;
}

#carta {
    position: absolute;
    right: 80px;
    top: 50%;
    cursor: pointer;
}


#quantidade_alteracoes {
    position: absolute;
    background-color: #cbe600e2;
    color: #000;
    border-radius: 50%;
    height: 32px;
    min-width: 32px;
    z-index: 9999;
    cursor: pointer;
    top: -8px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:550px) {
    .quantidade {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
}

#compra_deleta {
    position: absolute;
    right: 0px;
    cursor: pointer;
    top: 50%;
}


.mais {
    padding: 0px !important;
}

.menos {
    padding: 0px !important;
}

@media(max-width: 550px) {
    #carta {
        position: absolute;
        right: 50px;
        top: 50%;
        cursor: pointer;
    }
}

div.pedido_informacao {
    display: flex;
    justify-content: start;
    flex-direction: row;
    align-items: start;
}

div.pedido_realizado_informacao {
    display: flex;
    justify-content: start;
    flex-direction: column;
    align-items: start;
}

.nome_produto_pedido {
    font-weight: 600;
    font-size: 18px;
    width: 200px;
    text-align: start;
    margin-bottom: 5px;
}

.status {
    width: 110px;
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    margin: 0;
    margin-bottom: 16px;
}

.fornecedor {
    margin-top: 0px;
    margin-bottom: 16px;
    text-align: start;
}

div.pedido_informacao img {
    margin-left: 30px;
}


button.botoes_acao {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 100%;
    font-size: 20px;
    color: #dadada;
    font-weight: 500;
    border: none;
    background-image: linear-gradient(to bottom, #2c2c2c, #555555);
    margin-bottom: 5px;
    padding: 12px 16px 12px 16px;
    border-radius: 8px;
    margin-bottom: 0px;
    margin-top: 30px;
}


.quantidade {
    width: 100%;
    font-size: 18px;
    margin-top: -15px;
    margin-bottom: 20px;
    display: none;
    align-items: center;
}

.menos,
.mais {
    width: 20%;
    font-size: 20px;
    border: none;
    background-color: #fff;
    padding: 5px 10px;
    cursor: pointer;
}

.quantidade_valor {
    margin: 0 10px;
    background-color: #a2a2a241;
    padding: 5px 10px;
    border-radius: 8px;
}

div#fechar_pedido {
    display: none;
    position: fixed;
    border-top: 1px solid #2c2c2c9d;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 0px;
    height: 100px;
    background-color: #fff;
    width: 100%;
    text-align: center;
    box-shadow: 0 -2px 8px #97A6BF;
}

@media(max-width:550px) {
    div#fechar_pedido {
        bottom: 50px;
    }

    #pedidos {
        width: 90% !important;
    }
}

div#fechar_pedido button {
    width: 98%;
    max-width: 700px;
    font-size: 20px;
    color: #dadada;
    font-weight: 500;
    border: none;
    background-image: linear-gradient(to bottom, #2c2c2c, #555555);
    margin-bottom: 5px;
    padding: 12px 16px 12px 16px;
    border-radius: 8px;
}

button#fechar_pedido {
    width: 98%;
    font-size: 20px;
    color: #dadada;
    font-weight: 500;
    border: none;
    background-image: linear-gradient(to bottom, #2c2c2c, #555555);
    margin-bottom: 5px;
    padding: 12px 16px 12px 16px;
    border-radius: 8px;
}

button#adicionar_produto {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cbe600;
    color: #000000b3;
    font-size: 16px;
    font-weight: 700;
    border-radius: 18px;
    padding: 12px 8px;
    border: 2px solid #fff;
}

button#adicionar_produto img {
    margin-left: 10px;
}

button#adicionar_produto:hover {
    color: #00000077;
    background-color: #cbe600bd;
    transition: 0.4s;
}

button#selecionar_produto {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cbe600;
    color: #000000b3;
    font-size: 16px;
    font-weight: 600;
    border-radius: 18px;
    padding: 10px 10px;
    width: 200px;
    border: 2px solid #fff;
}

@media(max-width: 1350px) {
    button#selecionar_produto {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #cbe600;
        color: #000000b3;
        font-size: 16px;
        font-weight: 600;
        border-radius: 18px;
        padding: 10px 10px;
        width: 200px;
        border: 2px solid #fff;
    }
}

button#selecionar_produto img {
    margin-left: 10px;
}

button#selecionar_produto:hover {
    color: #00000077;
    background-color: #cbe600bd;
    transition: 0.4s;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal input,
.modal select {
    height: 40px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #2c2c2c;
}

.modal select {
    width: 100%;
}

.modal .campos {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

div#precos {
    display: flex;
    justify-content: space-between;
}

div#precos input {
    width: 47%;
    outline: none;
    margin-bottom: 10px;
}

.modal button {
    width: 100%;
    font-size: 20px;
    color: #dadada;
    font-weight: 500;
    border: none;
    background-image: linear-gradient(to bottom, #2c2c2c, #555555);
    margin-bottom: 5px;
    padding: 12px 16px 12px 16px;
    border-radius: 8px;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    border-radius: 8px;
    padding: 40px 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

img.carrinho {
    position: absolute;
    right: 50px;
}

p.preco {
    margin-right: 5px;
}

div.pedido {
    width: 100%;
}

img.editar {
    cursor: pointer;
    position: absolute;
    right: 50px;
}

#colocar_promocao {
    cursor: pointer;
    position: absolute;
    right: 150px;
    top: 45%;
    border: none;
    background-image: linear-gradient(to bottom, #2c2c2c, #555555);
    color: #fff;
    padding: 10px 20px;
    width: 20%;
    margin: auto;
    font-size: 20px;
    border-radius: 8px;
}

@media(max-width: 500px) {
    #colocar_promocao {
        cursor: pointer;
        position: absolute;
        right: 30px;
        text-align: center;
        top: 15px;
        border: none;
        background-image: linear-gradient(to bottom, #2c2c2c, #555555);
        color: #fff;
        padding: 0px;
        height: 30px;
        width: 25%;
        margin: auto;
        font-size: 16px;
        border-radius: 8px;
    }
}

.container_modal_suporte {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(3px);
}

.modal_suporte {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 90%;
    max-width: 380px;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal_suporte h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    width: 100%;
    text-align: center;
}

.div_contato_modal {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: #444;
    word-break: break-all;
}

.icone_whatsapp_suporte {
    font-size: 22px;
    color: #25D366;
}

.icone_email_suporte {
    font-size: 22px;
    color: #EA4335;
}

.btn_fechar {
    align-self: center;
    background: linear-gradient(135deg, #2c2c2c, #555);
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 30px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.2s ease;
}

.btn_fechar:hover {
    background: linear-gradient(135deg, #000, #444);
    transform: scale(1.05);
}

.titulo_modal_suporte {
    text-align: center;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: #444;
}

a:visited {
    text-decoration: none;
    color: #444;
}