@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@100;300;400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonte global */
body {
  font-family: "Alegreya Sans", sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #212529;
  margin-top: 115px;
  /* ajuste esse valor conforme a altura do topo */
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #0d6efd;
  /* cor padrão do Bootstrap */
}

/* Containers extras */
.section {
  padding: 60px 0;
}

/* Footer fixo no final (se precisar) */
footer {
  margin-top: auto;
}

/* VARIAVEIS */

:root {
  --cor-primaria: #fdcbcb;
  --cor-vermelhor-logo: #e0062a;
  --cor-footer: #e7e5e4;
}

/* TOPO */

.faixaLogin {
  font-size: 16px;
  padding-top: 6px;
  padding-bottom: 4px;
}

.faixaLogin a:hover {
  color: var(--cor-vermelhor-logo);
}

.faixaLogin .material-symbols-outlined {
  font-size: 17px;
}

.menuNav a {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 500;
}

.topoFull {
  background-color: var(--cor-primaria);
  padding-bottom: 20px;
  position: fixed;
  /* fixa na tela */
  top: 0;
  /* gruda no topo */
  left: 0;
  /* começa do canto esquerdo */
  width: 100%;
  /* ocupa toda a largura */
  z-index: 9999;
  /* garante que fique acima dos outros elementos */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* opcional, dá um sombreamento suave */
}

.menuNav {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.logo {
  text-align: center;
  position: relative;
}

.logo img {
  margin-top: -10px;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
}

.menuEsquerdo {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.menuDireito {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.faixaLogin {
  text-align: right;
}

.fixoDisplay {
  position: relative;
}

.badge {
  background-color: #e00629;
  position: absolute;
  top: -8px;
  right: -8px;
  height: 18px;
  width: 18px;
  border-radius: 100px;
  padding: 0px;
  padding-top: 3px;
}

/* BARRA BUSCA TOPO */

/* .barBusca {
  width: 100%;
  padding-top: 25px;
  display: flex;
  justify-content: right;
} */

.inputBusca {
  height: 60px;
  background-color: #f1f1f1;
  border-radius: 10px;
  max-width: 680px !important;
  background-image: url("../img/busca-barra-icon.webp");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  font-size: 20px;
}

.filtroCategoriaproduto {
  border-width: 2px 2px 2px 0px;
  /* top, right, bottom, left */
  /* border-style: solid;
  border-color: #eecece;
  border-radius: 0px 30px 30px 0px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0px;
  /* max-width: 830px; */
  justify-content: space-around;
}

.filtroCategoriaproduto p {
  /* display: inline-block; */
  list-style: none;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  position: relative;
  margin-bottom: 0px;
}

.listCategoriasFiltro {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

.barraCategoria {
  padding-right: 15px;
  min-width: 160px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px !important;
  text-decoration: underline;
  text-decoration-color: var(--cor-primaria);
  text-decoration-thickness: 3px;
}

.filtros {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 50px;
  width: 100%;
}

/* RANGE */

.filtro-preco-row {
  display: flex;
  justify-content: right;
  /* padding-right: 36px; */
}

.filtro-preco {
  width: 280px;
  /* margin: 20px; */
}

.filtro-preco .material-symbols-outlined {
  font-size: 19px;
}

.filtro-preco label {
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.range-container {
  position: relative;
  width: 100%;
  height: 8px;
  margin-bottom: 15px;
}

.slider {
  position: absolute;
  width: 100%;
  height: 8px;
  background: #f8c0c0;
  border-radius: 5px;
  z-index: 1;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: transparent;
  position: absolute;
  top: 0;
  pointer-events: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: red;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

input[type="range"]::-moz-range-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: red;
  cursor: pointer;
  border: none;
  z-index: 2;
}

.valores {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.grupoValores {
  border: 1px dotted #f89898;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  min-width: 180px;
  text-align: center;
  display: flex;
  justify-content: space-around;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
}

.grupoValoresInterno {
  border: 1px dotted #f89898;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  min-width: 280px;
  text-align: center;
  display: flex;
  justify-content: space-around;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
}

.btn-mostrar {
  border: 1px dotted #f89898;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  background: transparent;
  cursor: pointer;
  height: 32px;
}

.titulosMain {
  text-align: center;
  font-weight: 400;
  font-size: 43px;
  position: relative;
}

.titulosMain::after {
  content: "";
  position: absolute;
  top: -30px;
  /* sobe a imagem acima do título */
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  /* ajuste conforme a imagem */
  height: 16px;
  /* ajuste conforme a imagem */
  background: url("../img/adorno-titulos.webp") no-repeat center;
  background-size: contain;
  /* ou cover, dependendo do caso */
}

/* CARDS LISTA PRODUTOS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-content: start;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1400px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  overflow: hidden;
  text-align: center;
  background: #fff;
  height: 100%;
}

.linkAddCartHome {
  width: 100%;
  text-align: right;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1/1;
  /* sempre quadrado */
  object-fit: cover;
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: -10px;
}

.product-info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.product-info h5 {
  font-size: 17px;
  text-align: left;
}

.product-info p {
  font-size: 18px;
  margin-top: -10px;
}

.btn-add-cart {
  border: 1px solid var(--cor-primaria);
  padding: 10px 15px;
  color: var(--cor-vermelhor-logo);
  transition: background-color 0.6s ease, color 0.6s ease;
}

.btn-add-cart:hover {
  background-color: var(--cor-vermelhor-logo);
  color: #fff;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito no hover */
.card:hover {
  transform: translateY(-5px) scale(1.05);
  /* sobe e aumenta um pouco */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
.footer {
  width: 100%;
  padding: 30px 10px 10px 10px;
  min-height: 400px;
  background-color: var(--cor-footer);
  margin-top: 50px;
}

.footer h1 {
  font-size: 41px;
  font-weight: 400;
  color: #595858;
}

.descricaoFooter {
  font-size: 16px;
  line-height: 20px;
}

.footer p {
  font-size: 16px;
  line-height: 20px;
}

.contatosSociais {
  text-align: center;
  padding-top: 135px;
}

.iconsSocialFooter {
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  margin: 0px !important;
  padding: 0px !important;
}

.iconsSocialFooter .fa-brands {
  font-size: 28px;
}

.iconsSocialFooter a:hover {
  color: var(--cor-vermelhor-logo);
}

.contatosSociais .fa-map-location-dot {
  font-size: 32px;
}

.pedidosWhastappFooter {
  text-align: right;
}

.fonePedidosFooter {
  font-size: 21px !important;
  margin-top: 20px;
  font-weight: bold;
}

.termosFooter p {
  text-align: center;
  font-size: 14px;
}

.termosFooter ul {
  margin: 0;
  padding: 0;
  text-align: center;
  display: inline-block;
  list-style: none;
  width: 100%;
}

.termosFooter ul li {
  display: inline-block;
  margin: 0px 10px;
}

.logoDesenvolvimento {
  text-align: center;
}

.menu-btn {
  font-size: 24px;
  cursor: pointer;
  border: none;
  background: none;
}

/* Menu lateral */
.side-menu {
  position: fixed;
  top: 0;
  left: -250px;
  /* escondido */
  width: 250px;
  height: 100%;
  background: #343a40;
  color: #fff;
  transition: left 0.3s ease;
  padding-top: 60px;
  z-index: 999;
}

.sideMenuLista ul {
  padding: 0px;
  margin: 0px;
}

.sideMenuLista ul li {
  list-style: none;
}

.side-menu.active {
  left: 0;
  /* aparece */
}

.side-menu a {
  display: block;
  padding: 10px 30px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
}

.side-menu a:hover {
  background: #495057;
}

.sideMenuEntrarCadastrar {
  font-size: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.sideMenuCarrinho {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #595858;
  padding-top: 10px;
}

.sideMenuPedidosWhatsapp img {
  width: 100%;
  height: auto;
  text-align: center;
}

/* Overlay escurecendo fundo */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 998;
}

.overlay.active {
  display: block;
}

.menu-btn {
  display: none;
}

.pedidosCart {
  max-width: 650px;
  margin-top: 65px !important;
  margin: 0 auto;
}

.tituloItensCart {
  border: 1px solid #ccc;
  padding: 5px;
  margin-top: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.txtCenter {
  text-align: center;
}

.linhaItensCart {
  border-bottom: 1px dotted #ccc;
  padding: 5px;
}

.txtRight {
  text-align: right;
}

.subtotalItensCart {
  padding: 5px;
  font-weight: bold;
  font-size: 20px;
}

.btsFinalizar {
  padding-top: 30px;
}

.btFinalizarPedido {
  background-color: #f8dcbb;
  padding: 10px 40px;
  color: #000000;
  font-size: 20px;
  border-radius: 10px;
}

.btFinalizarPedido:hover {
  background-color: #f7d0a4;
  text-decoration: none;
  color: #000000 !important;
}

.btContinuar {
  background-color: #f08b18;
  padding: 10px 40px;
  color: #fff;
  font-size: 20px;
  border-radius: 10px;
}

.btContinuar:hover {
  text-decoration: none;
  background-color: #df7a06;
  color: #fff !important;
}

.divisaoItensCart {
  width: 100%;
  height: 2px;
  background-color: #ccc;
  margin-top: 10px;
  margin-bottom: 10px;
}

.titleItensExtra {
  padding-top: 5px;
}

.pedidosCart {
  font-size: 15px;
}

.lkDeleteItem {
  font-size: 18px !important;
  padding-top: 5px;
  margin-left: 5px;
}

.lkDeleteItem:hover {
  color: #e0062a;
}

.centerEnd {
  display: flex;
  justify-content: end;
  align-items: center;
}

.centerLeft {
  display: flex;
  align-items: left;
}

.centerCenter {
  display: flex;
  justify-content: center;
}

.containerLogin {
  max-width: 1000px;
  padding-bottom: 150px;
}

.formLoginCadastro {
  padding-top: 100px;
}

.loginColunaEsquerda {
  max-width: 400px;
  margin: 0 auto;
}

.campoFormLogin {
  height: 45px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 20px;
}

.lkEntraLogin {
  text-align: right;
}

.lkEntraLogin a {
  background-color: #000;
  padding: 15px 60px;
  border-radius: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.6s ease;
  /* animação suave */
}

.lkEntraLogin a:hover {
  background-color: #ff0125;
  transition: background-color 0.6s ease;
  /* animação suave */
}

.lkNaoSenhaLogin {
  text-align: right;
  padding-top: 13px;
}

.lkNaoSenhaLogin a {
  font-size: 15px;
}

.lkNaoSenhaLogin a:hover {
  color: #ff0125;
}

.txtAvisoLogin {
  font-size: 15px;
  margin-bottom: 20px;
  text-align: right;
  line-height: 15px;
}

.txtAvisoLogin a:hover {
  color: #ff0125;
}

.lkLoginAjuste {
  margin-top: 38px;
}

.h1Login {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  font-weight: bold;
}

input[type="text"],
input[type="password"] {
  outline: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input:focus {
  border-color: #999 !important;
  box-shadow: none;
}

.painelPerfilCliente {
  max-width: 1000px;
  margin: 0 auto;
}

.barraTitulosPerfil {
  background-color: #000;
  padding: 10px;
  height: 42px;
  border-radius: 8px;
  margin: 30px 0px;
  font-weight: 500;
  font-size: 17px;
  display: flex;
  align-items: center;
  color: #fff;
}

.lkSalvarPerfil {
  text-align: right;
  padding-top: 30px;
}

.lkSalvarPerfil a {
  background-color: #000;
  padding: 15px 60px;
  border-radius: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.6s ease;
  /* animação suave */
}

.lkSalvarPerfil a:hover {
  background-color: #ff0125;
  transition: background-color 0.6s ease;
  /* animação suave */
}

.titlePerfil {
  font-size: 30px !important;
  margin-top: 50px;
}

.msg-sucesso {
  color: #2e7d32;
  background: #c8e6c9;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  animation: fadeIn 0.5s ease;
  margin-top: -20px !important;
  margin-bottom: 30px;
  color: #000 !important;
}

.msg-error {
  color: #000;
  background: #FDCBCB;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  animation: fadeIn 0.5s ease;
  margin-top: -20px !important;
  margin-bottom: 30px;
  color: #000 !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offEndereco {
  color: var(--cor-vermelhor-logo) !important;
}

.offEndereco a {
  color: #000;
}

.painelClienteEndereco {
  max-width: 1000px;
  margin: 0 auto;
}

.divSalvarEndereco {
  text-align: right;
  margin-top: 40px;
}

.lkSalvarEndereco {
  background-color: #000;
  padding: 15px 60px;
  border-radius: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.6s ease;
  /* animação suave */
}

.lkSalvarEndereco:hover {
  background-color: #ff0125;
  color: #fff;
  transition: background-color 0.6s ease;
  /* animação suave */
}

.mb25 {
  margin-bottom: 25px;
}

.painelMeusEnderecos {
  max-width: 1000px;
  margin: 0 auto;
}


/* Fundo escuro */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}

/* Caixa de confirmação */
.confirm-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  width: 300px;
}

.confirm-box p {
  margin-bottom: 15px;
  font-size: 16px;
}

.btn {
  padding: 8px 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 5px;
}

.btn-confirm {
  background: #e53935;
  color: #fff;
}

.btn-cancel {
  background: #ccc;
}

.ColLinkExcluirEndereco {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ColLinkExcluirEndereco a:hover {
  color: var(--cor-vermelhor-logo);
}

.boxMeusEnderecos:hover {
  color: var(--cor-vermelhor-logo);
}

.boxEndBorda {
  margin-bottom: 2px;
}

.boxEndBorda:hover {
  background-color: #f7f4f4;
  margin-bottom: 2px;
}

.menuPainel {
  width: 100%;
  margin: 0px !important;
  padding: 0px !important;
  display: flex;
  justify-content: center;
}

.menuPainelItem {
  display: inline-block;
  text-align: center;
  width: 200px;
  padding: 10px 0px;
  margin: 0px 20px;
  list-style: none;
  background-color: #ccc;
  border-radius: 8px;
  max-width: 200px !important;
  transition: background-color 0.6s ease;
}

.menuPainelItem:hover {
  color: #fff;
  background-color: #a3a3a3;
  transition: background-color 0.6s ease;
}

.painelCliente {
  margin-top: 25px;
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.painelMeusPedidos {
  max-width: 1000px;
  margin: 0 auto;
}

.lkAdicionarEndereco {
  background-color: #000;
  padding: 15px 60px;
  border-radius: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.6s ease;
  /* animação suave */
}

.lkAdicionarEndereco:hover {
  color: #fff;
  background-color: var(--cor-vermelhor-logo);
  transition: background-color 0.6s ease;
}

.dvAdicionarEndereco {
  text-align: center !important;
  margin-top: 50px !important;
}

.divlkSemPedido {
  text-align: center;
  margin-top: 50px;
}

.divlkSemPedido p {
  font-size: 20px;
}


.galeria {
  position: relative;
  /* posição padrão */
  width: 350px;
  /* ou o tamanho real da sua galeria */
  transition: all 0.3s ease;
}

.galeria.fixa {
  position: fixed;
  top: 80px;
  /* ajuste conforme a altura do seu cabeçalho */
  left: 20px;
  /* ou use calc() pra alinhar certinho */
  z-index: 999;
}

.detalheProduto {
  display: flex;
  align-items: flex-start;
  position: relative;
  /* precisa pra o sticky funcionar direito */
}

.detalheProduto .galeria {
  position: sticky;
  top: 120px;
  /* ajusta conforme a altura do cabeçalho */
  align-self: flex-start;
}

.entrega {
  max-width: 1320px;
  margin-top: 5px !important;
  margin: 0 auto;
}

.entrega .fa-shipping-fast {
  color: var(--cor-primaria);
}

h1 {
  font-size: 35px;
}

.entrega h3 {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 20px;
  color: var(--cor-vermelhor-logo);
}

.entrega p {
  margin-bottom: -5px;
  font-size: 17px;
}

.sobre {
  font-size: 16px;
}

.marTop {
  margin-top: -10px;
}

.listaAreasAll {
  padding: 15px 0px;
}

.h1Entrega {
  margin-bottom: -20px;
}

.alertSemLogar {
  border-radius: 8px;
  background-color: wheat;
  width: 100%;
  text-align: center;
  padding: 20px;
  font-size: 18px;
  margin-top: 30px;
}

.alertSemLogar a:hover {
  color: var(--cor-vermelhor-logo);
}

.titleFinalizarPedido {
  display: flex;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  background: #f5f5f5;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 20px 0 10px;
  text-align: left;
}

.centerRadio {
  display: flex;
  justify-content: center;
  align-items: center;
}

.linhaEnderecos {
  background-color: #f5f3f3;
  max-width: 626px;
  margin: 0 auto;
  margin-bottom: 5px;
  padding: 10px 0px;
  line-height: 19px;
  font-size: 17px;
  border-radius: 8px;
}

.linhaEnderecos:hover {
  background-color: #ecebeb;
}

.lkDadosDesatualizados {
  background-color: var(--cor-primaria);
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: 500;
}

.lkDadosDesatualizados:hover {
  color: var(--cor-vermelhor-logo);
}

.linhasRetirada {
  font-size: 16px !important;
  margin-bottom: 10px;
}

.boxSecoesHome {
  padding-top: 60px;
  min-height: 700px;
  width: 100%;
  margin-bottom: 20px;
}

.btLinkFecharPedido {
  margin-top: 60px;
  text-align: center;
}

.btLinkFecharPedido a {
  font-size: 16px;
  text-transform: uppercase;
  background-color: #FDCBCB;
  padding: 12px 60px;
  border-radius: 8px;
  color: #000;
  font-weight: 400;
}

.mt-20 {
  margin-top: 20px;
}

.alertEnderecoOff {
  padding: 10px 0px;
  color: #ff0125;
  font-weight: 500;
}

.alertEnderecoOn {
  padding: 10px 0px;
  color: #2e7d32;
  font-weight: 500;
}

.confPedidoFinal {
  border: 1px dotted #999;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
  padding: 25px;
  margin-top: 60px;
}

.tituloEndPedido {
  text-align: center;
  border-bottom: 1px dotted #999;
  margin-bottom: 30px;
}

.tituloEndPedido h2 {
  font-size: 22px;
  margin-top: -12px;
  margin-bottom: 20px;
}

.endConfirm {
  width: 100%;
  color: var(--cor-vermelhor-logo);
  font-size: 13px;
  line-height: 12px;
}

.detalheValorFinal {
  font-size: 14px;
  margin-top: -47px;
}

.pag {
  margin-top: -19px;
  font-weight: bold;
}

.linkConcluirPedido.desabilitado {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.font-14px {
  font-size: 16px;
  font-weight: bold;
}

.valorPedidoFim {
  line-height: 15px;
  margin-bottom: 45px;
}

.titleCardapioH2 {
  margin-top: -12px !important;
}

.semItemCardapio {
  max-width: 350px;
  margin: 0 auto;
  font-size: 22px;
  text-align: center;
  border: 1px dotted #ccc;
  border-radius: 8px;
  padding: 25px;
}

.semItemCardapio img {
  margin-bottom: 15px;
}

.product-card-ajax {
  opacity: 0;
  transform: scale(0.6);
  transition: transform 0.35s ease, opacity 0.35s ease;
  will-change: transform, opacity;
}

.product-card-ajax.show {
  opacity: 1;
  transform: scale(1);
}

.alertProdutoPedido {
  background-color: #FFC107;
  padding: 10px;
  width: 100%;
  color: #000000 !important;
  font-weight: 600;
  border-radius: 8px;
  display: flex;
}

.alertProdutoPedido span {
  margin-right: 10px;
}


.asterico {
  font-weight: bold;
  color: red;
}


.linhasRetirada {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 15px 0;
}

.opcaoRetirada {
  flex: 1;
}

.opcaoRetirada input {
  display: none;
}

.opcaoRetirada label {
  display: block;
  padding: 12px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: .3s;
  font-size: 16px;
}

/* Hover */
.opcaoRetirada label:hover {
  border-color: #E00629;
}

/* Selecionado */
.opcaoRetirada input:checked+label {
  background: #E00629;
  color: #fff;
  border-color: #E00629;
}

.linhasPagamento {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 15px 0;
}

.opcaoPagamento {
  flex: 1;
}

.opcaoPagamento input {
  display: none;
}

.opcaoPagamento label {
  display: block;
  padding: 12px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: .3s;
  font-size: 16px;
}

/* Hover */
.opcaoPagamento label:hover {
  border-color: #E00629;
}

/* Selecionado */
.opcaoPagamento input:checked+label {
  background: #E00629;
  color: #fff;
  border-color: #E00629;
}

.blDataHoraRetirar {
  margin: 15px 0;
}

/* Label */
.blDataHoraRetirar label {
  font-size: 15px;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
  display: block;
}

/* Inputs internos */
.blDataHoraRetirar input,
.blDataHoraRetirar select {
  width: 100%;
  padding: 12px 14px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #ffffff;
  transition: 0.3s ease;
  outline: none;
}

/* Foco bonito */
.blDataHoraRetirar input:focus,
.blDataHoraRetirar select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* Para deixar o bloco inteiro harmonizado */
.blDataHoraRetirar .inputWrapper {
  margin-bottom: 15px;
}


.blDataHoraDelivery {
  margin: 15px 0;
}

/* Label */
.blDataHoraDelivery label {
  font-size: 15px;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
  display: block;
}

/* Inputs internos */
.blDataHoraDelivery input,
.blDataHoraDelivery select {
  width: 100%;
  padding: 12px 14px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #ffffff;
  transition: 0.3s ease;
  outline: none;
}

/* Foco elegante */
.blDataHoraDelivery input:focus,
.blDataHoraDelivery select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* Para separar os campos */
.blDataHoraDelivery .inputWrapper {
  margin-bottom: 15px;
}

.mgDireitaIconsTittle {
  margin-right: 6px;
}

.aceiteTermos {
  margin: 20px 0;
  display: flex;
  align-items: center;
}

/* Esconde o checkbox padrão */
.aceiteTermos input {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 6px;
  margin-right: 10px;
  cursor: pointer;
  transition: .3s ease;
  position: relative;
  background: #fff;
}

/* Quando passa o mouse */
.aceiteTermos input:hover {
  border-color: #E00629;
}

/* Quando marcado */
.aceiteTermos input:checked {
  background: #E00629;
  border-color: #E00629;
}

/* Checkmark ✓ */
.aceiteTermos input:checked::after {
  content: "✓";
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: -2px;
  left: 4px;
}

/* Texto */
.aceiteTermos span {
  font-size: 18px;
  color: #333;
  cursor: pointer;
}

.erroLoginPag {
  border: 1px dotted #ccc;
  padding: 5px;
  border-radius: 8px;
  margin-top: -10px;
  margin-bottom: 10px;
  background-color: rgb(252, 188, 188);
  color: #000000;
  font-weight: 500;
}

.img-wrapper {
  position: relative;
  background: #f2f2f2;
  overflow: hidden;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid #ddd;
  border-top: 4px solid #b1afaf;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#map {
  height: 600px;
  max-width: 1200px;
  border: 1px solid #000;
  margin: 0 auto;
  margin-top: 30px;
}


.lnkOpcoesVerificarEndereco {
  display: flex;
  justify-content: right;
  margin-top: 30px !important;
}

.lnkButton {
  background-color: #000;
  padding: 10px 15px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  margin-right: 15px;
}

.lnkButton:hover {
  color: #fff;
}

.max1200 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.gm-style-iw-chr {
  display: none !important;
}

.gm-style-iw-d {
  padding-top: 10px;
}

.swal-text-left {
  text-align: left !important;
}

.inforEnderecoCadastro {
  display: flex;
  justify-content: left;
  align-items: anchor-center;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  padding-top: 15px;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 23px;
  font-size: 18px;
}

.inforEnderecoCadastroP {
  color: var(--cor-vermelhor-logo);
  width: 70px;
  text-align: center;
}

.locOk {
  background-color: #136f0a;
  padding: 10px 15px;
  font-size: 16px;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #E00629;
  /* Cor do contorno */
  border-radius: 15px;
  /* Bordas arredondadas */
  margin-left: 0px !important;
  overflow: hidden;
  /* Garante que o conteúdo fique dentro do contorno */
}

.quantity-control button {
  background-color: transparent;
  border: none !important;
  padding: 0px;
  font-size: 25px !important;
  font-weight: bold;
  color: #E00629;
  /* Cor dos sinais */
  cursor: pointer;
  font-family: "Titillium Web", sans-serif;
}

.quantity-control input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 25px;
  color: #E00629;
  /* Cor do texto */
  -moz-appearance: textfield;
  /* Remove setas do Firefox */
  background-color: #fff !important;
  font-family: "Titillium Web", sans-serif;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  /* Remove setas do Chrome */
  margin: 0;
}

.quantity-control input:focus {
  outline: none;
  /* Remove o contorno ao focar */
}

.quantityControl {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-around;
}

.totalItemsBox {
  font-family: "Titillium Web", sans-serif;
  margin-top: -10px;
  font-weight: bold;
  color: #E00629;
  /* Cor do texto */
}

.price {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-size: 25px;
  margin: 8px 0;
  margin-bottom: 30px !important;
}

#totalBox {
  font-family: "Titillium Web", sans-serif;
}

.preco-antigo {
  position: relative;
  display: inline-block;
  color: #000000;
  /* cor do texto antigo (opcional) */
  padding: 0 1px;
  /* espaço para a linha não “colar” no texto */
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
}

.preco-antigo::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 102%;
  height: 1px;
  background: red;
  transform: rotate(-10deg);
  transform-origin: center;
}

.dePor{
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  color: #444;
}