/* importando a fonte da google  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* ========Variáveis de projeto ==================== */ 
:root{
    --cor-texto:#3B2F2F;
    --cor-texto-suave:#4a3f35;
    --cor-principal:#F9A825;
    --cor-destaque:#C62828;

    --cor-fundo: #FFFFFF;
    --cor-fundo-secundario: #F5F5F5;
    
    --fonte-menu: Poppins, sans-serif;
    --fonte-base: Roboto, sans-serif;
}
/* ========Fim das Variáveis de projeto ==================== */ 

body{
    
  font: 300 1em/1.5em var(--fonte-menu);
}

h1{
    font-size: 3em;
}
h2{
    font-size: 2em;
}
a{
    color: var(--cor-principal);
    text-decoration: none;
}


/* ========== começo do  header site ========  */ 
header {
   position: fixed !important;         
    top: 0;                  
    left: 0;
    width: 100%;             
    height: 180px;             
    background-color: var(--cor-fundo);
    padding: 20px 0;    
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    border-bottom: 1px solid #ccc;        
    z-index: 1000;           
}

main {
  padding-top: 180px; 
}
.container{    
   max-width: 1500px;
    width: 100%;
    height: auto;
    margin: 0 auto; 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;      
}
.topo h1{ 
    width: 330px;
    height: 140px;
    background-image: url(../img/logoEspetinho.svg);
    background-position: left center; 
    background-size: contain;
    text-indent: -9999px; 
    margin-bottom: 0;
    background-repeat: no-repeat;
}

.topo nav ul{ 
   display: flex;
    gap: 30px;
}
.topo nav ul li {
  gap: 50px;
}
.topo nav ul li a{
    font-family: var(--fonte-menu);
     font-size: 1.7rem;
    font-weight: 500;
    color: var(--cor-texto);
    text-decoration: none;    
    transition: color 0.3s ease, transform 0.3s ease; 
}
.ativo{
    color: var(--cor-destaque) !important;
}
.topo nav ul li a:hover{
    color: var(--cor-principal);
     transform: scale(1.05);
}
.btn-pedido {
  background: #C62828 ;
  color: #fff;
  padding: 20px 20px;
  font-family: var(--fonte-menu);
  font-size: 1.5rem;
  border-radius: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.3s; 
  
}
.btn-pedido:hover {
  background-color: #E53935;
  box-shadow: 0 0 10px #E53935;
}
.btn-pedido .contador {
  color:#FFFF ;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.9em;
  font-family: var(--fonte-menu);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============fim do  header site ========= */ 

/*============ COMEÇO DO BANNER ====================*/

.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* ---------- SLIDER ---------- */
.banner-slider img {
  width: 100%;
  display: block;
}
/* slick estrutura */
.banner .slick-list,
.banner .slick-track {
  position: relative;
  z-index: 1;
}
/* ---------- OVERLAY ---------- */
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
  pointer-events: none;
}
/* ---------- TEXTO SOBREPOSTO ---------- */
.banner-texto {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 3;
  color: #ffffff;
  max-width: 520px;
}
.banner-texto h2 {
  font-family: var(--fonte-menu);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.banner-texto p {
  font-family: var(--fonte-base);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}
.btn-whats {
  background: #1DB954;
  box-shadow: 0 6px 18px rgba(198, 40, 40, 0.35);
  color: #ffffff;
  font-family: var(--fonte-base);
  padding: 35px 35px;
  border-radius: 30px;
  font-size: 2rem;
  font-weight: 300;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}
.btn-whats:hover {
  background: #169c46;
}
/* ---------- SETAS DO SLICK ---------- */
.banner .slick-prev {
   left: calc(52% - 980px);
  z-index: 4;
}
.banner .slick-next {
 left: calc(125% - 600px);
  z-index: 4;
}
.banner .slick-prev::before,
.banner .slick-next::before {
  font-size: 60px;
  color: var(--cor-principal);
}
/*============ FIM DO BANNER ====================*/
/*============ começo AREA ====================  */ 
.area{
    background-color: var(--cor-principal);    
     padding: 40px 0; 
     position: sticky;
     top: 180px; 
      box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
      border-bottom: 1px solid var(--cor-principal);    
     z-index: 900;   
     
}
.area .containerArea{
   max-width: 1500px;  
    width: 100%;   
    margin: 0 auto;   
    display: flex;
    justify-content: center;
    gap: 100px;
}
.area h2{
    margin: 0;
    text-align: center;  
}
.area h2 a{
    display: block;                
    font-family: var(--fonte-menu);
    font-size: 1.7rem;             
    color: var(--cor-texto);
    padding: 20px 0;              
    text-decoration: none;
    line-height: 1.2em;
    transition: color 0.3s ease;
    font-weight: 600;
}
.area h2 a:hover{
    color:  #FFF3C4;               
}
/*============ fim AREA s====================  */ 

/* -------------DESTAQUE DO  Cardapio  -------------- */
.cardapio {
     height: 800px;
     background-color: var(--cor-fundo);  
     padding:  0 0 20px;   
} 
.cardapio .container  {
    display: flex;
    flex-direction: column;
    align-items: center;  
}  
 .cardapio .container h2{
    color: var(--cor-texto);   
    font-family: var(--fonte-menu); 
    font-size: 2.5rem;   
    margin: 50px 0 0 0; 
    font-weight: 600;  
    margin-bottom: 30px;    
    padding: 50px 0 0;  
}
 a {        
    color: var(--cor-fundo);
    font-family: var(--fonte-base); 
    font-size: 25px;  
    font-weight: 400;      
}  
.botao{     
    background-color: var(--cor-destaque);   
    padding: 20px 25px;
    border: 2px solid ;    
    border-radius: 20px;
    transition: all 0.3s ease;    
}


.botao:hover {
    background-color: #E53935;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.05); 
}
/* Grid de cardapio */
.container .cardapio-grid {
    display: grid; 
    grid-template-columns: repeat(4, 1fr);  
    gap: 30px; 
    align-items: start; 
    margin-bottom: 150px;
}
/* Cada card */
.cardapio-itemDest {
    width: 350px; 
    height: 300px;
    text-align: center; 
}
.cardapio-itemDest img{  
    margin-bottom: 20px;   
}
.cardapio-itemDest h3{
  font-family: var(--fonte-base);
  color: var(--cor-texto);
  font-size: 1.56em;
  line-height: 1.4;
  font-weight: 500;
}
  /* -------------Fim Destaque do cardapio  -------------- */

/*     #################sobre########## */
.sobre{      
    padding: 100px 0;
    background-color: var(--cor-principal);
    height: 500px;
    scroll-margin-top: 290px;    
} 
.sobre .container{
  align-items: center;  
}
.container h2{
   font-size: 2.5rem;  
    font-weight: 600;   
    font-family: var(--fonte-menu); 
    color: var(--cor-texto);
    margin-bottom: 30px;
    align-items: flex-start; 
    padding: 50px 0 0;      
}
.sobre .container .imagem img{
  box-shadow: 0px -1px 38px 0px rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  width: 500px;
  height: 490px;
}
.sobre .container  div:nth-child(1){
    display: flex;
    flex-direction: column;  
    padding: 0 20px 0 70px;   
}
.sobre .container  div:nth-child(2){  
    padding: 0 70px 0 20px;   
}
.sobre .container div p {
  font-family: var(--fonte-base);
  color: var(--cor-texto-suave);
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.6;   
  text-align: justify; 
  text-indent:  2em;  
  padding: 10px 50px;    
} 

/* fim  da seção sobre site  */ 

/* começo da seção Depoimento site  */ 
 .depo {
  padding: 80px 20px;
  text-align: center;
}
.depo h2 {
  margin-bottom: 40px;
  font-family: var(--fonte-menu);
  color: var(--cor-texto);
  font-size: 2.5rem;
  font-weight: 600;
}
.depo-area {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.viewport {
  overflow: hidden;
  width: 100%;
}
.track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}
.card {
  flex: 0 0 300px;   
  max-width: 350px;
  height: 320px;
  border: 2px solid #C62828;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}
.card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.stars {
  color: #f9a825;
  font-size: 35px;
  margin-bottom: 20px;
}
.card strong { 
  font-family: var(--fonte-base);
  color: var(--cor-texto);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 0  20px 0 0;
}
.card span { 
  font-family: var(--fonte-base);
  color: var(--cor-texto);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.card p {
  margin-top: 10px;
  font-size: 1.2rem;
  font-family: var(--fonte-base);
  color: var(--cor-texto);
  font-weight: 500;
  margin: 20px 0 0 0;  
}
.arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #C62828;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.arrow:hover {
  background: #E57373;
}
/* fim  da seção Depoimento site  */  

.mapa{
   scroll-margin-top: 320px;
}

/* ---------------- RODAPÉ GERAL ---------------- */
.rodape {
  background-color: #FFF3E0;  
}
/* Container principal das colunas */
.rodape > div:nth-child(1){
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap; 
 padding: 50px 0;
}
/* ---------------- CADA COLUNA ---------------- */
.rodape > div > div {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; 
  margin-bottom: 20px; 
}
/* ---------- LOGO ---------- */
.rodape > div > div:nth-child(1) .logo-site {
  width: 250px;
  height: auto;  
}
/* Texto abaixo da logo */
.rodape > div > div:nth-child(1) > p {
  font-size: 1.5rem;
  color: var(--cor-texto-suave);
  font-family: var(--fonte-base);
  font-weight: 500;
  line-height: 1.4;
  max-width: 330px;
  text-align: center;
  margin: 0;
}
/* ---------- ÍCONES SOCIAIS ---------- */
.rodape > div > div:nth-child(1) > div {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
.rodape > div > div:nth-child(1) > div a img {
  width: 50px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.whats:hover img {
  content: url("../img/whatsappAmarelo.png");
  transform: scale(1.1);
}
.iconeInsta:hover img {
  content: url("../img/instagramAmarelo.png");
  transform: scale(1.1);
}
/* ---------- TÍTULOS DAS COLUNAS ---------- */
.rodape > div > div:nth-child(2) h2,
.rodape > div > div:nth-child(3) h2 {
  font-family: var(--fonte-menu);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cor-destaque); 
  margin: 30px 0 10px 0;
  margin-bottom: 30px;
}
/* ---------- LINKS ---------- */
.rodape > div > div:nth-child(2) a {
  font-size: 1.7rem;
  text-decoration: none;
  font-family: var(--fonte-menu);
  color: var(--cor-texto-suave);
  transition: color 0.3s ease;
  font-weight: 500;
  margin-bottom: 30px;
}
.rodape > div > div:nth-child(3) a {
  font-family: var(--fonte-base);
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--cor-texto-suave);
  transition: color 0.3s ease;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
}
.rodape > div > div:nth-child(2) a:hover,
.rodape > div > div:nth-child(3) a:hover {
  color: var(--cor-principal);
}
.rodape > div > div:nth-child(3)  strong{
 font-family: var(--fonte-menu);
 font-weight: 500;
 font-size: 1.4rem;
 color: var(--cor-destaque);
}
.rodape > div > div:nth-child(3)  p{
 font-family: var(--fonte-base);
 font-weight: 500;
 font-size: 1.2rem;
 color: var(--cor-texto-suave);
 line-height: 1.6;
}
/* ---------- RODAPÉ SECUNDÁRIO ---------- */
.rodape-secundario {
  background-color: var(--cor-principal);
  display: flex;
  justify-content: center;   
  align-items: center;       
  gap: 350px;                
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;          
}
.rodape-secundario p {
  color:var(--cor-texto-suave);
  font-family: var(--fonte-base);
  font-weight: 500;
  font-size: 1rem;
  margin: 0; 
}
/* Fim da seção Rodapé  */ 

/* =====  PAGINA CARDÁPIO ===== */

.pg-cardapio {
  padding: 50px 0;
  background: var(--cor-fundo);
  padding-top: 350px;
  scroll-margin-top: 200px; 
  height: 950px;
}
.pg-cardapioPorcao,
.pg-cardapioSorvetes{
  background: var(--cor-fundo-secundario);
  height: 650px;
  padding-top: 40px;
 scroll-margin-top: 280px; 
}
.pg-cardapioLanches{
  background: var(--cor-fundo);
  height: 650px;
  padding-top: 40px;
 scroll-margin-top: 280px; 
}

.pg-cardapioBebidas{
  background: var(--cor-fundo);
  height: 650px;
  padding-top: 80px;
 scroll-margin-top: 290px; 
 padding: 0 0 50px;
}
.pg-cardapioBebidas .container,
.pg-cardapioSorvetes .container,
.pg-cardapioLanches .container,
.pg-cardapioPorcao .container,
.pg-cardapioEspetinho .container,
.pg-cardapio .container {
  max-width: 1500px;
  margin: 0 auto;
  height: 800px; 
  flex-direction: column;
  gap: 10px;
}
/* títulos */
.pg-cardapio .container h2{
  color: var(--cor-destaque);
  font-size: 2.5rem; 
  font-family: var(--fonte-menu);
  margin-bottom: 20px;
}
.pg-cardapio .container p {
  color: var(--cor-texto-suave);
  font-family: var(--fonte-base);
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;  
}
.categoria {
  text-align: left;
  width: 100%;
  max-width: 1500px;
  margin: 60px auto 30px auto;
  font-size: 2rem;
  font-family: var(--fonte-menu);
  color: var(--cor-texto-suave);
  font-weight: 600;
  padding: 0 120px;
}

/* grid */
.cardapio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 100px; 
}
.pg-cardapio .cardapio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 100px; 
}

/* card */
.cardapio-item {
  border: 5px solid var(--cor-destaque);
  width: 350px;
  height: 519px;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 30px;
   line-height: 1.2;
}
.pg-cardapioSorvetes .cardapio-item {
  border: 5px solid var(--cor-destaque);
  width: 350px;
  height: 470px;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 30px;
}
.pg-cardapioBebidas .cardapio-item {
  border: 5px solid var(--cor-destaque);
  width: 350px;
  height: 465px;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 30px;
}
/* imagem */
.img-box {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 320px;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
   position: relative;
  z-index: 0;
}
/* overlay escuro sobre a imagem */
.img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15) );
  z-index: 1;
}
/* topo sobre a imagem */
.img-box .card-topo {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: 20px; 
  display: flex;
  justify-content: space-between;
  align-items: flex-end;   
  padding: 0;
  z-index: 2;
}
.card-topo h4 {
  font-size: 2rem;
  font-family: var(--fonte-base);
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}
.card-topo span {
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--fonte-base);  
  color: #fff;
  text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}
/* conteúdo */
.pg-cardapioBebidas .card-info,
.pg-cardapioSorvetes .card-info,
.pg-cardapioLanches .card-info,
.pg-cardapioPorcao .card-info, 
.pg-cardapioEspetinho .card-info, 
.pg-cardapio .card-info {
  padding: 15px 0;
  text-align: left;
}
/* texto */
.pg-cardapioBebidas .card-info p,
.pg-cardapioSorvetes .container p,
.pg-cardapioLanches .card-info p,
.pg-cardapioPorcao .card-info p,
.pg-cardapioEspetinho .container .card-info p, 
.pg-cardapio .container .card-info p {
  font-size: 1.4rem;
  color: var(--cor-texto-suave);
  font-family: var(--fonte-base);
  margin-bottom: 25px;
  padding: 0 10px;
  font-weight: 500;
}
.pg-cardapioSorvetes .container p{
  font-size: 1.4rem;
  color: var(--cor-texto-suave);
  font-family: var(--fonte-base);
  margin-bottom: 30px;
  padding: 0 10px;
  font-weight: 500;
}

/* preço */
.preco {
  display: block;
  font-size: 1.4rem;
  color: var(--cor-destaque);
  font-family: var(--fonte-base);
  font-weight: 600;
  margin-bottom: 25px;
  padding: 0 10px;
}
/* botão */
.btn {
  display: block;
  background: var(--cor-principal);
  color: var(--cor-texto-suave);
  font-family: var(--fonte-base);
  padding: 12px;
  border-radius: 0 0 14px 14px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn:hover {
   background-color:  #FBC02D;;
   transition: all 0.3s ease;
}
/* JANELA MODAL SOBREMESA */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
 padding-top: 150px;
}
.modal-conteudo {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  width: 90%;
  max-width: 420px;
  max-height: 70vh; 
  overflow-y: auto;      
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin: 0 auto ;
}
/* ===== SCROLL VISÍVEL ===== */
.modal-conteudo {
  scrollbar-width: thin;             
  scrollbar-color: #F9A825 #f1f1f1;
}
/* Chrome, Edge, Safari */
.modal-conteudo::-webkit-scrollbar {
  width: 10px;
}
.modal-conteudo::-webkit-scrollbar-thumb {
  background-color: #F9A825;
  border-radius: 10px;
}
.modal-conteudo::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.modal-conteudo h3 {
  font-size: 1.4rem;
  color: var(--cor-principal);
  font-family: var(--fonte-menu);
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
}
.modal-conteudo h4 {
  margin: 15px 0 8px;
  font-size: 1.4rem;
  color: var(--cor-destaque);
  font-family: var(--fonte-base);
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 20px;
}
.modal-conteudo select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-family: var(--fonte-base);
  color: var(--cor-texto);
  font-weight: 600;
}
.grupo-opcoes {
  margin-bottom: 15px;
}
.grupo-opcoes .itens {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
}
.grupo-opcoes input[type="checkbox"],
.grupo-opcoes input[type="radio"] {
  transform: scale(1.4);
  cursor: pointer;
}
.grupo-opcoes label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
  font-family: var(--fonte-base);
  color: var(--cor-texto);
  font-weight: 500;
  margin-bottom: 5px;
}
.total {
  margin-top: 15px;
  font-size: 1.2rem;
  color: var(--cor-destaque);
  font-family: var(--fonte-base);
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 20px;
}
.botoes-modal {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.botoes-modal .btn {
  flex: 1;
  padding: 10px 10px;
  border-radius: 25px;
  border: 1px solid #3B2F2F;
  font-size: 1.2rem;
  cursor: pointer;
  font-family: var(--fonte-base); 
}
.btn.fechar {
  background: var(--cor-destaque);
  color: #fff;
  font-weight: 0;
}
.btn.fechar:hover {
  background: #e57373;  
}
/* ======PAGINA PEDIDO ================ */
.pedido-area {
  padding: 50px 0;
  background: var(--cor-fundo);
  padding-top: 80px;
  scroll-margin-top: 200px; 
  min-height: 600px;
}
.pedido-area .container {
  max-width: 1200px; 
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px; 
}
.pedido-area .titulo {
  font-size: 2rem;
  margin-bottom: 10px; 
  color: var(--cor-principal);
  font-family: var(--fonte-menu);
  font-weight: 600;
}
.pedido-area .container h3 {
  font-family: var(--fonte-base);
  color: var(--cor-texto-suave);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 20px; 
}
/* ===== Tabela ===== */
table#tabelaPedido {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

table#tabelaPedido th,
table#tabelaPedido td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}
table#tabelaPedido th {
  background-color: var(--cor-principal);
  color: var(--cor-texto-suave);
  font-family: var(--fonte-base);
  font-size: 1.2rem;
  font-weight: 500;
}
/* Colunas alternadas do corpo da tabela */
#tabelaPedido tbody tr td:nth-child(odd) {
  background-color: #f0f4f8; 
}
#tabelaPedido tbody tr td:nth-child(even) {
  background-color: #e1ecf7; 
}
/* Cabeçalho da tabela */
#tabelaPedido thead th {
  background-color: var(--cor-principal); 
  color: var(--cor-texto-suave);
  padding: 10px;
  text-align: left;
  border-bottom: 2px solid #ccc;
  font-family: var(--fonte-base);
}
/* Linhas da tabela */
#tabelaPedido tbody td {
  padding: 8px 10px;
  border-bottom: 1px solid #ccc;
  font-family: var(--fonte-base);
  font-size: 1rem;
  color: var(--cor-texto);
  font-weight: 400;
}

#tabelaPedido tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}
/* Célula de observação */
.observacao-cell {
  border: 1px solid #ccc;
  padding: 5px;
  min-width: 120px;
  background-color: #fff9c4; 
}
.total-geral {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: var(--fonte-base);
  color: var(--cor-destaque);
  font-weight: 500;
}
/* ===== Botões ===== */
.pedido-area .container .btn {
  display: inline-block;
  min-width: 200px;
  color: var(--cor-texto-suave); 
  font-family: var(--fonte-base);
  font-size: 1.2rem;
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
  border: none; 
  cursor: pointer;
  margin: 5px; 
  font-weight: 500; 
}
.btn-vermelho {
  background-color: var(--cor-destaque);
  color: #fff !important; 
}
.btn-vermelho:hover {
  background-color: #E53935;  
}
/* Botões [+] e [-] */
.btn-quantidade {
  background-color: var(--cor-principal);
  color: var(--cor-texto);
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  padding: 4px 10px;
  margin: 0 3px;
  cursor: pointer;
  font-weight: bold;
}
.btn-quantidade:hover {
  background-color: #FBB23D;  
}
/* Lixeira */
.btn-lixeira {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
}
#prosseguir {
  display: none;
}
.botoes-pedido {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
/* ============================
   SEÇÃO DE PAGAMENTO
============================ */
#forma-pagamento { 
  padding: 80px 0;
  background: var(--cor-fundo);
  padding-top: 50px;
  scroll-margin-top: 260px; 

}
/* Container geral */
#forma-pagamento .container {
  max-width: 1200px; 
  margin: 0 auto;
  text-align: center;
  height: auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 20px; 
}
/* Título principal */
#forma-pagamento h2 {
  margin-bottom: 40px;
  color: #333;
}
/* ============================
   GRID DOS CARDS
============================ */
.pagamento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
/* Card */
.pagamento-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
}
/* Título interno do card */
.pagamento-card h1{
  text-align: center;
  margin-bottom: 25px;
  color: var(--cor-texto);
  font-family: var(--fonte-menu);
  font-size: 2.2rem;
  font-weight: 500;
}
.pagamento-card h3 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--cor-texto-suave);
  font-family: var(--fonte-base);
  font-size: 1.4rem;
  font-weight: 500;
}
/* ============================
   FORMULÁRIOS
============================ */
.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
}
.form-group input,
.form-group select {
  font-family: var(--fonte-base);
  color: var(--cor-texto);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background: #f9f9f9;
  transition: border 0.3s, background 0.3s;
  font-weight: 500;
}
.pagamento-card p,
.form-group label {
  font-family: var(--fonte-base);
  color: var(--cor-texto);
  font-size: 1.2rem; 
  font-weight: 500;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #4f46e5;
  background: #fff;
}
.cartoes-aceitos {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.cartoes-aceitos i {
  font-size: 35px;
  color: #444;
}
.cartoes-aceitos {
  display: flex;
  gap: 12px;
  font-size: 32px;
  color: #444;
}
.pagamento-cartao label{
  color: var(--cor-destaque);
}
.pagamento-cartao,
.endereco-delivery,
.pagamento-dinheiro,
.troco-valor,
.pagamento-pix {
  display: none;
}
/* ============================
   CAMPOS CONDICIONAIS
============================ */
.endereco-delivery,
.troco-dinheiro,
.pix-chave {
  display: none;
}
/* =========================
   ENDEREÇO DELIVERY (GRID)
========================= */
.endereco-delivery {
  display: none;
  margin-top: 15px;  
  grid-template-columns: 1fr 1fr;
  gap: 12px; 
}
.endereco-delivery label {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--fonte-base);
  color: var(--cor-texto-suave);  
}
.endereco-delivery input {
  width: 100%;
  margin-bottom: 10px;
  font-family: var(--fonte-base);
  color: var(--cor-texto-suave);  
}
/* Campos que ocupam linha inteira */
.endereco-delivery #cep,
.endereco-delivery #rua {
  grid-column: span 2;
}
/* ============================
   BOTÃO CONFIRMAR
============================ */
.btn-confirmar {
  margin-top: 30px;
  padding: 14px;
  width: 100%; 
  border-radius: 10px;  
  font-family: var(--fonte-base);
  color: var(--cor-texto-suave);
  font-size: 1rem; 
  background: #22c55e; 
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-confirmar:hover {
  background: #16a34a;
}
/*
######################################################################
#######################    LAYOUT MOBILE     #########################
######################################################################
*/
/* =========RESPONSIVO DO SITE =========== */
/* Desktop grande (até 1200px) */
@media (max-width: 1200px) {   
  .topo .container,
  .banner .container,
  .sobre .container{  
    max-width: 1200px;
    height: auto;   
    gap: 20px;
    margin: 0 ;
}
header {
    height: 130px;
}

main {
  padding-top: 130px;
}
 /* ############################# TOPO ############################ */   
    .topo .container {
        justify-content: center; 
        gap: 30px;
    }
   .topo .container ul li > a {
        font-size: 1.3rem; 
    }
    .topo h1{
      width: 200x;
      height: 110px;
    }
   .topo .btn-pedido {  
    padding: 10px 10px;
    font-family: var(--fonte-menu);
    font-size: 1rem; 
    border-radius: 10px; 
    gap: 8px;  
}
  /* ############################# banner ############################ */
.banner img{
 height: 750px;
}
.banner-texto h2{
 margin-top: 50px;
 font-size: 3rem;
 margin: 0 50px;
}
.banner-texto p{
 font-size: 1.3rem;
 margin: 0 50px;
 margin-bottom: 10px;
}
.btn-whats{
  padding:  30px 30px;
  font-size: 1.5rem;
  margin: 0 50px;
}
.banner .slick-prev {
   left: calc(52% - 550px);
  z-index: 4;
}
.banner .slick-next {
 left: calc(140% - 600px);
  z-index: 4;
}
 /* ############################# AREA ############################ */
   .area{
  top: 130px;
 }
 .area .containerArea{
  justify-content: center; 
  gap: 50px;
 }
.area h2 a {   
    font-size: 1.3rem;
}
 /* ############################# CARDAPIO ############################ */
.cardapio .container h2{
  font-size: 2rem;
}
.cardapio-itemDest,
.cardapio-itemDest img{
max-width: 340px;
height: 300px;
}
.cardapio-itemDest h3{
font-size: 1.3rem;
}
.cardapio {
  height: auto;
}
.cardapio .container{
  justify-content: center;
}
 .cardapio .container .cardapio-grid {
    display: grid;   
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: start;
    margin-bottom: 50px;
    padding: 0;  
}
.botao{
  margin-top: 50px; 
} 
  /* ############################# SOBRE ############################ */  
.sobre .container .imagem img {
  max-width: 450px;
  max-height: 450px;
}
.sobre .container {
 padding: 50px 20px;
}
.sobre  {
height: auto;
padding: 0;
scroll-margin-top: 240px;
}
.sobre .container div p {    
    font-size: 1.3em;    
    padding: 10px 10px;
}
/*############################## DEPOIMENTO ##################################*/
.depo-area {
  gap: 0;
}
/* ############################# LOCALIZAÇÃO  ############################ */
.mapa{
   scroll-margin-top: 270px;
}
.mapa iframe {
  height: 450px;
}
 /* ############################# Rodape ############################ */
 .rodape > div:nth-child(1) {
    max-width: 1200px;  
    padding: 30px 30px;  
}
/* ############################# PAGINA CARDAPIO  ############################ */
.pg-cardapio{
  scroll-margin-top: 300px;
  height: auto;
  padding: 200px 0 150px;
}
.pg-cardapioSorvetes .container,
.pg-cardapioBebidas .container,
.pg-cardapioLanches .container,
.pg-cardapioPorcao .container,
.pg-cardapioBebidas .container  {
  max-width: 1200px;  
  height: auto;
  margin: 0;
  padding: 50px 0;
}
.pg-cardapioSorvetes .container,
.pg-cardapioBebidas .container,
.pg-cardapioLanches .container,
.pg-cardapioPorcao .container,
.pg-cardapioBebidas .container  {
  max-width: 1200px;  
  height: auto;
  margin: 0;
  padding: 50px 0;
}
.container .cardapio-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0 50px;
}
.cardapio-item {
 width: 300px;
 height: 470px;
 margin: 0 10px;
}
.categoria{
  padding: 0 120px;
}
.pg-cardapioSorvetes .categoria{
  padding: 0 70px;
}
.pg-cardapioSorvetes .container .cardapio-item,
.pg-cardapioBebidas .container .cardapio-item{
 width: 300px;
 height: 420px;
}
 .modal {
    padding-top: 130px; /* header menor */
  }
  .card-topo h4 ,
  .card-topo span{
    font-size: 1.7rem;
  }
.cardapio .container .card-info > p {
  font-size: 1.2rem;
  margin-bottom: 29px;
}
.pg-cardapioBebidas .card-info p, 
.pg-cardapioSorvetes .container p, 
.pg-cardapioLanches .card-info p, 
.pg-cardapioPorcao .card-info p, 
.pg-cardapioEspetinho .container .card-info p,
.pg-cardapio .container .card-info p {
    font-size: 1.2rem;
}
#tabelaPedido tbody td {    
    font-size: 1.3rem;  
    font-weight: 400;
}
}
/* FIM do Notebooks - 993 até 1200 */

/* Tablet - 768 - 800 -  992 */
@media (max-width: 992px) {
  .topo .container,
  .banner .container,
  .sobre .container{  
    max-width: 992px;   
}
  /* ############################# TOPO ############################ */

    .topo .container {       
        gap: 20px;
    }
   .topo .container ul li > a {
        font-size: 1.2rem; 
    }
    .topo h1{
      width: 225px;
      height: 110px;
    }
   .topo .btn-pedido {  
    padding: 9px 9px;    
    gap: 5px; 
 
}
  /* ############################# banner ############################ */
.banner img{
 height: 450px;
}
.banner-texto h2{
 margin-top: 20px;
 font-size: 2.5rem;
}
/* ---------- SETAS DO SLICK ---------- */
.banner .slick-prev {
   left: calc(52% - 500px);
  z-index: 4;
}
.banner .slick-next {
 left: calc(125% - 350px);
  z-index: 4;
}
.btn-whats{
  padding:  25px 25px;
  font-size: 1.3rem;
}
 /* ############################# SOBRE ############################ */  
.sobre .container .imagem img {
  max-width: 400px;
  max-height: 400px;
}
.sobre .container div:nth-child(2) {
  max-width: 400px;
  height: auto;
}
.sobre .container div h2 {    
    font-size: 2rem;      
}
.sobre .container div p {    
    font-size: 1rem;    
    padding: 10px 10px;
}
 /* ############################# DEPOIMENTOS ############################ */
.depo-area {
        gap: 40px;
    }
.track {  
    gap: 60px;   
}
.card {
    flex: 0 0 300px;
    max-width: 300px;
    height: 320px;
  }

 /* ############################# Rodape ############################ */
.rodape > div > div:nth-child(1) .logo-site {
    width: 150px;
    height: auto;
}
.rodape > div > div:nth-child(1) > p{
  font-size: 1.2rem
}
.rodape > div > div:nth-child(1) > div a img{
  width: 35px;
}
.rodape > div > div:nth-child(2) a ,
.rodape > div > div:nth-child(2) h2, 
.rodape > div > div:nth-child(3) h2 {
font-size: 1.2rem;  
margin-bottom: 10px;
} 
.rodape > div > div:nth-child(3) strong,
.rodape > div > div:nth-child(3) a {
font-size: 1rem;
line-height: 1.2;
}
.rodape > div > div:nth-child(3) p{
  font-size: 0.9rem;
}
/* ############################# PAGINA CARDAPIO  ############################ */
.pg-cardapioSorvetes,
.pg-cardapioBebidas,
.pg-cardapioLanches,
.pg-cardapioPorcao,
.pg-cardapioBebidas {
  max-width: 992px;  
  height: auto;   
}
.pg-cardapio .container h2{
  font-size: 2rem;
  margin: 0;
  padding: 0;
}
.pg-cardapio .container p{
  font-size: 1rem;
}
.pg-cardapioSorvetes .container,
.pg-cardapioBebidas .container,
.pg-cardapioLanches .container,
.pg-cardapioPorcao .container,
.pg-cardapioBebidas .container  {
  max-width: 900px;  
  height: auto;
  margin: 0;
  padding: 0 50px; 
}
.pg-cardapio .container .categoria{
  padding:  0 80px;
  font-size: 1.7rem;
} 
.pg-cardapioPorcao .container .categoria {
  padding:  0 30px;
  font-size: 1.7rem;
} 
.pg-cardapioLanches .container .categoria {
  padding:  0 30px;
  font-size: 1.7rem;
} 
.pg-cardapioSorvetes .container .categoria {
  padding:  0 10px;
  font-size: 1.7rem;
} 
.pg-cardapioBebidas .container .categoria {
  padding:  0 15px;
  font-size: 1.7rem;
} 
.cardapio-item {
 width: 270px;
 height: 430px;
 margin: 0 10px;
}
.pg-cardapioSorvetes .container .cardapio-item,
.pg-cardapioBebidas .container .cardapio-item{
 width: 260px;
 height: 375px;
}
.pg-cardapioSorvetes .container .cardapio-grid
.pg-cardapioBebidas .container .cardapio-item{
gap: 0;
}
.pg-cardapioSorvetes,
.pg-cardapioBebidas,
.pg-cardapioLanches,
.pg-cardapioPorcao  {
scroll-margin-top: 150px;
padding-top: 0;
}
.card-topo h4,
.card-topo span{
  font-size: 1.4rem;
}
.pg-cardapio .container .card-info p,
.pg-cardapioLanches .container .card-info p,
.pg-cardapioPorcao .container .card-info p,
.pg-cardapioSorvetes .container .card-info p,
.pg-cardapioBebidas .container .card-info p{ 
    font-size: 1rem;    
}
.pg-cardapio .container .card-info strong,
.pg-cardapioPorcao .container .card-info strong,
.pg-cardapioLanches .container .card-info strong{
  font-size: 1.2rem;
}
.pg-cardapio .container .btn,
.pg-cardapioPorcao .container .btn,
.pg-cardapioLanches .container .btn,
.pg-cardapioSorvetes .container .btn,
.pg-cardapioBebidas .container .btn{
  font-size: 1.4rem;
}
/* ############################# PAGINA CARDAPIO JANELA MODAL ############################ */
  .modal {
    padding-top: 120px;
  }
.modal-conteudo { 
    max-width: 340px;  
}
.modal-conteudo h4 {
  font-size: 1.2rem;
}
.modal-conteudo select,
.modal-conteudo ,
.grupo-opcoes label{
  font-size: 1rem;
}
.botoes-modal .btn{
  font-size: 0.9rem;
  border-radius: 10px;
}

/* ############################# PAGINA PEDIDO TABELA   ############################ */
#tabelaPedido tbody td {    
    font-size: 1rem;  
    font-weight: 400;
}
/* ############################# PAGINA PEDIDO PAGAMENTO ############################ */
#forma-pagamento h2{
  font-size: 1.7rem;
  margin: 0;
}
.pagamento-card h3 {
  font-size: 1rem;
}
}

/* FIM do Tablet - 768 até 992 */

@media not all and (max-width: 768px) {
  .abrir-menu,
  .fechar-menu{
   display: none;
  }
}

/* Celulares - 0 - 400 - 768  trabalhando na menor tela 360 por 640*/
@media (max-width: 768px) {
.topo .container {
 max-width: 760px;
 gap: 50px;
}
  .topo h1{
    width: 350px; 
  }
  .topo nav {
    background-color: rgba(249, 168, 37, 0.8);    
    height: 100%;
    position: fixed;
    top: 0;
    max-width: 400px;
    width: 50%;
    z-index: 100;
    right: -390px; 
  }
  .menu-ativo .topo nav{
    right: 0;    
  }
  .topo nav ul{
    flex-direction: column;   
    gap: 20px; 
  }
  .abrir-menu{
    background-image: url(../img/abrir-menu.png);
    background-size: cover;
    padding: 20px;
    border: 0;
    display: block;    
    margin-right: 10px;
  }
  .fechar-menu{
    background-image: url(../img/fechar-menu.png);
    background-size: cover;
    padding: 20px;
    border: 0;
    display: block;    
    margin-right: 10px;
    transition: rigth 1s ease-in-out;
  }
  .topo .container ul li > a {
    padding: 0 30px;  
  }
  .banner img {
  height: 300px;
  }
  .banner-texto h2{
    font-size: 2rem;
  }
  .banner-texto p{
    font-size: 1rem;
  }
  .btn-whats {
  padding: 20px 20px;
  font-size: 1rem;
  border-radius: 20px;
 }
 /* ---------- SETAS DO SLICK ---------- */
 .banner .slick-prev::before, 
 .banner .slick-next::before {
 font-size: 40px;
 }
.banner .slick-prev {
   left: calc(52% - 390px);
  z-index: 4;
}
.banner .slick-next {
 left: calc(125% - 250px);
  z-index: 4;
}
  .area{
  display: none;
  }
  .cardapio .container {
    gap: 30px;
    height: auto;
  }
  .cardapio .container h2{
    margin: 0;
    font-size: 1.5rem;
  }
  .cardapio-itemDest h3 {
    font-size: 1.1rem;
  }
  .botao {  
    padding: 15px 15px;   
    border-radius: 20px;    
}
a {  
    font-size: 1.2rem;    
}
  .cardapio .container .cardapio-grid{
    gap: 70px;  
  }
  .sobre .container {
    max-width: 760px;
    padding: 50px 20px;
    flex-direction: column;
    text-align: center;
    padding: 0;
    }
    .sobre .container > div:nth-child(1){
    padding: 50px 0;
    }
   .sobre .container > div:nth-child(2){
    padding: 0 0 40px;
    }
    .sobre .container div h2{
      padding: 20px 0 0;
    }   
 
  .depo .boxDepo{
    flex-direction: column;    
  }
  .depo h2{
    font-size: 1.5rem;
  }
  .borda{   
    width: 100%;
  } 
      .rodape > div:nth-child(1) {
        max-width: 768px;
        padding: 30px 30px;
        flex-direction: column;
        align-items: center;
    }
    .rodape > div > div {
      flex: 0;
      margin: 0;
    }
    /* ############################# PAGINA CARDAPIO  ############################ */

  /* seções */
  .pg-cardapio {
    height: auto; 
    padding: 80px 0 20px;    
  }
   
  .pg-cardapioPorcao,
  .pg-cardapioLanches,
  .pg-cardapioSorvetes{
    height: auto; 
    padding: 20px 0 10px;    
  }
 
  .pg-cardapioBebidas {
    height: auto; 
    padding: 20px 0 30px;    
  }

  /* container */
  .pg-cardapio .container,
  .pg-cardapioPorcao .container,
  .pg-cardapioLanches .container,
  .pg-cardapioSorvetes .container,
  .pg-cardapioBebidas .container {
    height: auto;
    padding: 0 20px;
  }
.pg-cardapio .container h2{
  margin-bottom: 10px;
  font-size: 1.7rem;
}

  /* título categoria */
  .categoria {
    padding: 0;
    margin: 40px 0 20px;
    font-size: 1.8rem;
    text-align: center;
  }
  /* grid */
   .pg-cardapio .container .cardapio-grid,
   .pg-cardapioPorcao .container .cardapio-grid,
   .pg-cardapioLanches .container .cardapio-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;   
  }    
   .pg-cardapioSorvetes .container .cardapio-grid,
   .pg-cardapioBebidas .container .cardapio-grid  {  
    grid-template-columns: repeat(2, 1fr); 
    gap: 50px;   
  }
  /* card */
  .cardapio-item,
  .pg-cardapioSorvetes .cardapio-item,
  .pg-cardapioBebidas .cardapio-item {
    width: 90%;
    margin: 0;
    height: 430px;
  }
  /* imagem */
  .img-box {
    height: 260px;
  }
/* #############################
   PAGINA CARDAPIO - MODAL 768px
############################# */
  .modal {
    padding-top: 90px; 
  }
  .modal-conteudo {
    max-width: 40%;     
    max-height: 75vh;    
    padding: 16px;
    border-radius: 12px;
  }
  .modal-conteudo h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  .modal-conteudo h4 {
    font-size: 1.1rem;
    margin: 12px 0 6px;
  }
  .modal-conteudo select {
    font-size: 1rem;
    padding: 8px;
  }
  .grupo-opcoes label {
    font-size: 0.95rem;
  }
  .grupo-opcoes input[type="checkbox"],
  .grupo-opcoes input[type="radio"] {
    transform: scale(1.2); 
  }
  .total {
    font-size: 1.05rem;
    margin-top: 12px;
  }
  .botoes-modal {
    display: flex;
    gap: 8px;
  }
  .botoes-modal .btn {
    font-size: 1rem;
    padding: 10px;
    border-radius: 10px;
  }
  .forma-pagamento {
    padding: 50px 0 0;
    max-height: 350px;
  }
}  

/* FIM do Celulares - 0 - 768 */


/* Celulares - 0 - 400  */
@media (max-width: 400px) { 
   html, body {
    width: 100%;
    overflow-x: hidden;
  }
 .topo .container nav{
  width: 80%;
  max-width: 200px;
  right: -100%;
}
.topo nav {
    background-color: rgba(249, 168, 37, 0.8);    
    height: 100%;
    position: fixed;
    top: 0;
    max-width: 100px;
    width: 50%;
    z-index: 100;
    right: -390px; 
  }
  .menu-ativo .topo nav{
    right: 0;    
  }
  .topo nav ul{
    flex-direction: column;   
    gap: 20px; 
  }
  .abrir-menu{
    background-image: url(../img/abrir-menu.png);
    background-size: cover;
    padding: 20px;
    border: 0;
    display: block;    
    margin-right: 10px;
  }
  .fechar-menu{
    background-image: url(../img/fechar-menu.png);
    background-size: cover;
    padding: 20px;
    border: 0;
    display: block;    
    margin-right: 10px;
    transition: rigth 1s ease-in-out;
  }
  .topo .container ul li > a {
    font-size: 1rem; 
  }
  .banner img {
  height: 300px;
  }
  .banner-texto h2{
    font-size: 1.5rem;
  }
  .banner-texto p{
    font-size: 0.8rem;
  }
  .btn-whats {
  padding: 10px 10px;
  font-size: 0.8rem;
  border-radius: 10px;
 }
 /* ---------- SETAS DO SLICK ---------- */
 .banner .slick-prev::before, 
 .banner .slick-next::before {
 font-size: 35px;
 }
.banner .slick-prev {
   left: calc(52% - 200px);
  z-index: 4;
}
.banner .slick-next {
 left: calc(125% - 150px);
  z-index: 4;
}
.cardapio .container h2 {
font-size: 1.1rem;
}
.cardapio .container .cardapio-grid {
 grid-template-columns: repeat(1, 1fr);
 }
 
.cardapio-itemDest, .cardapio-itemDest img {
  max-width: 250px;
  height: 200px;
}
.cardapio-itemDest h3{
  font-size: 1rem;
}
.botao{
  padding: 10px 10px;
  border-radius: 10px;
}
.sobre .container .imagem img{
  max-width: 350px;
  max-height: 350px;
}
.sobre .container > div:nth-child(1){
  padding: 50px 0 10px;
}
.sobre .container div p{
 font-size: 0.8rem;
 padding: 5px 20px;
}
.sobre .container div h2 {
font-size: 1.5rem;
}

  .depo {
    padding: 40px 10px;
  }

  .depo-area {
    display: flex;
    align-items: center;
    gap: 5px; 
  }

  .viewport {
    width: 100%;
    overflow: hidden;
  }

  .track {
    display: flex;
    gap: 10px; 
    transition: transform 0.4s ease;
  }

  .card {
    min-width: 100%;  
    max-width: 100%;
    flex-shrink: 0;    
    padding: 15px;
    box-sizing: border-box;
  }

  .card p {
    font-size: 0.95rem;
  }

  .card strong {
    font-size: 1rem;
  }

  .arrow {
    font-size: 1.5rem;
    padding: 5px;
  }

  /* ############################# LOCALIZAÇÃO  ############################ */
.mapa{
   scroll-margin-top: 270px;
}
.mapa iframe {
  height: 300px;
}
.rodape > div > div:nth-child(1) > p,
.rodape > div > div:nth-child(2) a, 
.rodape > div > div:nth-child(2) h2, 
.rodape > div > div:nth-child(3) h2,
.rodape > div > div:nth-child(3) strong {
font-size: 1rem;
 margin-bottom: 5px;
}
.rodape-secundario p{
  font-size: 0.7rem;
}
.pg-cardapio .container {
 padding: 0;
}
.pg-cardapio .container h2 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.pg-cardapio .container p {
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.pg-cardapio .container .categoria,
.pg-cardapioPorcao .container .categoria,
.pg-cardapioLanches .container .categoria,
.pg-cardapioSorvetes .container .categoria,
.pg-cardapioBebidas .container .categoria {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--cor-principal);
  padding: 0;

}
.pg-cardapio{
 padding: 80x 20px 40px;
}

.pg-cardapioPorcao .container,
.pg-cardapioLanches .container,
.pg-cardapioSorvetes .container,
.pg-cardapioBebidas .container {
 padding: 2px;
}
.pg-cardapio .container,
.pg-cardapioPorcao .container {
 align-items: center;
 text-align: center;

}
.categoria {
padding: 0;
margin: 0 0 20px;
font-size: 1.1rem;

 }

 .pg-cardapio .container .cardapio-grid, 
 .pg-cardapioPorcao .container .cardapio-grid, 
 .pg-cardapioLanches .container .cardapio-grid,
 .pg-cardapioSorvetes .container .cardapio-grid,
 .pg-cardapioBebidas .container .cardapio-grid  {
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
/* #############################
   PAGINA CARDAPIO - MODAL 400px
############################# */

  .modal {
    padding-top: 80px; 
  }

  .modal-conteudo {
    max-width: 75%;     
    max-height: 75vh;
    padding: 14px;
    border-radius: 10px;
  }

  .modal-conteudo h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }

  .modal-conteudo h4 {
    font-size: 1rem;
    margin: 10px 0 5px;
  }

  .modal-conteudo select {
    font-size: 0.95rem;
    padding: 7px;
  }

  .grupo-opcoes label {
    font-size: 0.9rem;
  }

  .grupo-opcoes input[type="checkbox"],
  .grupo-opcoes input[type="radio"] {
    transform: scale(1.1);
  }

  .total {
    font-size: 1rem;
    margin-top: 10px;
  }

  .botoes-modal {
    display: flex;
    gap: 6px;
  }

  .botoes-modal .btn {
    font-size: 0.8rem;
    padding: 8px;
    border-radius: 8px;
    width: 100%;
  }
  
  .pedido-area .titulo{
    font-size: 1.7rem;
    margin: 0;
  }
  
  .pedido-area .container h3{
    font-size: 1rem;
    margin: 0;
  }
 

  .pedido-area h3 {
    font-size: 1rem;
    text-align: center;
  }

  /* Esconde o cabeçalho da tabela */
  #tabelaPedido thead {
    display: none;
  }

  /* Tabela vira blocos */
  #tabelaPedido,
  #tabelaPedido tbody,
  #tabelaPedido tr,
  #tabelaPedido td {
    display: block;
    width: 100%;
  }

  /* Cada item do pedido vira um card */
  #tabelaPedido tr {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  #tabelaPedido td {
    border: none;
    padding: 6px 0;
    font-size: 0.95rem;
  }


  /* Nome da coluna antes do valor */
  #tabelaPedido td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 2px;
  }

  /* Observação */
  .observacao-cell {
    min-width: 100%;
    font-size: 0.9rem;
  }
   /* Botões de quantidade */
  .btn-quantidade {
    padding: 4px 8px;
    font-size: 0.9rem;
  }

  /* Lixeira */
  .btn-lixeira {
    font-size: 20px;
  }

  /* Total */
  .total-geral {
    font-size: 1.2rem;
    text-align: center;
  }


  /* Botões */
  .botoes-pedido {
   flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* FORÇAR PADRÃO IGUAL PARA <a> e <button> */
.botoes-pedido .btn {
  all: unset;              
  flex: 1;
  height: 50px;           
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fonte-base);
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  background-color: var(--cor-principal);
  color: var(--cor-texto-suave);
  transition: background 0.3s ease;
}
.botoes-pedido .btn-vermelho{
 background-color: var(--cor-destaque);
}
/* ============================
   FORMA DE PAGAMENTO – 400px
============================ */
  #forma-pagamento {
    padding: 30px 0;
    padding-top: 20px;
    max-height: none; 
  }

  #forma-pagamento h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  /* Grid vira coluna */
  .pagamento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Cards */
  .pagamento-card {
    padding: 18px;
    border-radius: 12px;
    padding: 16px 14px;
  }

  .pagamento-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  /* Formulários */
  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group select {
    font-size: 0.95rem;
    padding: 10px;
    box-sizing: border-box
  }

  /* Texto auxiliar */
  .pagamento-card p {
    font-size: 0.95rem;
  }

  /* ENDEREÇO DELIVERY */
  .endereco-delivery {
    grid-template-columns: 1fr;
 gap: 8px;
 padding: 0 10px; 
  }

  .endereco-delivery #cep,
  .endereco-delivery #rua {
    grid-column: span 1;
  }

  /* Cartões */
  .cartoes-aceitos {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cartoes-aceitos img {
    width: 40px;
    height: auto;
  }

  /* Botão confirmar */
  .btn-confirmar {
    font-size: 1rem;
    padding: 12px;
    margin-top: 20px; 
}
}
/* FIM do Celulares - 0 - 400 */
