:root {
  --cor-principal: #fff;
  --cor-secundaria: #000;
}

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

    #loader-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #fff;
      z-index: 111000;
    }

    #loader {
      width: 64px;
      height: 64px;
    }

    #loaderContainer {
      display: flex;
      position: fixed;
      z-index: 1000000;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      justify-content: center;
      align-items: center;
      width: 45px;
      height: 45px;
    }

    .loaderAdd i {
      font-size: 40px;
      animation: spin 1s linear infinite;
    }

    .button.is-outlined.selected {
      border-color: #28a745;
      background-color: #dff0d8;
      color: #155724;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }  
    .loader::before {
      content: '';
      display: block;
      width: 50px;
      height: 50px;
      border: 5px solid #fff;
      border-radius: 50%;
      border-top-color: transparent;
      animation: spin 1s linear infinite;
    }

    .delete-observacao {
      position: absolute;
      top: 5px;
      right: 5px;
      text-decoration: none;
      color: #f44336; /* Cor vermelha */
      font-size: 14px;
      cursor: pointer;
    }
    
    .delete-observacao:hover {
      text-decoration: underline;
    }

.subtitle.is-7 {
  margin: 0;
}
.botaoUp {
  margin-bottom: 8px;
}

.modal .box {
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}

.social-links a:hover {
  color: blue;
}

.total-adicionais {
  margin-top: 15px;
  font-weight: bold;
}

#productQuantity {
  width: 42px;
  height: 42px;
  padding: 0;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--cor-principal);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all .5s ease;
}

.field.has-addons  {
  align-items: center;
}

.progress-container {
  width: 100%;
  height: 10px;
  background: linear-gradient(135deg, #e0eafc, #cfdef3);
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, #5b8de0, #3a6bb1);
  transition: width 0.8s ease;
}

.footer {
  padding-bottom: 150px !important;
}

footer {
  padding: 20px 0;
  text-align: center;
}

svg path {
  stroke: var(--cor-secundaria);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}
.animate path {
  animation: desenhar 15s ease forwards;
}
svg:hover path {
  stroke: var(--cor-principal);
  stroke-width: 0;
  fill: var(--cor-secundaria);
  transition: stroke 1s ease, stroke-width 1s ease, fill 2s ease;
}
@keyframes desenhar {
  to {
    stroke-dashoffset: 0;
  }
}
.thumbnail {
  width: 100px;
  height: 100px;
  object-fit: none;
  margin: 0 8px;
  cursor: pointer;
  min-width: 100px;
  border-radius: 8px;
}
.modal-image-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}
.desconto-badge {
  background-color: #dc3545;
  color: white;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 5px;
  font-weight: bold;
}
.riscado {
  text-decoration: line-through;
  color: gray !important;
  margin-right: 4px;
}
.contentPiza {
  width: 300px;
}

.prev-btn, .next-btn {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #000;
  border: none;
  padding: 12px 16px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.prev-btn:hover, .next-btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.prev-btn:active, .next-btn:active {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transform: translateY(0);
}

.prev-btn:focus, .next-btn:focus {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

.modal-image {
  transition: transform 0.5s ease-in-out;
  transform: translateX(0);
  opacity: 1;
}
.slide-in {
  transform: translateX(100%);
  opacity: .5;
}
.slide-out {
  transform: translateX(-100%);
  opacity: .5;
}
.social-links a {
  margin: 0 10px;
  font-size: 24px; 
}

.card-image:first-child img {
  object-fit: contain;
}

.titulo {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  max-width: 90%;
}

.hidden {
  display: none;
}

.diviPratos {
display: flex; overflow: auto;
}

.title.is-5 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 8px !important;
}

.cardPiza {
  border-radius: 8px;
  box-shadow: 0 2px 8px 2px rgba(0, 0, 0, 0.1);
  margin: 20px 10px;
  padding: 5px;
  width: 260px;
  min-width: 260px;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.cardPiza:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: #fafafa;
  transition: all .3s ease;
} 

.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.modal-card-head, .modal-card-foot {
  border-radius: 0;
}

.modal-content {
  width: 100%;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  max-width: 640px;
  overflow-x: hidden;
  background-color: white;
}
#modalPizzaDescription {
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  text-transform: capitalize;
}
#modalThumbnails {
  display: flex;
  margin-bottom: 16px;
  overflow-x:auto;
  max-width: 100%;
  overflow-y: hidden;
}
#modalPizzaPrice{
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 20px;
}
.input-busca {
  max-width: 500px;
  width: 90%;
  padding: 10px;
  margin: 20px 0;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2;
}
.close:hover {
  color: #333;
}
.pizza-name {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pizza-price, .preco-desconto {
  font-weight: bold;
  margin: 5px;
}
#barraInferior {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: var(--cor-principal); 
  padding: 12px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 4px 2px rgba(0, 0, 0, 0.2);
  z-index: 100; 
}

.icone-barra {
  font-size: 1.2rem;
}

.media-left figure img {
  border-radius: 8px;
}

.social-links a:hover {
  color: blue !important;
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.installPrompt {
  position: fixed;
  margin: auto;
  bottom: 150px;
  left: 8px;
  right: 8px;
  transform: translateX(-50%);
  background-color: #fff;
  border: 2px solid #e0f7fa;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 10000;
  display: none;
  opacity: 0;
  max-width: 500px;
}

#permissaoNotificacao {
  transform: translateX(0) !important;
}

#installPrompt.show {
  display: block;
  animation: slideIn 0.5s forwards;
  opacity: 1;
}

#installPrompt p {
  margin: 0 0 10px 0;
}

.btnInstall, .btnCancel {
  padding: 10px 15px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.btnInstall {
  background-color: #4CAF50;
  color: white;
}

.btnInstall:hover {
  background-color: #45a049;
}

.btnCancel {
  background-color: #f44336;
  color: white;
}

.btnCancel:hover {
  background-color: #d32f2f;
}


.estrela {
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
}

.estrela.selecionada {
  color: gold;
}

.pedido {
  position: relative;
}

.marca-dagua {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #ff00008c;
  text-transform: uppercase;
  font-weight: bold;
  pointer-events: none;
  z-index: 1;
}

.avaliado {
  opacity: 0.6;
}

.modal-price {
  display: flex;
  align-items: center;
}

#modalPizzaSize {
  font-size: 1.2rem;
  font-weight: 400;
  color: red;
  margin-top: 20px;
  font-style: italic;
  margin-left: 10px;
}

#message {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 250px;
  padding: 15px 20px;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2rem;
  z-index: 100000;
  opacity: 0;
  transform: translateY(-120px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#message.show {
  opacity: 1;
  transform: translateY(0);
}

#message.success {
  background-color: #d4edda;
  color: #155724;
  border-radius: 8px;
  border: 2px solid #28a745;
}

#message.error {
  background-color: #f8d7da;
  color: #721c24;
  border-radius: 8px;
  border: 2px solid #f5c6cb;
}

#message.info {
  background-color: #e0f7fa;
  color: #007bff;
  border-radius: 8px;
  border: 2px solid #007bff;
}

.close-button {
  background: transparent;
  border: none;
  color: black;
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 5px;
  cursor: pointer;
}

.aMenu {
  color: #333;
}

.aMenu i {
  font-size: 1.5rem;
}

.pizza-description {
  margin: auto;
  width: 90%;  text-transform: capitalize;
  letter-spacing: 0.5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


.button.is-small {
  width: 40px;
  height: 40px;
}

.contador-produtos {
  background-color: #333;
  color: white;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 0.8em;
  position: absolute;
  top: 4px;
}

.button.is-fullwidth {
  width: 100%;
}

.opcao {
  color: #333;
  opacity: 0.6;
}

.tabs.is-centered.is-boxed {
    background-color: #ffffff;
    border-bottom: 1px solid #dbdbdb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Fonte mais moderna */
    transition: all 0.3s ease-in-out;
}

/* Estilo para as abas (links) */
.tabs.is-boxed li a {
    border-radius: 6px 6px 0 0;
    color: #4a4a4a;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-bottom: 1px solid #dbdbdb;
}

/* Efeito ao passar o mouse sobre a aba */
.tabs.is-boxed li:not(.is-active) a:hover {
    background-color: #f5f5f5;
    color: #00796b;
}

/* Estilo da aba ativa */
.tabs.is-boxed li.is-active a {
    background-color: #fff;
    border-color: #dbdbdb;
    border-bottom-color: #00796b !important;
    color: #00796b;
    font-weight: 600;
    border-bottom-width: 3px !important;
}

/* Barra de abas fixa */
.tabs.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra para dar profundidade */
}



.cart-indicator {
  position: fixed;
  bottom: 51px;
  right: 0;
  background-color: #333;
  color: white;
  padding: 10px 20px;
  width: 100%;
  box-shadow: 0 -2px 6px 1px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cart-indicator:hover {
  background-color: black;
  color: #fff;
}

.total-items {
  font-weight: bold;
}

.total-price {
  font-weight: bold;
  color: white;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-controls {
  display: flex;
  align-items: center;
}

.cart-item-controls input {
  width: 62px; text-align: center;
}

.total-section {
  margin-top: 20px;
  text-align: right;
}

.total-price-sacola {
  font-weight: bold;
  color: #333;
}


.lixera {
  background-color: transparent;
  border: none;
}

.pizza-size-options {
  display: flex;
  gap: 20px;
  justify-content: space-around;
  margin-top: 20px;
}

.size-option {
  position: relative;
  cursor: pointer;
}

.size-option input[type="radio"] {
  display: none;
}

.option-content {
  padding: 10px 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.option-content i {
  font-size: 1.5rem;
}

.size-option input[type="radio"]:checked + .option-content {
  border-color: #00796b;
  background-color: #e0f7fa;
}

.size-option:hover .option-content {
  border-color: #999;
}

.checkbox {
  font-size: 20px;
  margin: 2px;
}

.is-verde {
  background-color: #25D366;
  color: #000000;
  font-weight: bold;
}

.pizza-select {
  width: 100%;
  border-radius: 8px;
}

.pizza-select h3 {
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: black;
}

.pizza-list {
  display: flex;
  overflow: auto;
  gap: 10px;
  height: auto;
  overflow-y: hidden;
  padding: 10px;
}

.pizza-item {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px 2px rgba(0, 0, 0, 0.1);
}

.pizza-item:hover {
  transform: scale(1.05);
  border: none;
}

.pizza-item img {
  min-width: 160px;
  height: auto;
  border-radius: 8px;
}

.pizza-item h4 {
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  color: #5d4037;
}

.pizza-item.selected {
 background-color: #e0f7fa;
  border: 2px solid #00796b;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.banner {
  position: relative;
  max-width: 1200px;
  min-height: 300px;
  margin: 20px auto;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  background: url('../img/bannerDoisSabores.webp') no-repeat center;
  background-size: cover;
  padding: 0 !important;
}

.largo {width: 100% !important;}

.banner-content {
  display: flex;
  height: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
}

.banner-content .title {
  font-size: 2.2rem;
  font-weight: bold;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 15px;
  color: white !important;
}

.banner-button {
  background-color: #ffae00;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, background-color 0.2s;
}

.banner-button i {
  margin-right: 8px;
}

.banner-button:hover {
  background-color: #e69b00;
  transform: scale(1.05);
}
.ocultado {
  display: none;
}

.wheel-container {
  position: relative;
  width: 85vw;
  max-width: 500px;
  height: 85vw;
  max-height: 500px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  margin: 0 auto;
}
/* Canvas da roleta: usamos uma transição com desaceleração */
#wheelCanvas {
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  /* Duração definida em JS para maior flexibilidade */
}
/* Logo central */
.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  font-weight: bold;
  font-size: 16px;
  z-index: 1;
}
/* Ponteiro fixo no topo */
.pointer {
  margin: auto;
  margin-bottom: 12px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid black;
  z-index: 2;
}

.spin-button {
  margin: auto;
}

.progress-containerDois {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 500px;
  margin: 20px auto;
}

/* Linha de fundo da barra */
.progress-containerDois::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: 4px;
  background-color: #ddd;
  z-index: 1;
}

/* Barra de progresso (se ajusta conforme as etapas) */
.progress {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  background-color: #4caf50;
  width: 0%;
  z-index: 2;
  transition: width 0.4s ease;
}

/* Estilo dos círculos das etapas */
.circle {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 3px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

/* Círculo ativo (etapa concluída) */
.circle.active {
  background: #e0f0d9;
  border-color: #4caf50;
}

.card-resumo {
  padding: 12px;
  background-color: lightgoldenrodyellow;
  border-radius: 6px;
  border-left: 4px solid #e1e1a9;
}

#pedidosAbertos {
  position: fixed;
  bottom: 120px;
  right: 20px;
}
#horarioEntrega {
  width: 100%;
}

#horarioSelecionado {
  color: #3273dc;
}
.franja {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
  margin-top: 1rem;
}
.franja:hover {
  background-color: #0056b3;
}

.editar-endereco {
  color: #007bff;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 10px;
  transition: color 0.2s;
}

.editar-endereco:hover {
  color: #0056b3;
}

hr {
  border: 0;
  height: 1px;
  background-color: #e0e0e0;
  margin: 12px 0;
}

.pizza-icon {
  font-size: 2rem;
  margin: 0 5px;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}
.pizza-icon.disabled {
  color: #ccc; /* cor para o ícone desativado */
}
.pizza-icon.colored {
  color: #FF6347; /* cor destacada (tomate) para o ícone */
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.tabs li.is-active a {
  color: black;
  font-weight: bold;
}
 .order-switch {
    display: inline-flex;
    align-items: center;
    background: #ffffffcc;
    padding: 4px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    font-size: 0.9rem;
    user-select: none;
    margin: auto;
  }
    .order-switch .switch-btn {
        align-items: center;
        gap: 8px;
        padding: 8px 16px; /* Aumentei um pouco o padding */
        border-radius: 999px;
        border: none;
        background: transparent;
        cursor: pointer;
        outline: none;
        font-weight: 600;
        color: #444;
        transition: all .2s ease;
    }
    .order-switch .switch-btn i { font-size: 1.0rem; width: 18px; text-align: center; }
    .order-switch .switch-btn.active {
        background-color: #00796b;
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(31,165,106,0.18);
    }
    .order-switch .switch-btn:focus-visible {
        box-shadow: 0 0 0 3px rgba(79,193,141,0.3);
    }
    @media (max-width: 420px) {
        .order-switch { padding: 4px; }
    }
@media screen and (max-width: 768px) {
    .banner {
      max-width: 90% !important;
    }

    .cart-item-controls input {
      max-width: 42px;
    }

    .botaoBanner {
      bottom: 60px;
      width: 80%;
    }

  .column {
    width: 100% !important;
    padding: 10px;
  }

  .modal-card {
    height: 100% !important;
    width: 100%;
    max-height: 100%;
  }

  .card {
    margin-bottom: 20px;
  }

  .card-content {
    padding: 8px;
  }
  
  .section {
    padding: 1em;
  }

  #productQuantity {
    width: 42px;
    height: 42px;
  }

  #barraInferior {
    width: 100%;
  }

  .modal-content {
    height: 100vh !important;
    max-height: 100vh !important;
  }

  .cart-indicator {
    width: 100%;
  }

  #message {
    left: 20px;
  }

  .tabs.is-centered.is-boxed ul {
    /* Altera o comportamento do flexbox para não centralizar e permitir overflow */
    justify-content: flex-start;
    
    /* Permite a rolagem horizontal */
    overflow-x: auto;
    
    /* Garante que os itens não quebrem a linha */
    white-space: nowrap;
    
    /* Melhora a experiência de rolagem em iOS */
    -webkit-overflow-scrolling: touch;
  }

  /* Opcional: Esconde a barra de rolagem visualmente, mas mantém a funcionalidade */
  .tabs.is-centered.is-boxed ul::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .tabs.is-centered.is-boxed ul {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

}

@media screen and (min-width: 768px) {
  #barraInferior {
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
  .cart-indicator {
    gap: 5rem;
    justify-content: center;
  }
}