/* Corpo da pagina delivery */
:root {
  --bg: #f6f7fb;
  --card: #fff;
  --accent: #2b6cb0;
  --muted: #6b7280;
  --radius: 12px;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
}

html, body {
  font-family: "Inter", system-ui, sans-serif;
  margin: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("../imagem/fundo-tematico-lanche.jpeg");
    
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  color: #111;
  line-height: 1.5;
}

/* Container responsivo */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 16px;
  box-sizing: border-box;
  
 
}

/* Cabeçalho flexível */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}



/* Texto 3D */



h1 {
    
    
    
    margin-bottom: 10px;
    text-align: center;
    
    
    
    
    
   
    color: #000;


text-shadow: 0 5px 0 #ccc,
0 2px 0 #c9c9c9,
0 3px 0 #bbb,
0 4px 0 #b9b9b9,
0 5px 0 #aaa,
0 6px 1px rgba(0,0,0,.1),
0 0 5px rgba(0,0,0,.1),
0 1px 3px rgba(0,0,0,.3),
0 3px 5px rgba(0,0,0,.2),
0 5px 10px rgba(0,0,0,.25),
0 10px 10px rgba(0,0,0,.2),
0 20px 20px rgba(0,0,0,.15);


}
/* Texto 3D END */




/* link */


a {
    display: inline-block;
    padding: 5px 10px;
    background: linear-gradient(135deg, #2b6cb0, #1a4a8b);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

a::after {
    
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
    transition: all 0.5s ease;
}

a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

a:hover::after {
    left: 125%;
}




hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #334155, transparent);
    margin: 0px 0;
}




/* Navegação */
nav a {
  margin-right: 8px;
  padding: 8px 12px;
  background: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

nav a:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}



a.ativo-pagina {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
   box-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}



.ativo-pagina:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
 box-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}


/* 🔹 Destaque do link ativo (página atual) */
 a.ativo {
  background: var(--accent);
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}




/* Cards */
.card {
  background: var(--card);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 12px;
  transition: transform 0.2s;
  font-size: 13px;
}


/* Títulos */
h2, h3 {
  margin-top: 0;
  color: var(--accent);
}

/* Formulários */
input, select, button {
  font-size: 1rem;
  padding: 8px;
  border-radius: var(--radius);
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.2s;
}

input:focus, select:focus, button:focus {
  border-color: var(--accent);
}

button {
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background: #1e4e8c;
  transform: scale(1.03);
}

/* Imagens */
img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Layout responsivo */
@media (max-width: 900px) {
  .container {
    padding: 12px;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav a {
    margin: 4px 4px 4px 0;
    display: inline-block;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }
  .card {
    padding: 12px;
  }
  nav a {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
  button {
    width: 100%;
  }
}








/* Cards startus estabelecimento */
.card-startus-estabelecimento {
  background-color: #fff;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 12px;
  transition: transform 0.2s;
  font-size: 13px;
}

@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }
 .card-startus-estabelecimento {
    padding: 12px;
  }
}




/* Corpo da pagina delivery END*/


/* Foco formulario*/

  
  select:focus,
  textarea:focus,
  input:focus {
  font-weight: bold;
    color: #fff;
    background: #9370DB;
   
    outline: none; /* Remove a borda padrão do navegador */
border: 0px solid blue; /* Borda azul */
box-shadow: 0 0 10px red; /* Sombra azul à volta da borda */
  }
  
/* Foco formulario END*/



/* Botao voltar ao topo*/

    #btnTopo {
    position: fixed;
    left: 15px;
    top: 80%;
    transform: translateY(-50%) translateX(-20px);
    background: rgba(0, 0, 0, 0.50);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 9999;
}

#btnTopo:hover {
    background: rgba(0, 0, 0, 0.60);
}


/* Botao voltar ao topo END*/


/* Model */
.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}
.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}
@media (max-width: 600px) {
    .modal-content { width: 95%; padding: 15px; }
}
/* Model END*/


 
/*imagem logo*/
         
         /* Estilo padrão (para computadores) */
.tamanho-pc-celular {
  width:80%;
   height: 150px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  transition: transform 0.3s;
  
   transform: perspective(800px) rotateX(6deg);
  transform-origin: center;
  transition: transform 300ms ease, box-shadow 300ms ease;
  cursor: default;

  /* sombra geral do bloco para destacar */
  box-shadow:
    0 10px 25px rgba(3, 10, 24, 0.55),
    0 2px 6px rgba(0,0,0,0.25) inset;
  
}


.link-fundo {
  
}



/* 📱 Quando for tela de celular (até 600px de largura) */
@media (max-width: 600px) {
  .tamanho-pc-celular {
    width: 90%;      /* ocupa quase toda a tela */
     height: 150px;
    border-radius: 8px;
  }
}
      
/*imagem logo END*/
   
   
   
 /*imagem redonda logo*/
.imagem-redonda {
    display: flex;
    justify-content: center;   /* Centraliza horizontalmente */
    align-items: center;       /* Centraliza verticalmente */
    margin-top: -100px;
    margin-bottom: 0px;
      position: relative;        /* Define base para posicionamento absoluto */
}

.imagem-redonda img {
    width: 150px;
    height: 150px;
    border-radius: 50%;        /* Deixa a imagem redonda */
    object-fit: cover;          /* Corta e ajusta imagem sem distorcer */
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

/*imagem redonda logo END*/



/*nome titulo 3D*/
        
        
        /* CSS - título 3D chamativo */
.titulo-estabelecimento {
    
    width: 90%;
  height: auto;
  display: inline-block;
  margin: 0;
  padding: 12px 20px;
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 4.5vw, 3.2rem); /* responsivo */
  color: #ffffff;
  background: linear-gradient(180deg, #1e90ff 0%, #1157c6 100%);
  border-radius: 12px;
  position: relative;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;

  /* perspectiva para efeito 3D */
  transform: perspective(800px) rotateX(6deg);
  transform-origin: center;
  transition: transform 300ms ease, box-shadow 300ms ease;
  cursor: default;

  /* sombra geral do bloco para destacar */
  box-shadow:
    0 10px 25px rgba(3, 10, 24, 0.55),
    0 2px 6px rgba(0,0,0,0.25) inset;
}

/* Extrusão 3D feita com camadas de text-shadow */
.titulo-estabelecimento {
  text-shadow:
    0 1px 0 rgba(255,255,255,0.12),   /* leve brilho superior */
    0 2px 0 rgba(0,0,0,0.12),
    0 3px 0 rgba(0,0,0,0.12),
    0 4px 0 rgba(0,0,0,0.12),
    0 5px 0 rgba(0,0,0,0.12),
    0 6px 12px rgba(0,0,0,0.45);      /* cast shadow */
}

/* brilho suave por cima */
.titulo-estabelecimento::after{
  content: "";
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.06));
  border-radius: 10px;
  pointer-events: none;
  mix-blend-mode: overlay;
}


/* foco acessível (para navegação por teclado) */
.titulo-estabelecimento:focus {
  outline: 3px solid rgba(255,255,255,0.15);
  outline-offset: 6px;
  border-radius: 12px;
}

/* versão leve (se quiser fundo transparente) */
.titulo-estabelecimento.titulo--outline {
  background: transparent;
  color: #1157c6;
  text-shadow: none;
  border: 3px solid #1157c6;
  box-shadow: 0 8px 20px rgba(17,87,198,0.12);
}

/* ajustes móveis */
@media (max-width: 420px) {
  .titulo-estabelecimento {
      
    padding: 10px 14px;
    font-size: clamp(1.25rem, 6vw, 1.8rem);
    transform: perspective(500px) rotateX(4deg);
  }
  .titulo-estabelecimento::after { top: 8%; height: 35%; }
}

        /*nome titulo 3D END*/
        
        
        
        
       /*Mengame lembra que tem que pagar */
/* --- Aviso fixo após fechar --- */
.pedido-aviso-pix {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD32C;
    border: 1px solid #ffd24d;
    color: #000;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: fadeIn 0.4s ease-in-out;
    max-width: 95%;
}

/* --- Botão --- */
.pedido-aviso-botao {
    max-width: 50px;
    background: #ccc;
    border: none;
    border-radius: 5px;
    padding: 5px 12px;
    cursor: pointer;
    font-size: 14px;
    color: red;
    transition: background 0.2s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.pedido-aviso-botao:hover {
    background: #bbb;
}



select {
    background-color: #000;
    color: #fff;
}

select option {
    background-color: #000;
    color: #fff;
}



/* --- Modo mobile: 100% largura e topo --- */
@media (max-width: 768px) {
    .pedido-aviso-pix {
        top: 0;
        bottom: auto;
        left: 3;
        transform: none;
        width: 100%;
        border-radius: 0 0 10px 10px;
        padding: 12px 8px;
        text-align: center;
        
        justify-content: space-around;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    }
}




/* --- Animação suave --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- Efeito de piscar --- */
.total-piscando {
    color: red;
    font-weight: bold;
    animation: piscar 1s infinite ease-in-out;
}

/* --- Animação suave --- */
@keyframes piscar {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.05);
        
    }
}
/*Mengame lembra que tem que pagar END*/


    

/*Aviso descricao*/
.aviso-discreto {
    background: rgba(0, 0, 0, 0.99); /* fundo preto transparente */
    color: #fff;                   /* texto branco */
    padding: 12px 20px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    max-width: auto;
    margin: 10px auto;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.aviso-discreto:hover {
    background: rgba(0, 0, 0, 0.99);
    transform: translateY(-2px);
}
/*Aviso descricao END*/
  
  
  
  
 /*compartilhar flutuante*/
.botao-flutuante {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: rgba(37, 211, 102, 0.6); /* verde fosco e transparente */
  color: #000;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 16px;
  
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.2s, background-color 0.3s;
}

.botao-flutuante:hover {
  background-color: rgba(37, 211, 102, 0.75); /* ligeiramente menos transparente no hover */
  transform: scale(1.05);
}

/* Ajuste para celular */
@media (max-width: 600px) {
  .botao-flutuante {
    font-size: 14px;
    padding: 12px 18px;
    bottom: 70px;
    right: 15px;
  }
}

/*compartilhar flutuante END*/



/* Hora e rede social*/


.blink {
    animation: piscar-aberto 1s infinite;
}
@keyframes piscar-aberto {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}


.link-rede-social {
  color: #0077b6;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

/* Hora e rede social END*/


/*Sombra na imagem*/



.sombra-imagem {
  margin: 0;
  padding: -20px;
  width: 35px;
  height: 35px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  display: block;
}

/* Ajuste para telas pequenas (como telemóveis) */
@media (max-width: 600px) {
  .sombra-imagem {
    width: 30px;
    height: 30px;
     padding: -20px;
  }
}
/*Sombra na imagem END*/





/*Link rede social imagem*/
     .link-rede-social {
    box-shadow: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    background: transparent !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/*Link rede social imagem END*/



/*Estrelas avaliacao*/



.media {
    margin-top: 15px;
    font-size: 14px;
}

.estrelas-fixas {
    font-size: 28px;
    color: #f1c40f;
}

.msg {
    margin-top: 15px;
    font-size: 14px;
}
/*Estrelas avaliacao END*/


/*link Localizacao*/
        
        
 .link-localizacao {
    box-shadow: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    background: transparent !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin-bottom: -5px !important;
    color:#000;
}


/*link Localizacao END*/


 
/* Estilo do summary */
details {
  background: #007BFF; /* fundo azul */
  color: #fff;          /* texto branco */
  
  border-radius: 8px;
  padding: 0px 15px;
  margin: 10px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.9);
  overflow: hidden;
}

/* Estilo do texto quando aberto */
details[open] {
  background: #0056b3;
  transform: translateY(-3px); /* efeito de “top” */
  box-shadow: 0 6px 8px rgba(0,0,0,0.3);
}

/* Remove a seta padrão e adiciona uma personalizada */
details summary {
  list-style: none;
  
  font-size: 14px;  /*Texto abrir*/
}

details summary::-webkit-details-marker {
  display: none;
}



/* Adiciona seta personalizada */
details[open] summary::before {
  content: "- "; 
}
details summary::before {
  content: "+ "; 
}

/* Conteúdo interno */
details div {
  padding-top: 10px;
  line-height: 1.5;
}


.sem-borda {
    border: none;
    text-decoration: none; /* opcional */
    color: inherit;        /* impede mudança de cor no hover */
     background: none;      /* impede mudança de fundo no hover */
}

.sem-borda:hover {
    border: none;
    text-decoration: none; /* garante que não muda no hover */
    background: none;      /* impede mudança de fundo no hover */
    color: inherit;        /* impede mudança de cor no hover */
}
/* Estilo do summary END*/



/*slide show*/
    
    
    .iframe-slide {
    width: 100%;
    height: 300px;        /* computador */
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
}

/* celular */
@media (max-width: 768px) {
    .iframe-slide {
        height: 170px;
    }
}
    
    
/*slide show END*/


/*Banne carrosel*/


.banner-carousel {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #111, #333);
    padding: 20px 0;
    margin-bottom: 35px;
     border-radius: 25px 25px 0 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.9);
}

.banner-track {
    display: flex;
    width: max-content;
    animation: scrollBanner 35s linear infinite;
}

.banner-item {
    min-width: 220px;
    margin: 0 15px;
    text-align: center;
    color: #fff;
    font-size: 15px;
}

.banner-item img {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
    margin-bottom: 8px;
}

.banner-item span {
    display: block;
    font-weight: 600;
}

/* animação direita → esquerda */
@keyframes scrollBanner {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* mobile */
@media (max-width: 768px) {
    .banner-item {
        min-width: 160px;
    }

    .banner-item img {
        width: 150px;
        height: 100px;
    }
}
/*Banne carrosel END*/



/*MODAL ZOOM IMAGEM*/


.modal-imagem {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.80);
}

.modal-conteudo {
    background: transparent;
    width: 90%;
    height: 90%;
    margin: 3% auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-conteudo img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.9);
}

.fechar {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 10000;
}

/*MODAL ZOOM IMAGEM END*/




/*Model para todos os links sem bloequios*/

.link-comentario {
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    background: #000000;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    display: inline-block;
    transition: color 0.3s ease, background 0.3s ease;
}

.link-comentario::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: 4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    transition: width 0.3s ease;
}

.link-comentario:hover {
    color: #00c6ff;
    background: #111111;
}

.link-comentario:hover::after {
    width: 80%;
}




.comentario-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    
}

.comentario-modal-box {
     background: rgba(255,255,255,0.6);
    width: 80%;
    height: 80%;
    margin: 3% auto;
    position: relative;
    border-radius: 8px;
}

.comentario-modal-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.9);
}

.comentario-btn-fechar {
    position: absolute;
     height:40px;
    width: 40px;
   margin: 13px;
    top: 10px;
    right: 10px;
     background: rgba(255, 0, 0, 0.6); /* vermelho transparente */
    color: #fff;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 10000;
}


.voltar-janela-iframe {
    position: absolute;
    height: 25px;
    width: 20px;
    margin: 13px;
    top: 60px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6); /* preto transparente */
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*Model para todos os links sem bloequios END*/



  
 /*Soma tudo*/
#totalFixado {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
    color: white; font-size: 1.2rem;
    padding: 10px; font-weight: bold; z-index: 100;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Linha com total à esquerda e botão à direita */
.linha-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.total-esquerda {
    text-align: left;
    flex: 1;
}

.finalizar-direita {
    text-align: right;
    margin-right: 15px;
}

#btnFinalizar {
    background: #993399;
    color: white;
    font-size: 1rem;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

#btnFinalizar:hover {
    background: #218838;
}



/* Carrossel horizontal */
/* Carrossel horizontal por categoria */
.carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px 0;
}

.carousel::-webkit-scrollbar {
    height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.3);
    border-radius: 4px;
}

.prato {
    flex: 0 0 auto; /* Mantém tamanho fixo e evita encolher */
    width: 200px;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.prato img {
    width: 180px;       /* Largura fixa */
    height: 120px;      /* Altura fixa */
    object-fit: cover;  /* Mantém proporção e recorta o excesso */
    border-radius: 8px;
    margin-bottom: 5px;
}


.quantidade-box {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
}

.quantidade-box select {
    width: 50px;
}


@media (max-width: 600px) {
    .prato img {
        width: 200px;
        height: 150px;
    }
}


/*Soma tudo END*/




/*------Efeito campo pisca por 10 segundo----*/



/* Para dispositivos móveis: celular */
@media (max-width: 768px) {
    textarea {
        width: 95vw; /* quase toda a largura da tela */
        min-height: 80px; /* mais comprido no celular */
        font-size: 18px; /* texto maior e mais legível */
        padding: 16px;
    }
}


    

/*------Efeito campo pisca por 10 segundo----*/


/* ==== Animação da mesa ==== */
@keyframes piscar-celular {
  0%, 100% { border-color: #ff0000; box-shadow: 0 0 10px #ff0000; }
  50% { border-color: #ccc; box-shadow: none; }
}

#celular.campo-piscando-celular {
  animation: piscar-celular 1s infinite;
  animation-iteration-count: 30; /* Pisca 10 vezes */
}

/* Ajuste para celular */
@media (max-width: 600px) {
  #celular {
    width: 95% !important;
  }
}



/* ==== Animação do cliente ==== */
@keyframes piscar-cliente {
  0%, 100% { border-color: #ff0000; box-shadow: 0 0 10px #ff0000; }
  50% { border-color: #ccc; box-shadow: none; }
}

#cliente.campo-piscando-cliente {
  animation: piscar-cliente 1s infinite;
  animation-iteration-count: 30; /* Pisca 10 vezes */
}

/* Ajuste para celular */
@media (max-width: 600px) {
  #cliente {
    width: 95% !important;
  }
}



/* ==== endereço ==== */
@keyframes piscar-endereco {
  0%, 100% { border-color: #ff0000; box-shadow: 0 0 10px #ff0000; }
  50% { border-color: #ccc; box-shadow: none; }
}

#endereco.campo-piscando-endereco {
  animation: piscar-endereco 1s infinite;
  animation-iteration-count: 30; /* Pisca 10 vezes */
}

/* Ajuste para celular */
@media (max-width: 600px) {
  #endereco {
    width: 95% !important;
  }
}
/*------Efeito campo pisca por 10 segundo END----*/



/*------Chamar garcom----*/

   
   .Chama-garcom {
  float: right;
}

.Chama-garcom {
  background: linear-gradient(135deg, #000000, #2b2b2b);
  color: #ffffff;
  padding: 10px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

/* Hover elegante */
.Chama-garcom:hover {
  background: linear-gradient(135deg, #1a1a1a, #000000);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
}

/* Clique */
.Chama-garcom:active {
  transform: scale(0.97);
}
/*------Chamar garcom END----*/
   