@media (max-width: 768px){

  .produto_quantidade{
    margin: 10px auto;
  }

  .inf-btn{
    display: block;
  }
 
    .banner_informativo{
        margin-top: -30px;
    }

    .entrega .onde:first-child {
      flex: 1 1 300px;
      
    }

    .entrega .onde:first-child h2 {
      font-weight: 900;
      font-size: 1.5rem;
    }

    .entrega .onde:first-child p {
      font-size: 1rem;
      line-height: 1.2;
    }
    .info{
        width: 100%;
    }

    .dicas-header h2{
        width: 100%;
    }

    .dicas-header a{
        display: none;
    }

    .informacoes{
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .cards {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        justify-content: space-between;
        margin-bottom: 20px;
        }

    .cards a {
        flex: 1 1 100%;
        max-width: 100%;
        text-decoration: none;
        display: flex;
        margin-bottom: 20px;
        }

    .box-acessos{
        width: 100%;
        float: left;
        margin: 0;
        padding: 20px 0;
        border-bottom: 1px solid #e2d2d2;
    }

    .foto_categoria {
      width: 90%;
      margin: 0 2.5%;
    }

    .foto_categoria img{
      width: 90%;
      margin: 0 2.5%;
    }

    .informativo {
        margin: 0;
        display: table;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        margin: 40px 2.5%;
    }

    .informativo h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .dicas {
        max-width: 100%;
    }

    .box-acessos{
        width: 100%;
    }

    .sumir-mobile{
        display: none;
    }

    .menu-mobile{
        display: block;
        background: #fff;
        padding-bottom: 8px;
        height: 80px;
    }

    .logo-mobile{
        margin-top: 15px;
        margin-left: 10px;
        display: block;
        height: 80px;
        padding-bottom: 8px;
        
    }

    .logo-mobile img{
        height: 55px;
    }

    .btn_modal_carrinho{
        float: right;
    }

    .info-cupom{
        width: 100%;
        text-align: center;
    }

    .cupom-codigo{
        clear: both;
        height: 25px;
        line-height: 25px;
    }

    .informacoes{
        margin-bottom: 0;
    }

}



















/* ================================
   MOBILE – Bloco Assinatura (<=768)
   ================================ */
@media (max-width:768px){

  /* container passa a ter fundo amarelo (sem a imagem) */
  .marcador_ass{
    background: linear-gradient(180deg,#ffe9b8 0%, #ffefc9 60%, #ffe4a3 100%);
  }
  .marcador_ass .fundo_img{ display:none; }

  /* layout em coluna e respiro */
  .info_assinatura{
    position: relative;
    inset: 0;
    width: 100%;
    margin: 0;
    padding: 28px 18px 36px;
    flex-direction: column;
    gap: 18px;
  }

  /* título central e CTA largo */
  .info_ass{
    max-width: 100%;
    text-align: center;
    color: #1d1d1d;
  }
  .info_ass h2{
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
  }
  .btn_assinatura{
    margin-top: 14px;
    width: 100%;
    max-width: 420px;
    border-radius: 999px;
    background: #6d1f1d;  /* grená */
    color: #fff;
    padding: 12px 18px;
    font-size: 16px;
  }

  /* passos em coluna, sem a linha horizontal */
  .passos_container{
    padding-top: 0;
    max-width: 100%;
    gap: 12px;
  }
  .passos_container::before{ display:none; }

  /* cada passo vira um card branco com sombra,
     número à esquerda e textos à direita */
  .passo{
    max-width: 100%;
    width: 100%;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    padding: 14px 14px 14px 12px;
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 4px;
    align-items: start;
    transform: translateZ(0); /* evita jitter em alguns Androids */
  }

  /* círculo do número (grená) */
  .passo .numero{
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    margin: 0;                 /* remove o -40px do desktop */
    background: #6d1f1d;
    color: #fff;
    border-radius: 50%;
    line-height: 44px;
    text-align: center;
    font-weight: 900;
    font-size: 18px;
  }

  .passo h4{
    margin: 2px 0 2px;
    font-size: 16px;
    font-weight: 800;
    color: #111;
  }

  .passo .descricaox{
    grid-column: 2 / 3;
    font-size: 13px;
    color: #555;
    line-height: 1.45;
    list-style: none;
  }

  /* toque/hover sutil mantendo identidade */
  .passo:active,
  .passo:hover{
    box-shadow: 0 14px 28px rgba(109,31,29,.18);
    border-color: #ffcf80;
  }

  /* acessibilidade: reduz animações se o usuário preferir */
  @media (prefers-reduced-motion: reduce){
    .passo,
    .btn_assinatura{ transition: none !important; }
  }
}

/* FORÇA OS PASSOS A EMPILHAREM NO MOBILE */
@media (max-width:768px){
  .passos_container{
    flex-direction: column !important;   /* agora fica 1 abaixo do outro */
    align-items: stretch;                 /* cada card ocupa a largura toda */
    gap: 14px;                            /* espaçamento entre cards */
    max-width: 100%;
  }
  .passo{
    width: 100% !important;
    max-width: none !important;
    margin: 0;                            /* remove qualquer margem lateral herdada */
  }
}




/*carrosel dos 3 textos*/
/* ====== CARROSSEL INFO – MOBILE ====== */
@media (max-width:768px){
  .informacoes-cx{
    position: relative;
    width: 100%;
    margin: 0px 0;
    padding: 0 40px;                /* espaço para as setas */
    box-sizing: border-box;
    margin-top: -20PX;
  }

  /* faixa branca com leve sombra, cantos arredondados */
  .inf-carousel{
    overflow: hidden;
    border-radius: 12px;
  }

  /* trilho deslizante */
  .inf-track{
    display: flex;
    transition: transform .35s ease;
    will-change: transform;
  }

  /* cada slide ocupa 100% da largura do viewport do carrossel */
  .inf-slide{
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 10px;
    box-sizing: border-box;
  }

  /* card interno (ícone + texto) */
  .inf-card{
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 12px;
  }

  .inf-card img{
    width: 42px; height: 42px; object-fit: contain;
  }

  .inf-card p{
    margin: 0;
    color: #303030;
    line-height: 1.25;
    font-size: 15px;
  }
  .inf-card b{ font-weight: 800; }

  /* setas */
  .inf-btn{
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    font-size: 20px;
    line-height: 1;
    display: grid; place-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: filter .15s ease;
    user-select: none;
  }
  .inf-btn:active{ filter: brightness(.95); }
  .inf-prev{ left: 6px; }
  .inf-next{ right: 6px; }

  /* bolinhas */
  .inf-dots{
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px 0 0;
  }
  .inf-dot{
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #cfcfcf;
  }
  .inf-dot.is-active{
    background: #111;              /* ativa (pode trocar para #6d1f1d se quiser grená) */
  }
}

@media (max-width:768px){
  .inf-dots{ display:none !important; }
}




























































































/* ===== MOBILE: 1 card por vez no carrossel X ===== */
@media (max-width:768px){

  /* empilha imagem e carrossel */
  .todas_categorias{ width:100%; margin:16px auto; overflow:visible; }
  .foto_categoria,
  .carousel-areaX{ width:100%; float:none; }

  /* área do carrossel com “respiro” para as setas */
  .carousel-areaX{
    position: relative;
    display:block;         /* sai do grid */
    padding: 0 48px;       /* espaço das setas */
    margin: 16px 0 40px;
  }

  /* trilho: oculta overflow e habilita snap */
  .carrosselX{
    display:flex;
    overflow:hidden;                 /* só 1 card visível */
    gap: 0;                          /* sem “pedaço” do próximo */
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;    /* snap por card */
    -webkit-overflow-scrolling: touch;
  }

  /* cada card ocupa 100% da largura do trilho */
  .box_produtoX{
    flex: 0 0 100%;
    max-width:100%;
    scroll-snap-align:center;
    border-radius:16px;
  }

  /* setas posicionadas por cima, nas laterais */
  .carrosselX-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
    width:36px; height:36px;
    border-radius:50%;
    background:#fff;
    color:#000;
    border:1px solid #e5e5e5;
    box-shadow:0 6px 16px rgba(0,0,0,.08);
  }
  .carrosselX-btn.left{  left: 8px; }
  .carrosselX-btn.right{ right: 8px; }
}

/* ===== MOBILE: 1 card por vez – ajuste fino ===== */
@media (max-width:768px){
  /* container das setas pode manter padding; o trilho NÃO */
  .carousel-areaX{
    position: relative;
    padding: 0 48px;         /* espaço das setas */
  }

  /* trilho: sem gap/padding, sem scrollbar; snap por card */
  .carrosselX{
    overflow: hidden;
    display: flex;
    gap: 0 !important;
    padding: 0 !important;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* 1 card = exatamente 100% da viewport do trilho */
  .box_produtoX{
    flex: 0 0 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;     /* evita “meio pixel” sobrando */
    margin: 0 !important;
    scroll-snap-align: center;
    border-radius: 16px;
  }

  /* setas por cima, nas laterais */
  .carrosselX-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    border: 1px solid #e5e5e5;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
  }
  .carrosselX-btn.left{  left: 8px; }
  .carrosselX-btn.right{ right: 8px; }
}

/* ===== MOBILE: botões lado a lado no carrossel X ===== */
@media (max-width:768px){
  .carousel-areaX .box_produtoX .botoes{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
  }
  /* “Ver produto” ocupa o espaço restante */
  .carousel-areaX .box_produtoX .btn-ver{
    flex: 1 1 auto;
    border-radius: 22px;
    padding: 10px 14px;
  }
  /* Carrinho fica compacto à direita */
  .carousel-areaX .box_produtoX .btn-carrinho{
    flex: 0 0 48px;
    width: 48px !important;          /* sobrescreve regra mobile global */
    height: 44px !important;
    border-radius: 50%;
  }
}










@media (max-width: 768px){
  .carousel-area .box_produto{
    flex: 0 0 100%;     /* ocupa 100% da largura */
    max-width: 100%;    /* garante largura cheia */
  }

  .carousel-area{
    grid-template-columns: auto 1fr auto; /* setas nas laterais */
    align-items: center;
  }

  .carousel-area .carrossel{
    scroll-snap-type: x mandatory; /* efeito de “encaixe” */
  }

  .carousel-area .box_produto{
    scroll-snap-align: center;     /* cada card centraliza */
  }
}

/* Mobile: botões lado a lado no carrossel de Combos */
@media (max-width: 768px){
  .carousel-area .box_produto .botoes{
    display: flex;
    flex-direction: row !important;   /* garante lado a lado */
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
  }

  .carousel-area .box_produto .btn-ver{
    flex: 1 1 auto;                   /* ocupa o espaço restante */
    min-height: 44px;
  }

  .carousel-area .box_produto .btn-carrinho{
    flex: 0 0 auto;
    width: 46px;                      /* tamanho fixo do ícone */
    height: 44px;
    border-radius: 30%;
  }
}





/* ===== MOBILE: cupom primeiro + tudo em 1 linha (sem mudar HTML) ===== */
@media (max-width:768px){
  .topo-conteudo{
    width:100%;
    padding:6px 10px;
    display:flex;
    align-items:center;
    gap:8px;
  }
  /* esconde os blocos laterais no mobile */
  .topo-conteudo .sumir-mobile{ display:none !important; }

  .info-cupom{
    flex:1;
    display:flex;
    align-items:center;
    gap:6px;
    min-width:0;
    white-space:nowrap;     /* não quebra */
    overflow:hidden;        /* evita vazar */
    position:relative;
    cursor:pointer;         /* indica que dá pra copiar */
  }

  /* reordena os spans existentes (sem alterar HTML) */
  .info-cupom .cupom-codigo{           /* fica em 1º */
    order:1;
    background:#111;
    color:#ff9a00;
    padding:2px 10px;
    border-radius:999px;
    font-weight:800;
    font-size:12px;
  }
  .info-cupom span:first-child{        /* texto “Cupom …” vai para 3º */
    order:3;
    color:#111;
    font-weight:700;
    overflow:hidden;
    text-overflow:ellipsis;            /* corta com “…” se faltar espaço */
  }

  .btn-wrap {
  position: relative; /* ancora a tarja no botão */
  width: 100%;
}

 .subir_modal{
    margin-top: -50px
  }

}


/* ==== Guard-rails para mobile (coloque no fim do mobile.css) ==== */
@media (max-width: 768px){
  html, body{
    max-width: 100%;
    overflow-x: hidden;            /* trava o scroll lateral */
  }

  /* imagens nunca maiores que o viewport */
  img, video{ max-width: 100%; height: auto; display:block; }

  /* Header mobile não pode vazar */
  .menu-mobile{ overflow-x: hidden; }

  /* Banner rotativo e cards */
  .banner-rotativo{ overflow:hidden; }

  /* “Descubra mais produtos” — imagem da categoria ocupa 100% */
  .foto_categoria{ width:100%; margin:0; }
  .foto_categoria img{ width:90%; margin:0 5%; }

  /* CarrosselX: reduzir padding e esconder overflow lateral */
  .carousel-areaX{
    padding: 0 16px;               /* era 0 48px */
    overflow: hidden;               /* evita vazamento horizontal */
  }
  .carrosselX{
    overflow-x:auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type:x mandatory;
  }
  .carrosselX::-webkit-scrollbar{ display:none; }

  /* Carrossel de Combos: não deixar o trilho “quebrar” */
  .carousel-area .carrossel{ min-width:0; overflow:hidden; }
}



/* ===== FIX: header mobile organizado e sem scroll lateral ===== */
@media (max-width: 768px){

  /* a barra mobile vira um flex container */
  .menu-mobile{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    overflow: visible;          /* não recorta o conteúdo interno */
  }

  /* botão do carrinho: quadrado, laranja, no canto direito */
  .menu-mobile .btn_modal_carrinho.js-open-cart{
    position: relative !important;  /* volta para o fluxo */
    margin-left: auto;              /* empurra para a direita */
    width: 52px; height: 52px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid #ff9a00;
    background: #ff9a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
    z-index: 10;
  }
  .menu-mobile .btn_modal_carrinho.js-open-cart i{
    font-size: 22px; color: #1a1a1a; line-height: 1;
  }
  .menu-mobile .btn_modal_carrinho.js-open-cart .cart-qty{
    position: absolute;
    top: 6px; right: 6px;
    min-width: 18px; height: 18px; padding: 0 4px;
    border-radius: 999px;
    display: grid; place-items: center;
    font-size: 11px; font-weight: 900;
    background: #fff; color: #1a1a1a;
    border: 1px solid rgba(0,0,0,.12);
    pointer-events: none;
  }

  /* IMPORTANTÍSSIMO: neutraliza a antiga regra “cart-right” absoluta */
  .btn_modal_carrinho.cart-right{
    position: static !important;
    top: auto !important;
    right: auto !important;
    margin-left: auto !important;
  }

  .espaco-mobile{
    width: 100%;
    height: 50px;
  }
}

.espaco-inicial, .espaco-inicial-interno{
  width: 100%;
  height: 0px;
}



















































