* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}


.main-container {
  padding: 5px;
}

.cards {
  margin-top: 25px;
  justify-content: center;
}

.card {
  margin: 10px;
  padding: 20px;
  height: 120px;
  border-radius: 10px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.2s;
  width: 100%;
}


.card:hover {
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
  transform: scale(1.01);
}


.card-title {
  grid-row: 2/4;
  font-weight: 300;
  color: #fff;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}



.link-card {
  text-decoration: none;
}



.carrinho {
  margin-right: 10px;
}


/* CARD BACKGROUNDS */

/* Paleta de praia (oceano / areia / coral / palmeira) */
.azul {
  background: radial-gradient(#46d2e3, #0E9CA6);
}

.rosa {
  background: radial-gradient(#ffb39c, #ff7a59);
}

.azul-escuro {
  background: radial-gradient(#1aa6b3, #0B5A63);
}

.verde {
  background: radial-gradient(#7fe3c8, #29b89b);
}

.roxo {
  background: radial-gradient(#8fc0ef, #4f7fc4);
}

.vermelho {
  background: radial-gradient(#ff9a76, #ef5d3a);
}


.verde-escuro {
  background: radial-gradient(#5fc899, #2e8b6b);
}


.laranja {
  background: radial-gradient(#ffc870, #F2A93B);
}

.amarelo {
  background: radial-gradient(#ffe08a, #efb43f);
}





.overlay {
  position: fixed;
  top: 60px;
  right: 10px;
  visibility: hidden;
  opacity: 0;
  background: #fcfbeb;
  width: 320px;
  max-height: 500px;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}


.popup {
  margin: 5px auto;
  padding: 10px;

}



.popup .close {
  position: absolute;
  top: 0;
  right: 5px;
  transition: all 200ms;
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.popup .close:hover {
  color: #c23232;
}


.linha {
  margin: 5px 0px;
}

.titulo-popup {
  font-size: 17px;
  font-weight: 500;
}


.conteudo-popup {
  font-size: 15px;
}



.rodape {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: #ededed;
  text-align: center;
  font-size: 12px;
  color: #363636;
  z-index: 300;
}


.link-neutro {
  color: #363636;
  text-decoration: none;
}

.link-neutro2 {
  color: #ffffff;
  text-decoration: none;
}


.valor-item {
  font-size: 12px;
  color: #025709;
}

.valor-item-maior {
  font-size: 13px;
  color: #025709;
}


.titulo-itens {
  margin-bottom: 8px;
  background: #ffc93f;
  padding: 2px;
  color: #000000;
}

.titulo-itens-pizza {
  font-size: 14px;
  background: #ffbc14;
  padding: 2px;
  width: 100%;
  color: #000000;
}


.total {
  text-align: right;
  margin-right: 5px;
  margin-top: 8px;
  font-size: 14px;
}


.direita {
  position: absolute;
  right: 30px;
}


.abaixo {
  position: absolute;
  bottom: 0px;
  width: 100%;
}



.titulo-itens-2 {
  margin-top: 12px;
  margin-bottom: 8px;
  background: #f2f0f0;
  padding: 5px;
}


.titulo-descricao-item {
  font-weight: 400;
  font-size: 14px;

}


.descricao-item {
  font-size: 13px;
  margin-top: 10px;
}


.conteudo-descricao-item {
  margin: 0px 15px;
}


.destaque {
  padding: 10px;
  margin-top: 65px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  text-align: center;
  font-weight: 400;
}


.destaque-qtd {
  padding: 10px;
  margin-top: 10px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-weight: 400;
}



.total-pedido {
  padding: 10px;
  margin-top: 10px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  bottom: 50px;
  width: 100%;
  background: #FFF;
}


.botao-carrinho {
  border-radius: 0px;
  height: 45px;
}

.area-pedidos {
  position: fixed;
  bottom: 0;
  width: 100%;

}




.overlay2 {
  position: fixed;
  bottom: 0px;
  visibility: hidden;
  opacity: 0;
  background: #fcfbeb;
  width: 100%;
  height: auto;
  z-index: 1;

  --color-light: white;
  --color-dark: #212121;
  --color-signal: #fab700;

  --color-background: var(--color-light);
  --color-text: var(--color-dark);
  --color-accent: var(--color-signal);

  --size-bezel: .5rem;
  --size-radius: 4px;

  line-height: 1.4;

  font-family: 'Inter', sans-serif;
  font-size: calc(.6rem + .4vw);
  color: var(--color-text);
  background: var(--color-background);
  font-weight: 300;
  padding: 0 calc(var(--size-bezel) * 3);
}

.overlay2:target {
  visibility: visible;
  opacity: 1;
}


.popup2 {
  margin: 5px auto;
  padding: 10px 0px;

}



.popup2 .close {
  position: absolute;
  top: 0;
  right: 5px;
  transition: all 200ms;
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.popup2 .close:hover {
  color: #c23232;
}





.card-add-carrinho {
  background: var(--color-background);
  padding: 10px;
  margin-top: 15px;
  border-radius: var(--size-radius);
  border: 3px solid var(--color-shadow, #8c8b8b);
  box-shadow: .5rem .5rem 0 var(--color-shadow, #8c8b8b);

}


.group {
  position: relative;
  margin-bottom: 25px;
}

.input {
  font-size: 14px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #757575;
}

.input:focus {
  outline: none;
}

/* LABEL ======================================= */
.label {
  color: #999;
  font-size: 15px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

/* active state */
.input:focus~label,
input:valid~label {
  top: -5px;
  font-size: 10px;
  color: #5264AE;
}



.imagem-produto {
  width: 300px;
  margin-top: 10px;
}


.carrinho-qtd {
  text-align: right;
  background: #ededed;
  padding: 10px;
  margin-top: 10px;
  font-size: 0;

}

.itens-carrinho-qtd {
  position: absolute;
  left: 30px;
  display: inline-block;
  font-size: 18px;
}

.itens-carrinho-qtd-adc {
  position: absolute;
  left: 60px;
  display: inline-block;
  font-size: 15px;
}


.menos-mais {
  width: 35px;
  height: 32px;
  background: #cecece;
  text-align: center;
  display: inline-block;
  font-size: 17px;
}

.qtd-item-carrinho {
  width: 35px;
  height: 32px;
  background: #fff;
  text-align: center;
  display: inline-block;
  font-size: 17px;
}


.valor-carrinho-it {
  width: 90px;
  height: 32px;
  background: #fff;
  text-align: center;
  display: inline-block;
  font-size: 17px;
  color: #0a8f17;
}


.nome-produto {
  font-weight: 300;
}




.overlay-excluir {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  background: #ffeae6;
  width: 300px;
  height: auto;
  z-index: 1;
}



.nome_user {
  font-size: 18px;
}

.telefone_user {
  font-size: 16px;
  color: #335a9c;
  font-weight: bold;

}

.botao_sim {
  width: 100%;
  background-color: green;
  padding: 10px;
  color: #FFF;
  border: 0px;
  border-radius: 0px;
}


.botao_nao {
  width: 100%;
  background-color: red;
  padding: 10px;
  color: #FFF;
  border: 0px;
  border-radius: 0px;
}




.badge2 {
  position: absolute;
  display: inline-block;
  min-width: 10px;
  padding: 4px 9px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f6f2f8;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #242424;
  border-radius: 5px;
  left: 0;
  top: -10px;
  z-index: 200;



}



.ocultar {
  display: none;
}




@media (max-width: 768px) {
  .card {
    padding: 5px;
    min-height: 70px;
    margin: 0px 0px 20px 0px;
  }

  .card-title {
    font-size: 18px;
  }

  .cards {
    margin-left: 0px;
    margin-right: 0px;
  }

  .ocultar-mobile {
    display: none;
  }


  .imagem-produto {
    width: 100%;
    padding: 0px 10px;
  }



  .margin_top_negativa {
    margin-top: 0px !important;
  }



}


.cardTarefas {
  margin-bottom: 10px;
  margin-left: 9px;
}



@media (min-width: 768px) {



  .cardTarefas {
    margin-bottom: 10px;
    margin-left: 5px;
  }

  .cards {
    margin-left: 100px;
    margin-right: 100px;
  }

  .ocultar-banner-web {
    display: none;

  }



  .cards {
    margin-top: 65px;
  }

  .margin_top_web {
    margin-top: 30px;
  }




}


.subtitulo-item {
  font-weight: 500;
  font-size: 13px;
}

.subtitulo-item-menor {
  font-weight: 500;
  font-size: 11px;
}


.ingredientes {
  font-size: 11px;
}


.avancar-pgto {
  font-size: 13px;
}

.previsao_entrega {
  font-size: 11px;
  margin-bottom: 10px;
}


.total-finalizar {
  position: fixed;
  bottom: 0;
  width: 100%;

}


.sabores {
  text-align: center;
  padding: 5px;
  justify-content: center;
}

.sabores-itens {
  border: 1px solid #a6a6a6;
  border-radius: 10px;
  padding: 5px;
  margin: 2px;
  font-size: 11px;
}


.ocultar_img {
  display: none;
}

.ocultar_dasktop {
  display: none;
}

.ocultar_mobile {
  display: inline;
}

.padding_input{
      padding-left:30%; 
      padding-right:30%;
    }

@media (max-width: 760px) {
  .ocultar_img {
    display: inline;

  }

  .ocultar_dasktop {
    display: inline;
  } 
  
    .ocultar_mobile {
      display: none;
    }

    .padding_input{
      padding-left:30px; 
      padding-right:30px;
    }
  
}



.status-delivery-topo{
  flex: 1;
  text-align: right;
  margin-right: 8px;
}

.status-delivery-topo span{
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 9px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

@media (max-width: 430px){
  .status-delivery-topo span{
    font-size: 10px;
    padding: 5px 7px;
  }
}



.status-fechado{
  filter: brightness(0.9);
}

.status-pausado{
  animation: pulse 1.5s;
}

@keyframes pulse{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.05); }
  100%{ transform: scale(1); }
}

/* ============================================================
   BAR DA PRAIA - Identidade visual (praia: turquesa/areia/azul-mar)
   ============================================================ */
:root{
  --it-red:    #0E9CA6;  /* turquesa do mar (cor de destaque) */
  --it-red-dk: #0B5A63;  /* turquesa profundo */
  --it-gold:   #F2A93B;  /* areia / pôr do sol */
  --it-dark:   #0B2A33;  /* azul profundo */
}

/* Cor de destaque coerente em todo o site */
.text-primary{ color: var(--it-red) !important; }

/* Barra de navegação topo */
.navbar.bg-light{
  background: linear-gradient(90deg,#0B2A33 0%, #0E5A63 100%) !important;
  border-bottom: 3px solid var(--it-gold);
}
.navbar-brand small span{ color:#fff !important; font-weight:700; letter-spacing:.5px; }

/* Títulos de seção  ~~~~ CATEGORIAS ~~~~  */
.tpsection__sub-title{
  color: var(--it-red) !important;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.tpsection__sub-title::after{
  content:"";
  display:block;
  width:70px; height:3px;
  margin:8px auto 0;
  background: var(--it-gold);
  border-radius:3px;
}

/* Título "Nosso Cardápio" (Pacifico) */
.section-title span{ color: var(--it-red) !important; }

/* Cards de categoria e produto: cantos arredondados + hover elegante */
.category__item,
.tpbrandproduct__item,
.tpblog__item{
  border-radius: 14px !important;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.category__item:hover,
.tpbrandproduct__item:hover{
  transform: translateY(-4px);
  box-shadow: rgba(192,57,43,0.22) 0px 8px 22px !important;
}

/* Imagens de categoria (desktop) com leve borda dourada */
.imagem-cat{ border-radius: 12px; }
.imgem-cat-div img{ border-radius: 12px; }

/* Nome dos produtos/categorias em destaque */
.tpbrandproduct__contact span:first-child{ font-weight:700; color: var(--it-dark); }

/* Preços com a cor da marca */
.tpproduct__price span{ color: var(--it-red) !important; font-weight:700; }
.tpproduct__price del{ color:#9aa0a6 !important; }

/* Estrelas (avaliação) em dourado */
.tpproduct__rating .icon-star,
.tpproduct__rating i{ color: var(--it-gold) !important; }

/* Selo de desconto (promoções) */
.bage__discount{
  background: var(--it-red) !important;
  color:#fff !important;
  border-radius: 6px;
}

/* Barra de busca mais agradável */
#buscar{
  border-bottom: 2px solid var(--it-red) !important;
  padding: 6px 4px;
}
.icon-search{ color: var(--it-red); }

/* Abas (Categorias/Combos/Promoções) */
.nav-pills .titulo_icones{ color: var(--it-dark) !important; font-weight:700; }

/* Rodapé */
.rodape{
  background:#1A1A1A;
  color:#eee;
}
.rodape a, .rodape .link-neutro{ color:#eee !important; }

/* Botão de scroll-top e botão instalar com a cor da marca */
.scroll-top{ background: var(--it-red) !important; }
#botao-instalar{ background: var(--it-red) !important; }


/* ============================================================
   BAR DA PRAIA v2 — refinamento profissional do cardápio
   ============================================================ */
body{
  font-family:'Poppins',sans-serif !important;
  background:#faf6f3 !important;
  color:#2b2b2b;
}
.ff-secondary{ font-family:'Pacifico',cursive !important; }

/* ---- Navbar ---- */
.navbar.bg-light{
  background:linear-gradient(90deg,#161210 0%, #2b1110 100%) !important;
  border-bottom:3px solid var(--it-gold);
  padding:.45rem 0;
  box-shadow:0 4px 14px rgba(0,0,0,.18) !important;
}
.navbar-brand img{ filter:drop-shadow(0 2px 5px rgba(0,0,0,.45)); }
.navbar-brand small span{ color:#fff !important; font-weight:700; letter-spacing:.4px; }
.status-delivery-topo span{
  font-weight:600; border-radius:30px; padding:5px 13px;
  box-shadow:0 2px 8px rgba(0,0,0,.25);
}

/* ---- Títulos de seção ---- */
.tpsection__sub-title{
  font-family:'Poppins',sans-serif !important;
  font-weight:800 !important;
  font-size:24px !important;
  color:#1a1a1a !important;
  letter-spacing:.4px; text-transform:uppercase;
  position:relative; display:inline-block; padding-bottom:14px; margin-bottom:6px;
}
.tpsection__sub-title::after{
  content:""; position:absolute; left:50%; bottom:0; transform:translateX(-50%);
  width:64px; height:3px; border-radius:3px;
  background:linear-gradient(90deg,var(--it-red),var(--it-gold));
}
.section-title span{ font-family:'Pacifico',cursive !important; color:var(--it-red) !important; }

/* ---- Abas (Categorias / Combos / Promoções) ---- */
.nav-pills .nav-item a{ border-radius:14px; transition:.2s ease; padding-top:6px; }
.nav-pills .nav-item a:hover{ background:rgba(192,57,43,.06); }
.nav-pills .titulo_icones{ color:#1a1a1a !important; font-weight:700; }
.subtitulo_icones{ color:#9a9a9a !important; }

/* ---- Busca em formato pílula ---- */
.padding_input{ max-width:680px; margin-left:auto !important; margin-right:auto !important; }
#buscar{
  border:1px solid #e6dcd6 !important; border-radius:30px !important;
  background:#fff; padding:12px 18px !important;
  box-shadow:0 2px 10px rgba(0,0,0,.05); margin-top:0 !important;
}
#buscar:focus{ border-color:var(--it-red) !important; box-shadow:0 0 0 3px rgba(192,57,43,.12); }

/* ---- Cards de categoria (mobile / swiper) ---- */
.category__item{
  height:230px !important; background:#fff !important;
  border-radius:16px !important; overflow:hidden; padding:0 !important;
  box-shadow:0 6px 18px rgba(0,0,0,.08) !important;
  border:1px solid #f1e9e5;
}
.category__item .quadrado,.category__item .fix{ height:150px !important; width:100%; }
.category__item .fix img{ width:100% !important; height:150px !important; object-fit:cover !important; }
.category__content{ padding:10px 12px 8px; }
.category__content h6{ font-weight:700; }

/* ---- Cards de categoria (desktop) e produtos horizontais ---- */
.tpbrandproduct__item{
  background:#fff !important; border-radius:16px !important;
  box-shadow:0 6px 18px rgba(0,0,0,.07) !important;
  padding:12px !important; align-items:center; border:1px solid #f1e9e5;
  transition:transform .22s ease, box-shadow .22s ease;
}
.tpbrandproduct__item:hover{ transform:translateY(-4px); box-shadow:0 12px 26px rgba(192,57,43,.18) !important; }
.imagem-cat,.imgem-cat-div img{
  width:112px !important; height:112px !important;
  object-fit:cover !important; border-radius:12px !important;
}
.tpbrandproduct__img img{ width:150px !important; height:150px !important; border-radius:12px !important; object-fit:cover !important; }
@media (max-width:400px){ .tpbrandproduct__img img{ width:120px !important; height:120px !important; } }
.tpbrandproduct__contact{ padding-left:8px; }
.tpbrandproduct__contact span:first-child,
.tpbrandproduct__product-title{ font-weight:700 !important; color:#1f1f1f !important; font-size:15px !important; }
.subtitulo_itens{ color:#9a9a9a !important; }

/* ---- Preço em pílula ---- */
.tpproduct__price span{
  display:inline-block; background:rgba(192,57,43,.08);
  color:var(--it-red) !important; font-weight:700;
  padding:3px 11px; border-radius:20px; font-size:14px;
}
.tpproduct__price del{ background:none !important; color:#a7adb3 !important; font-weight:400; padding:0 0 0 6px; }

/* ---- Estrelas douradas ---- */
.tpproduct__rating .icon-star,.tpproduct__rating i{ color:var(--it-gold) !important; }

/* ---- Combos (cards verticais) ---- */
.tpblog__item{ background:#fff; border-radius:16px; box-shadow:0 6px 18px rgba(0,0,0,.07); overflow:hidden; padding-bottom:12px; }
.tpblog__item span:first-child{ font-weight:700; }

/* ---- Selo de desconto ---- */
.bage__discount{ background:var(--it-red) !important; color:#fff !important; border-radius:8px; padding:3px 9px; font-weight:700; }

/* ---- Banner / slider arredondado ---- */
.flexslider,.flexslider .slides img,.carousel-item img{ border-radius:16px; }
#slider{ padding:0 4px; }

/* ---- Rodapé ---- */
.rodape{ background:#161210 !important; color:#eee !important; padding:20px 16px; }
.rodape a,.rodape .link-neutro{ color:#eee !important; }

/* ---- Botões utilitários ---- */
.scroll-top,#botao-instalar{ background:var(--it-red) !important; border-radius:12px; }

/* ---- Imagem aberto/fechado flutuante ---- */
.img-aberto{ filter:drop-shadow(0 4px 10px rgba(0,0,0,.25)); }


/* ---- Ajustes finos cards categoria (evitar corte de texto) ---- */
.category__item .category__title{ display:none !important; margin:0 !important; }
.category__content h6{ font-size:14px !important; margin:0 0 2px !important; color:#1a1a1a !important; }
.category__content p{ margin:0 !important; line-height:1.3; }
.category__item{ height:auto !important; min-height:228px; }
.category__item .category__content p:last-child{ color:var(--it-red) !important; font-weight:600; }

/* ============================================================
   Campo de busca — tema oriental (Brisa do Mar)
   ============================================================ */
.padding_input{ max-width:640px; margin:0 auto 28px !important; padding:0 12px; }

.busca-oriental{
  display:flex; align-items:center; gap:6px;
  background:#fffdf9;
  border:2px solid #e0cfa0;                 /* dourado claro */
  border-radius:16px;
  padding:6px 14px 6px 16px;
  position:relative;
  box-shadow:0 8px 22px rgba(123,16,16,.10);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.busca-oriental:focus-within{
  border-color:var(--it-red);
  box-shadow:0 8px 26px rgba(192,57,43,.18);
}
/* selo vermelho lateral (estilo carimbo japonês) */
.busca-oriental::before{
  content:""; position:absolute; left:0; top:9px; bottom:9px; width:5px;
  background:linear-gradient(180deg,var(--it-red),var(--it-red-dk));
  border-radius:0 5px 5px 0;
}
.busca-oriental__icone{ color:var(--it-red); font-size:18px; display:flex; padding-left:4px; }

/* input limpo dentro do wrapper (sobrescreve regras antigas) */
.busca-oriental #buscar,
#buscar{
  flex:1 1 auto; width:auto;
  border:none !important; background:transparent !important;
  outline:none !important; box-shadow:none !important;
  font-family:'Poppins',sans-serif; font-size:16px;
  padding:10px 6px !important; margin:0 !important; color:#2b2b2b;
  border-radius:0 !important;
}
#buscar::placeholder{ font-family:'Shippori Mincho',serif; color:#b8a885; opacity:1; font-style:normal; }

/* caracteres japoneses decorativos (検索 = "buscar") */
.busca-oriental__jp{
  font-family:'Yuji Syuku',serif;
  color:var(--it-gold);
  font-size:22px; line-height:1;
  padding-left:12px; border-left:1px solid #efe6d2;
  user-select:none;
}

/* ============================================================
   Letras orientais — nome da marca e títulos de seção
   ============================================================ */
/* Nome "Brisa do Mar" no topo em estilo oriental (com fallback p/ acentos) */
.navbar-brand small span{
  font-family:'Yuji Syuku','Shippori Mincho',serif !important;
  font-size:19px !important; letter-spacing:1px; font-weight:400;
}

/* Títulos de seção em serifa oriental */
.tpsection__sub-title{
  font-family:'Shippori Mincho',serif !important;
  font-weight:700 !important;
}
/* "Nosso Cardápio" / "Pedido Mesa/Balcão" em serifa oriental */
.section-title span{
  font-family:'Shippori Mincho',serif !important;
  font-weight:700 !important;
}

/* Acento japonês acima/abaixo dos títulos (pincelada dourada) */
.jp-accent{
  display:block;
  font-family:'Yuji Syuku',serif;
  color:var(--it-gold);
  font-size:15px; letter-spacing:5px; line-height:1;
  margin-bottom:3px;
}

/* ============================================================
   Navbar — logo oficial centralizada (Brisa do Mar)
   ============================================================ */
.navbar-it__grid{
  display:grid !important;
  grid-template-columns:1fr auto 1fr;
  align-items:center; width:100%; gap:6px;
}
.navbar-it__side{ display:flex; align-items:center; }
.navbar-it__left{ justify-self:start; }
.navbar-it__right{ justify-self:end; }
.navbar-it__logo{
  justify-self:center; display:flex; flex-direction:column; align-items:center;
  padding:2px 0; text-decoration:none;
}
.navbar-it__logo img{
  height:66px; width:auto; border-radius:12px;
  filter:drop-shadow(0 2px 7px rgba(0,0,0,.45));
}
.navbar-it__mesa{
  color:#fff !important; font-size:12px; font-weight:600; margin-top:3px;
  font-family:'Shippori Mincho',serif;
}
/* status um pouco menor para caber ao lado da logo grande */
.navbar-it__left .status-delivery-topo span{ font-size:12px; padding:4px 10px; }
@media (max-width:420px){
  .navbar-it__logo img{ height:56px; }
  .navbar-it__left .status-delivery-topo span{ font-size:10px; padding:3px 7px; }
}
