@import url(../css2.html);

/* =========================================================
   PALETA (TROQUE AS CORES AQUI E O SITE TODO MUDA)
   ========================================================= */
:root{
  --bg: #ffffff;
  --surface: #ffffff;

  --text: #403f3f;
  --muted: #676767;

  --primary: #000000;
  --primary-contrast: #ffffff;

  --accent: #2864EF;

  --success: #077c22;
  --success-soft: #d7fdd7;

  --danger: #E74C3C;
  --danger-soft: #eed3d7;

  --warning: #f9bc0b;
  --warning-soft: #fcefcc;

  --border: #cecece;
  --soft: #f8fafc;

  --gray-100: #f5f5f5;
  --gray-200: #EEE;
  --gray-300: #AAA;
  --scroll: #a5aaad;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 10px;
    height: 6px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--scroll);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--scroll);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scroll);
}

/* BASE */
html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

body,
html {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    height: auto;
    min-height: 100%;
}

button,
input,
textarea,
select {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

a {
    color: var(--text);
}

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
    display: flex;
    margin: 10px auto;
    padding: 10px 20px;
    cursor: pointer;
    background: var(--primary);
    color: var(--primary-contrast);
    border: 0;
    border-radius: 100px;
    align-items: center;
    font-size: 14px;
    justify-content: center;
}

.btnSair {
    position: absolute;
    top: 10px;
    right: 55px;
    width: auto;
    padding: 10px 10px;
    cursor: pointer;
    background: var(--primary);
    color: var(--primary-contrast);
    border: 0;
    border-radius: 100px;
    align-items: center;
    font-size: 12px;
    z-index: 1;
}

.btnFidelidade {
    position: absolute;
    top: 10px;
    right: 117px;
    width: auto;
    padding: 10px 10px;
    cursor: pointer;
    background: var(--primary);
    color: var(--primary-contrast);
    border: 0;
    border-radius: 100px;
    align-items: center;
    font-size: 12px;
    z-index: 1;
}

.btn:hover,
a.voltar:hover,
a.voltar2:hover,
.btnSair:hover,
.btnFidelidade:hover {
    opacity: 0.9;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

a.btn {
    max-width: 270px;
}

a.login {
    width: auto;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px 12px;
    margin: 0;
    z-index: 1;
}

a.login i {
    padding-left: 0;
    font-size: 20px;
}

.btn i {
    padding-left: 10px;
}

.btn i.right {
    padding-right: 10px;
    padding-left: 0;
}

.btnVerde {
    background: var(--success) !important;
}

.btnVerde:hover {
    opacity: 1;
    background: #3ac93f !important;
}

.btnCinza {
    background: var(--border) !important;
    cursor: not-allowed;
}

/* TAGS ABERTO/FECHADO */
.aberto {
    padding: 5px 10px;
    border-radius: 20px;
    color: var(--success);
    background-color: var(--success-soft);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    z-index: 1;
}

.fechado {
    padding: 5px 10px;
    border-radius: 20px;
    color: #c90000;
    background-color: var(--danger-soft);
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    z-index: 1;
}

@keyframes btn-pisca {
    0% { opacity: 0; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
.btn-pisca {
  -webkit-animation: btn-pisca .9s linear infinite;
  -moz-animation: btn-pisca .9s linear infinite;
  -ms-animation: btn-pisca .9s linear infinite;
  -o-animation: btn-pisca .9s linear infinite;
  animation: btn-pisca .9s linear infinite;
}

.lojaFechada {
    padding: 15px 0;
    text-align: center;
}

/* =========================================================
   LOGIN
   ========================================================= */
#login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 40px;
    align-items: center;
    text-align: center;
}

#login .form {
    display: none;
}

#login h1 {
    font-size: 25px;
    text-align: center;
}

#login p {
    text-align: center;
}

#login .codigoConfirmacao {
    display: none;
}

#login .codigoConfirmacao input {
    font-size: 25px;
}

#login .opcoes {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.btnGoogle,
.btnEmail,
.btnSemCadastro {
    color: var(--primary-contrast);
    padding: 10px 20px;
    border-radius: 20px;
    background: var(--accent);
    max-width: 300px;
    margin: 5px auto;
}

.btnGoogle:hover,
.btnEmail:hover,
.btnSemCadastro:hover {
    transition: .2s;
    opacity: 0.9;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

.btns {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btns .btn {
    margin: 10px 0 20px 0;
}

/* =========================================================
   ALERTAS
   ========================================================= */
.alert {
    width: 100%;
    font-size: 14px;
    padding: 10px 2.5%;
    margin: 10px 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    float: left;
    text-align: center;
    border-radius: 10px;
    outline: 2px solid var(--text);
}

.alert>span {
    width: auto;
    font-size: 25px;
    padding-right: 20px;
    color: #c90000;
    background: none;
}

.alert-success {
    outline: 2px solid #468847;
    color: var(--success);
}

.alert-error {
    outline: 2px solid #b94a48;
    color: #b94a48;
}

.alert-info {
    outline: 2px solid #fbbc05;
    background-color: var(--warning-soft);
    color: var(--primary);
}

/* =========================================================
   CONTAINERS
   ========================================================= */
.container {
    width: 100%;
    max-width: 1200px;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
}

.containerFinalizar {
    max-width: 800px;
    border: 2px solid var(--border);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 20px 30px 30px 30px;
    margin-top: 20px;
    margin-bottom: 100px;
    display: table;
}

.containerFinalizar h2 {
    text-align: center;
    margin: 20px 0 20px 0;
}

.containerFinalizar h2:first-child {
    margin-top: 0;
}

.opacidade {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 1048;
    background-color: rgba(0, 0, 0, 0.2);
}

/* =========================================================
   HEADER / TOPO
   ========================================================= */
header#topo {
    background: var(--surface);
    border-bottom: 1px solid var(--soft);
}

header#topo .cover {
    height: 172px;
    position: relative;
    background-size: auto;
}

header#topo .borda {
    height: 65px;
    border-radius: 40px 40px 0 0;
    background: var(--surface);
    position: inherit;
    top: 110px;
    z-index: 1;
}

header#topo .cover .logo {
    position: absolute;
    top: 55px;
    left: calc(50% - 60px);
    z-index: 5;
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 300px;
    border: 4px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, .16);
    transition: .35s;
    background: white;
}

header#topo .cover .logo figure {
    width: 100%;
    height: 100%;
}

header#topo .cover .logo figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
}

header#topo .cover .logo:hover img {
    transform: scale(1.15);
}

header#topo .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 5px;
}

/* TITULOS (AQUI MUDA DE VERDADE) */
header#topo .info h1 {
    font-family: Poppins;
    font-weight: 900;
    color: var(--muted);
}

header#topo .info h2 {
    color: var(--muted);
    font-size: 15px;
    font-family: Poppins;
    font-weight: 400;
    margin-bottom: 10px;
}

header#topo .info .detalhes {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: space-around;
}

header#topo .info .icones {
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

header#topo .info .icones a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    border: 2px solid var(--gray-200);
    border-radius: 100px;
    background: var(--surface);
    color: var(--gray-300);
    font-size: 20px;
    transition: .2s;
}

header#topo .info .icones a:hover {
    color: var(--muted);
    border-color: var(--muted);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .05);
}

header#topo .info .icones i {
    display: flex;
    transition: .2s;
}

header#topo .info .icones a:hover i {
    transform: scale(1.1);
}

header#topo .info .detalhe {
    display: flex;
    flex-direction: row;
    font-size: small;
    gap: 10px;
    padding: 2px 0;
}

header#topo .info .detalhe>div {
    flex-direction: row;
}

header#topo .info .mostrarHorario {
    cursor: pointer;
    flex-direction: initial;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

header#topo .info .horarios {
    display: none;
    font-size: 14px;
    border: 2px solid var(--border);
    padding: 20px;
    border-radius: 20px;
    width: 400px;
    margin: 0 auto 15px auto;
}

header#topo .info .horarios .item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}

header#topo .info .horarios .destaque {
    font-weight: bold;
}

header#topo #menuCategorias {
    padding: 10px;
    background: var(--primary);
}

header#topo #menuCategorias .container {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

header#topo #menuCategorias a.pesquisar {
    color: var(--primary-contrast);
    font-size: 25px;
    padding: 0 10px;
}

header#topo #menuCategorias.fixed {
    position: fixed;
    top: 0;
    padding: 15px 0 15px 0;
    width: 100%;
    z-index: 11;
    box-shadow: 0 1px 10px rgb(0 0 0 / 5%);
}

header#topo .categorias {
    display: flex;
    align-items: center;
    overflow: hidden;
    overflow-x: auto;
    justify-content: center;
}

header#topo .categorias a {
    font-size: 16px;
    color: var(--primary-contrast);
    padding: 5px 20px;
    white-space: nowrap;
    font-weight: 700;
    border-top: 2px solid var(--primary);
}

header#topo .categorias a:hover,
header#topo .categorias a.ativo {
    color: var(--primary-contrast);
    border-top: 2px solid var(--primary-contrast);
}

header#topo .categorias a.ativo {
    font-weight: bold;
}

/* BUSCA */
.form-busca {
    width: 100%;
    padding: 8px 0px 5px 0px;
    display: none;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.form-busca input {
    width: 50%;
    min-height: 40px;
    padding: 9px 10px;
    padding-left: 20px;
    font-size: 16px;
    border: 2px solid var(--text);
    background: var(--surface);
    border-radius: 25px;
}

.form-busca input::placeholder {
    font-weight: 600;
    color: var(--primary);
}
.form-busca span{
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: red;
    margin-top: 5px;
}

/* =========================================================
   LISTA PRODUTOS
   ========================================================= */
main#lista {
    margin-top: 5px;
    padding-bottom: 85px;
}

main#lista h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

main#lista .produtos {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

main#lista .produtos .item a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 10px 15px;
    background: var(--surface);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    border: 2px solid var(--border);
}

main#lista .produtos .item:last-child a {
    margin-bottom: 20px;
}

main#lista .produtos .item a:hover {
    background: var(--soft);
}

main#lista .produtos .item .texto {
    display: flex;
    flex-direction: column;
    padding-right: 10px;
}

main#lista .produtos .item .texto h3 {
    font-size: 16px;
}

main#lista .produtos .item .texto span {
    font-size: 14px;
}

main#lista .produtos .item .texto span.precoPromocao {
    text-decoration: line-through;
}

main#lista .produtos .item .texto span.preco {
    color: var(--success);
    font-size: 18px;
    font-weight: bold;
}

span.estoque {
    font-size: 12px !important;
}

main#lista .produtos .item .fotoProduto {
    display: flex;
}

main#lista .produtos .item figure {
    width: 110px;
    height: 110px;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
}

main#lista .produtos .item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main #desenvolvimento {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 12px;
}

main #desenvolvimento img:hover {
    opacity: 0.7;
}

main #desenvolvimento .btn2 {
    padding: 5px 10px;
    border: 1px solid var(--muted);
    border-radius: 20px;
    width: 300px;
    margin: 10px auto 35px auto;
}

main #desenvolvimento .btn2:hover {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--primary-contrast);
}

/* =========================================================
   FOOTER / CARRINHO
   ========================================================= */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    font-weight: bold;
    color: var(--primary-contrast);
}

footer#carrinho {
    display: flex;
    flex-direction: column;
    text-align: center;
}

footer#carrinho a {
    color: var(--primary-contrast);
    padding: 15px 0;
}

footer#carrinho a.rastreamento {
    background: var(--success);
    padding: 5px;
    margin-bottom: 10px;
    animation: pulse 1s infinite;
}

@-webkit-keyframes pulse {
    0% { -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4); }
    70% { -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0); }
    100% { -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0); }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
        box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
}

footer#carrinho .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

footer#carrinho .container .icone span {
    top: -1.2em;
    left: 0.1em;
    position: relative;
    background: var(--primary-contrast);
    padding: 3px 5px;
    color: var(--primary);
    font-size: 60%;
    border-radius: 3px;
}

/* =========================================================
   PAINEL INFO / CARRINHO
   ========================================================= */
#info {
    width: 100%;
    max-width: 550px;
    position: absolute;
    height: 100%;
    top: 0px;
    right: 0px;
    z-index: 1049;
    background: var(--surface);
    box-shadow: 0 0 30px rgb(0 0 0 / 10%);
    overflow-y: auto;
    padding: 20px;
    display: none;
}

#info a.fechar {
    color: var(--border);
}

#info.mostrar {
    display: block;
    padding: 20px;
}

#meuCarrinho {
    width: 100%;
    max-width: 550px;
    position: fixed;
    height: 100%;
    top: 0px;
    right: 0px;
    display: none;
    z-index: 1049;
    background: var(--surface);
    box-shadow: 0 0 30px rgb(0 0 0 / 10%);
    overflow-y: auto;
}

#meuCarrinho.mostrar {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

#meuCarrinho a.fechar {
    color: var(--border);
}

#meuCarrinho a.fechar:hover {
    color: #c9c6c6;
}

#meuCarrinho h1 {
    text-align: center;
}

#meuCarrinho .lista {
    margin-top: 10px;
    overflow-y: auto;
    font-family: "Poppins", sans-serif;
}

#meuCarrinho .lista {
    display: flex;
    flex-direction: column;
}

#meuCarrinho .lista .item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border);
    padding: 10px 0;
}

#meuCarrinho .lista .item .col {
    display: flex;
    flex-direction: column;
    text-align: right;
    padding: 0 5px;
    min-width: 100px;
}

.lista .item .col .nomeProduto {
    text-align: left;
    font-weight: bold;
}

.lista .item .col .detalheProduto {
    text-align: left;
}

.lista .item .col .complementosProduto,
.lista .item .col .obsProduto {
    padding-top: 10px;
    text-align: left;
}

#meuCarrinho .totalPedido {
    text-align: center;
    margin: 20px 0;
    background: var(--gray-100);
    padding: 10px 0;
    border-radius: 20px;
}

#meuCarrinho .totalPedido span,
#pedido .totalPedido span {
    color: var(--success);
    font-weight: bold;
}

#meuCarrinho em {
    text-align: center;
    padding: 20px 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

#meuCarrinho .carrinhoVazio {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
}

#meuCarrinho .carrinhoVazio p {
    padding: 20px 0;
}

/* VOLTAR */
a.voltar,
a.voltar2 {
    display: table;
    padding: 10px 20px;
    align-items: center;
    background: red;
    color: var(--primary-contrast);
    border-radius: 100px;
    margin: 10px 0;
    font-size: 12px;
    position: fixed;
    top: 0;
    left: 10px;
}

a.voltar i,
a.voltar2 i {
    padding-right: 10px;
}

/* =========================================================
   PRODUTO (MODAL TELA)
   ========================================================= */
#produto {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
    background: var(--surface);
    overflow-y: auto !important;
    display: none;
}

#detalhesProduto .info1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#detalhesProduto .info1 .fotoProduto {
    margin-right: 20px;
}

#detalhesProduto .info1 .fotoProduto figure {
    max-width: 300px;
    max-height: 300px;
    overflow: hidden;
    margin: 0;
}

#detalhesProduto .info1 .fotoProduto figure img {
    max-width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

#detalhesProduto .info1 .descricao {
    max-width: 450px;
    display: flex;
    flex-direction: column;
}

#detalhesProduto .info1 .precoPromocao {
    text-decoration: line-through;
}

#detalhesProduto .info1 .preco {
    color: var(--success);
    font-size: 25px;
    font-weight: bold;
}

#detalhesProduto .info2 {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
}

#detalhesProduto .info2 .tipo {
    margin-bottom: 20px;
}

#detalhesProduto .info2 .tipo .topo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--border);
    border-radius: 10px 10px 0 0;
    color: var(--primary);
}

#detalhesProduto .info2 .tipo .fixed {
    position: sticky;
    top: 50px;
    z-index: 2;
}

#detalhesProduto .info2 h3 {
    padding: 10px 10px 0 10px;
    font-size: 16px;
    line-height: 18px;
}

#detalhesProduto .info2 .tipo .topo span.detalhe {
    display: flex;
    font-size: 14px;
    padding-bottom: 10px;
    padding: 0 10px 10px 10px;
}

#detalhesProduto .info2 .tipo .topo .col2 {
    width: 160px;
    padding-right: 15px;
    text-align: right;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 3px;
}

#detalhesProduto .info2 .tipo .topo .col2 span {
    font-size: 8px;
    padding: 5px 8px;
    background: var(--primary);
    border-radius: 5px;
    color: var(--primary-contrast);
}

#detalhesProduto .info2 .tipo .topo .col2 span.escolhidos span {
    padding: 0;
}

#detalhesProduto .info2 .tipo .topo .col2 i {
    display: none;
    color: var(--success);
    font-size: 20px;
}

#detalhesProduto .info2 .opcoes {
    display: flex;
    justify-content: space-between;
    border: 1px dashed var(--border);
    border-top: 0;
    padding: 10px;
    gap: 10px;
}

#detalhesProduto .info2 .opcoes > div.desc {
    display: flex; justify-content: space-between; align-items: center;
}

#detalhesProduto .info2 .opcoes > img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    cursor: pointer;
}

#detalhesProduto .info2 .opcoes:last-child {
    border-radius: 0 0 10px 10px;
}

#detalhesProduto .info2 .opcoes .nome .preco {
    color: var(--success);
    font-weight: bold;
}

#detalhesProduto .info2 .opcoes input.opcao {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

#detalhesProduto .info2 .opcoes input+label {
    position: relative;
    cursor: pointer;
    padding-left: 60px;
    display: flex;
    align-items: center;
    height: 30px;
}

#detalhesProduto .info2 .opcoes input[type=checkbox]+label::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 26px;
    border-radius: 100px;
    background: #ccc;
    border: solid 2px #cccccc;
    vertical-align: bottom;
}

#detalhesProduto .info2 .opcoes input[type=checkbox]+label::after {
    content: '';
    background-color: var(--surface);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    bottom: 5px;
    transition: .35s;
}

#detalhesProduto .info2 .opcoes input[type=checkbox]:checked+label::after {
    content: '';
    background-color: var(--surface);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 25px;
    bottom: 5px;
}

#detalhesProduto .info2 .opcoes span.detalheOpcao {
    font-size: 13px;
    font-style: italic;
    display: flex;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
}

.imagem-ampliada {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    display: none;
}

.imagem-ampliada img {
    border-radius: 10px;
    max-width: 100%;
    max-height: 100%;
}
.imagem-ampliada button {
    background-color: var(--surface);
    border: 0;
    padding: 10px;
    position: absolute;
    bottom: 12px;
    right: 4px;
    border-radius: 10px;
    cursor: pointer;
}

.imagem-ampliada button.fechar {
    top: 5px;
    bottom: auto;
    padding: 5px 10px;
}

.info2 em,
.observacao2 em {
    text-align: right;
    padding-right: 10px;
    font-size: 14px;
}

#detalhesProduto .info3 {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 30px;
    background: var(--surface);
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    box-shadow: 0 0 30px rgb(0 0 0 / 10%);
}

#detalhesProduto .info3 #precoProduto {
    font-weight: bold;
    font-size: 18px;
    color: var(--success);
}

.qtdeProduto,
.qtdeProdutoOpcao {
    display: flex;
    justify-content: space-around;
    border: 2px solid var(--border);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: var(--surface);
    max-width: 125px;
    height: 40px;
}

#meuCarrinho .qtdeProduto {
    margin-top: 5px;
}

.qtdeProduto button,
.qtdeProdutoOpcao button {
    min-width: 45px;
    border: 0;
    background: none;
    color: var(--muted);
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.qtdeProdutoOpcao button {
    min-width: 45px;
}

.qtdeProdutoOpcao button:disabled, .qtdeProduto button:disabled {
    color: var(--border);
    cursor: not-allowed;
}

.qtdeProduto button i,
.qtdeProdutoOpcao button i {
    font-weight: bold;
    font-size: 18px;
}

#detalhesProduto button.adicionarProduto {
    margin: 0;
}

#detalhesProduto .info3 input,
#meuCarrinho .lista .item input,
#detalhesProduto .info2 .opcoes .qtdeProdutoOpcao input {
    text-align: center;
    min-width: 0;
    display: flex;
    border: 0;
    background: var(--surface);
}

/* =========================================================
   PEDIDO
   ========================================================= */
#pedido .lista {
    display: flex;
    flex-direction: column;
}

#pedido .lista .item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border);
    padding: 10px 0;
}

#pedido .lista .item .col {
    display: flex;
    flex-direction: column;
    text-align: right;
    padding: 0 5px;
}

#pedido .lista .item .col:nth-child(2) {
    min-width: 100px;
}

#pedido .totalPedido {
    text-align: center;
    margin-top: 40px;
    background: var(--gray-100);
    padding: 10px 0;
    border-radius: 20px;
}

#pedido .observacao2 {
    display: flex;
    flex-direction: column;
}

.form {
    width: 100%;
    display: table;
}

.form .campo {
    width: 100%;
    float: left;
}

.form .input75 {
    width: 75%;
}

.form .input50 {
    width: 50%;
}

.form .input25 {
    width: 25%;
}

.form .espaco {
    padding-left: 3%;
}

#detalhesProduto .info2>label,
#pedido .observacao2 label,
.form label {
    margin-top: 10px;
    font-weight: bold;
    float: left;
}

#detalhesProduto .info2>input,
#pedido .observacao2 input,
.form input {
    width: 100%;
    height: 53px;
    border: 2px solid #ccc;
    padding: 0 20px;
    margin-top: 5px;
    font-size: 16px;
    border-radius: 100px;
}

.form select {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 100px;
    background: none;
    height: 53px;
    padding: 0 20px;
    color: var(--muted);
}

input::placeholder {
    color: #dddddd !important;
    opacity: 1;
}

#pedido .entrega {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

#pedido .entrega .radio {
    box-sizing: border-box;
    float: left;
    height: 60px;
    position: relative;
    width: 100%;
}

#pedido .entrega .radio+.radio {
    margin-left: 25px;
}

#pedido .entrega .radio label {
    background: var(--surface) no-repeat center center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #ccc;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

#pedido .entrega .radio label span {
    z-index: 1;
    color: var(--muted);
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    padding: 10px;
}

#pedido .entrega .radio label input[type=radio] {
    all: unset;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#pedido .entrega .radio label input[type=radio]:checked {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

#pedido .entrega .radio label input[type=radio]:checked+span,
#pedido .entrega .radio label:hover span {
    color: var(--primary-contrast);
}

#pedido .mostrarRetirada {
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    background: var(--gray-100);
    margin-top: 20px;
    border-radius: 30px;
}

#pedido .entregaRetirada b {
    padding-bottom: 10px;
}

#pedido .valores {
    margin-top: 20px;
}

#pedido .valores div {
    display: flex;
    justify-content: space-between;
}

#pedido .valores .resumoSubtotalPedido {
    font-weight: 600;
}

#pedido .valores .resumoTotalPedido {
    border-top: 1px dashed var(--border);
    font-weight: 600;
}

#pedido .valores .resumoTotalPedido span {
    color: var(--success);
}

/* =========================================================
   TROCAR PONTOS / PAGAMENTOS
   ========================================================= */
#pedido .trocarPontos {
    display: flex;
    justify-content: center;
}

#pedido .trocarPontos input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

#pedido .trocarPontos input+label {
    position: relative;
    cursor: pointer;
    padding-left: 60px;
    float: left;
}

#pedido .trocarPontos input[type=checkbox]+label::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 26px;
    border-radius: 100px;
    background: #ccc;
    border: solid 2px #cccccc;
    vertical-align: bottom;
}

#pedido .trocarPontos input[type=checkbox]+label::after {
    content: '';
    background-color: var(--surface);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    bottom: 5px;
}

#pedido .trocarPontos input[type=checkbox]:checked+label::after {
    content: '';
    background-color: var(--surface);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 25px;
    bottom: 5px;
    transition: .35s;
}

#pedido .pagamentos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

#pedido .pagamentos input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

#pedido .pagamentos input+label {
    position: relative;
    cursor: pointer;
    padding-left: 60px;
    float: left;
}

#pedido .pagamentos input[type=radio]+label::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 26px;
    border-radius: 100px;
    background: #ccc;
    border: solid 2px #cccccc;
    vertical-align: bottom;
}

#pedido .pagamentos input[type=radio]+label::after {
    content: '';
    background-color: var(--surface);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    bottom: 5px;
}

#pedido .pagamentos input[type=radio]:checked+label::after {
    content: '';
    background-color: var(--surface);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 25px;
    bottom: 5px;
    transition: .35s;
}

#pedido .pagamentos input.troco {
    position: relative;
    opacity: 100;
    z-index: 1;
    border: 1px solid #ccc;
    border-radius: 100px;
    height: 53px;
    padding: 0 20px;
    margin-top: 5px;
}

.pagamentos .item span {
    font-size: 13px;
    color: var(--success);
}

/* =========================================================
   MODAL / CARREGANDO
   ========================================================= */
#modalCarregando {
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: var(--surface);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

#modal {
    width: 100%;
    height: 100%;
    z-index: 1049;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    background-color: rgba(0, 0, 0, 0.2);
}

#modal .container {
    max-width: 600px;
    background: var(--surface);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .16);
    border-top: 4px solid var(--danger);
    padding: 20px;
    margin: 0 20px;
}

#modal .container .titulo i {
    color: var(--danger);
    padding-right: 10px;
}

#modal .container .titulo {
    font-size: 20px;
    padding-bottom: 10px;
}

#modal .container button {
    background: var(--danger);
    margin: 0;
    float: right;
}

/* =========================================================
   RASTREAMENTO
   ========================================================= */
#rastreamento {
    display: flex;
    text-align: center;
    justify-content: space-around;
    border-top: 2px solid #dee2e6;
}

#rastreamento .registro {
    display: block;
    position: relative;
    text-align: center;
    padding-top: 25px;
    margin-right: 0;
}

#rastreamento .registro:before {
    content: "";
    position: absolute;
    height: 20px;
    border-right: 2px dashed #dee2e6;
    top: 0;
}

#rastreamento .registro span {
    display: table;
    margin: 0 auto;
    padding: 5px 20px;
}

#rastreamento .registro span.passou,
#rastreamento .registro span.confirmacao {
    background: #777777;
    border-radius: 20px;
    color: var(--primary-contrast);
}

#rastreamento .registro span.confirmacao {
    background: var(--warning);
    border-radius: 20px;
    color: var(--primary-contrast);
}

/* =========================================================
   PEDIDOS
   ========================================================= */
#pedidoSelecionado {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    background: var(--surface);
    padding: 20px;
    z-index: 6;
}

#meuspedidos .item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

#meuspedidos .item .ver-pedido i:hover {
    opacity: 0.9;
    cursor: pointer;
}

#meuspedidos .item span.pedido {
    display: none;
}

#meuspedidos .item a.btnAconpanhar {
    width: 25px;
    height: 25px;
    background: var(--success);
    color: var(--primary-contrast);
    font-size: 16px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
    margin-left: 10px;
}

#meuspedidos .item a.btnAconpanhar:hover {
    opacity: 0.9;
}

.copiado {
    background: var(--success);
    color: var(--primary-contrast) !important;
    padding: 10px 10px;
    display: none;
    position: fixed;
    width: 100%;
    text-align: center;
    top: 0;
    left: 0;
    z-index: 9999
}

@keyframes fa-blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 0; }
}

.fa-blink {
    -webkit-animation: fa-blink .75s linear infinite;
    -moz-animation: fa-blink .75s linear infinite;
    -ms-animation: fa-blink .75s linear infinite;
    -o-animation: fa-blink .75s linear infinite;
    animation: fa-blink .75s linear infinite;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media only screen and (max-width: 767px) {
    header#topo {
        padding-bottom: 0;
    }

    header#topo .info h1 {
        font-size: x-large;
    }

    header#topo .info .horarios {
        width: 80%;
    }

    header#topo .categorias {
        overflow: hidden;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .form-busca input {
        width: 100%;
    }

    main#lista .produtos {
        grid-template-columns: 1fr;
    }

    main#lista .produtos .item {
        width: 100%;
    }

    #detalhesProduto .info1 {
        flex-direction: column;
        text-align: center;
    }

    #detalhesProduto .info1 .fotoProduto {
        width: 100%;
        margin: 0 0 10px 0;
        display: flex;
        justify-content: center;
    }

    #detalhesProduto .info1 .fotoProduto figure {
        width: auto;
    }

    .containerFinalizar {
        border: 0;
        padding: 0 20px;
    }

    #pedido .pagamentos {
        display: flex;
        flex-direction: column;
    }

    #rastreamento {
        flex-direction: column;
    }
}

@media only screen and (max-width: 450px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .aberto, .fechado {
        position: fixed;
        left: 10px;
        top: 10px;
    }

    header#topo .info .icones {
        gap: 5px;
    }

    header#topo .info .icones a {
        width: 40px;
        height: 40px;
    }

    header#topo .info .mostrarHorario {
        flex-direction: row;
    }

    header#topo .info .horarios {
        width: 90%;
    }

    main#lista .produtos {
        gap: 10px;
    }

    main#lista .produtos .item .texto {
        max-width: 220px;
    }

    #pedido h2 {
        font-size: 20px;
    }

    #pedido .entrega .radio {
        height: 80px;
    }

    #pedido .entrega .radio label,
    #pedido .entrega .radio label input[type=radio]:checked {
        border-radius: 10px;
    }

    .form .input75,
    .form .input50,
    .form .input25 {
        width: 100%;
        padding-left: 0;
    }

    .imagem-ampliada {
        position: fixed;
        top: 50%;
        left: 25%;
        transform: translate(-17%, -50%);
        max-width: 100%;
        max-height: 100%;
        display: none;
    }

    #detalhesProduto .info2 .opcoes > div.desc {
        flex-direction: column;
        gap: 5px;
        align-items: end;
    }

    #detalhesProduto .info2 .opcoes > div.desc .nome {
        width: 100%;
    }
}

/* =========================================================
   COUNTDOWN / BOX (SEU BLOCO FINAL)
   ========================================================= */
.box {
    padding: .8rem 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#days, #hours, #seconds, #minutes {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 600;
    background-color: var(--danger);
    color: var(--primary-contrast);
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    flex: 1;
}

.box span {
    font-size: 1rem;
    display: block;
}

.box p {
    margin: 0;
    font-size: 1rem;
}

.pulsar {
    transform: scale(1);
    animation: pulse2 2s infinite;
}

@keyframes pulse2 {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(7, 124, 34, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(7, 124, 34, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(7, 124, 34, 0);
    }
}
/* ============================
   TEMA AZUL MARINHO (LOGO)
   Cole no FINAL do seu CSS
   ============================ */

:root{
  /* azul marinho (principal) */
  --primary: #0B1F3B;           /* ajuste aqui se quiser mais claro/escuro */
  --primary-contrast: #ffffff;

  /* variações */
  --accent: #1E4FD6;            /* azul mais vivo p/ detalhes (opcional) */
}

/* tudo que era preto vira azul marinho */
.btn,
.btnSair,
.btnFidelidade,
footer,
header#topo #menuCategorias,
#detalhesProduto .info2 .tipo .topo .col2 span{
  background: var(--primary) !important;
  color: var(--primary-contrast) !important;
}

/* categorias (texto branco e borda top consistente) */
header#topo .categorias a{
  color: var(--primary-contrast) !important;
  border-top: 2px solid var(--primary) !important;
}
header#topo .categorias a:hover,
header#topo .categorias a.ativo{
  color: var(--primary-contrast) !important;
  border-top: 2px solid var(--primary-contrast) !important;
}

/* botão de busca (ícone) no menu */
header#topo #menuCategorias a.pesquisar{
  color: var(--primary-contrast) !important;
}

/* bolinha do contador do carrinho (mantém branco) */
footer#carrinho .container .icone span{
  background: #ffffff !important;
  color: var(--primary) !important;
}

/* spans/badges escuros (ex: pequenos selos) */
#detalhesProduto .info2 .tipo .topo .col2 span{
  background: var(--primary) !important;
  color: var(--primary-contrast) !important;
}
/* ============================
   AJUSTES: Banner azul marinho + ícones amarelos (logo)
   Cole no FINAL do CSS
   ============================ */

:root{
  --navy: #0B1F3B;      /* azul marinho (principal) */
  --logo-yellow: #F2C14E; /* amarelo da logo (ajuste se precisar) */
}

/* 1) FUNDO ROSA DO BANNER (cover) -> AZUL MARINHO */
header#topo .cover{
  background: var(--navy) !important;
  background-image: none !important; /* se estiver vindo uma imagem rosa */
}

/* 2) BOLINHA EM VOLTA (círculo dos ícones) -> BORDA AZUL MARINHO */
header#topo .info .icones a{
  border-color: var(--navy) !important;
}

/* 3) ÍCONE DO INSTAGRAM -> AMARELO (igual logo)
      e o BOTÃO/ÍCONE DE INFO também -> AMARELO */
header#topo .info .icones a i.fa-instagram,
header#topo .info .icones a i.fa-info,
header#topo .info .icones a i.fa-circle-info{
  color: var(--logo-yellow) !important;
}

/* garante que não fique cinza no hover */
header#topo .info .icones a:hover i.fa-instagram,
header#topo .info .icones a:hover i.fa-info,
header#topo .info .icones a:hover i.fa-circle-info{
  color: var(--logo-yellow) !important;
  transform: scale(1.1);
}
/* ======================================
   FORÇAR AMARELO DA LOGO (ÍCONES + TÍTULO)
   ====================================== */

:root{
  --navy: #0B1F3B;        /* azul marinho da logo */
  --logo-yellow: #F2C14E; /* amarelo da logo */
}

/* 1️⃣ FUNDO DO BANNER (onde estava rosa) */
header#topo .cover{
  background: var(--navy) !important;
}

/* 2️⃣ TÍTULO "Chega Aí - Delivery" EM AMARELO */
header#topo .info h1{
  color: var(--logo-yellow) !important;
}

/* 3️⃣ ÍCONES (INSTAGRAM + INFO) — FORÇAR AMARELO */
header#topo .info .icones a{
  color: var(--logo-yellow) !important;
  border-color: var(--navy) !important;
}

/* força o <i> (font-awesome) */
header#topo .info .icones a i{
  color: var(--logo-yellow) !important;
}

/* 4️⃣ NÃO DEIXAR FICAR CINZA NO HOVER */
header#topo .info .icones a:hover{
  color: var(--logo-yellow) !important;
  border-color: var(--navy) !important;
}

header#topo .info .icones a:hover i{
  color: var(--logo-yellow) !important;
  transform: scale(1.1);
}

/* 5️⃣ CASO ALGUM ÍCONE TENHA COR INLINE (último recurso) */
header#topo .info .icones a i[class*="fa"]{
  color: var(--logo-yellow) !important;
}
.footer{
  position: static !important;   /* garante que NÃO fica fixo/sticky */
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100%;

  margin-top: -10px;              /* respiro do bloco acima */
  background-color: #0b1c2d;
  padding: 16px 14px; 

  border-top: 0px solid rgba(255,255,255,0.08); /* separação sutil */
  border-radius: 14px 14px 0 0;  /* opcional: fica mais bonito no mobile */
}
.footer__container{
  text-align: center;
}
.footer{
  position: static !important;

  margin-top: 0px;        /* quase colado */
  padding: 8px 10px;      /* 🔥 bem fino */

  background-color: #0b1c2d;

  border-top: 1px solid rgba(255,255,255,0.05);
  border-radius: 0;       /* ❌ remove borda grande */
}
.footer p{
  margin: 0px 0;          /* remove espaçamento interno dos textos */
  font-size: 11px;        /* mais compacto */
  line-height: 1.3;
}
