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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}


.main-container {
  padding: 5px;
}

.cards {
  margin-top: 25px;
  justify-content: center;
}

.card {
  margin: 10px;
  padding: 20px;
  height: 120px;
  border-radius: 10px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.2s;
  width: 100%;
}


.card:hover {
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
  transform: scale(1.01);
}


.card-title {
  grid-row: 2/4;
  font-weight: 300;
  color: #fff;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}



.link-card {
  text-decoration: none;
}



.carrinho {
  margin-right: 10px;
}


/* CARD BACKGROUNDS */

.azul {
  background: radial-gradient(#1fe4f5, #3fbafe);
}

.rosa {
  background: radial-gradient(#fbc1cc, #fa99b2);
}

.azul-escuro {
  background: radial-gradient(#76b2fe, #b69efe);
}

.verde {
  background: radial-gradient(#60efbc, #58d5c9);
}

.roxo {
  background: radial-gradient(#f588d8, #c0a3e5);
}

.vermelho {
  background: radial-gradient(#f58888, #e32424);
}


.verde-escuro {
  background: radial-gradient(#1adb54, #36a867);
}


.laranja {
  background: radial-gradient(#f5c071, #c98116);
}

.amarelo {
  background: radial-gradient(#e4eb6e, #c3cc14);
}





.overlay {
  position: fixed;
  top: 60px;
  right: 10px;
  visibility: hidden;
  opacity: 0;
  background: #fcfbeb;
  width: 320px;
  max-height: 500px;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}


.popup {
  margin: 5px auto;
  padding: 10px;

}



.popup .close {
  position: absolute;
  top: 0;
  right: 5px;
  transition: all 200ms;
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.popup .close:hover {
  color: #c23232;
}


.linha {
  margin: 5px 0px;
}

.titulo-popup {
  font-size: 17px;
  font-weight: 500;
}


.conteudo-popup {
  font-size: 15px;
}



.rodape {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: #ededed;
  text-align: center;
  font-size: 12px;
  color: #363636;
  z-index: 300;
}


.link-neutro {
  color: #363636;
  text-decoration: none;
}

.link-neutro2 {
  color: #ffffff;
  text-decoration: none;
}


.valor-item {
  font-size: 12px;
  color: #025709;
}

.valor-item-maior {
  font-size: 13px;
  color: #025709;
}



.titulo-itens {
  margin-bottom: 8px;
  background: #ffc93f;
  padding: 2px;
  color: #000000;
}

.titulo-itens-pizza {
  font-size: 14px;
  background: #ffbc14;
  padding: 2px;
  width: 100%;
  color: #000000;
}


.total {
  text-align: right;
  margin-right: 5px;
  margin-top: 8px;
  font-size: 14px;
}


.direita {
  position: absolute;
  right: 30px;
}


.abaixo {
  position: absolute;
  bottom: 0px;
  width: 100%;
}



.titulo-itens-2 {
  margin-top: 12px;
  margin-bottom: 8px;
  background: #f2f0f0;
  padding: 5px;
}


.titulo-descricao-item {
  font-weight: 400;
  font-size: 14px;

}


.descricao-item {
  font-size: 13px;
  margin-top: 10px;
}


.conteudo-descricao-item {
  margin: 0px 15px;
}


.destaque {
  padding: 10px;
  margin-top: 65px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  text-align: center;
  font-weight: 400;
}


.destaque-qtd {
  padding: 10px;
  margin-top: 10px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-weight: 400;
}



.total-pedido {
  padding: 10px;
  margin-top: 10px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  bottom: 50px;
  width: 100%;
  background: #FFF;
}


.botao-carrinho {
  border-radius: 0px;
  height: 45px;
}

.area-pedidos {
  position: fixed;
  bottom: 0;
  width: 100%;

}




.overlay2 {
  position: fixed;
  bottom: 0px;
  visibility: hidden;
  opacity: 0;
  background: #fcfbeb;
  width: 100%;
  height: auto;
  z-index: 1;

  --color-light: white;
  --color-dark: #212121;
  --color-signal: #fab700;

  --color-background: var(--color-light);
  --color-text: var(--color-dark);
  --color-accent: var(--color-signal);

  --size-bezel: .5rem;
  --size-radius: 4px;

  line-height: 1.4;

  font-family: 'Inter', sans-serif;
  font-size: calc(.6rem + .4vw);
  color: var(--color-text);
  background: var(--color-background);
  font-weight: 300;
  padding: 0 calc(var(--size-bezel) * 3);
}

.overlay2:target {
  visibility: visible;
  opacity: 1;
}


.popup2 {
  margin: 5px auto;
  padding: 10px 0px;

}



.popup2 .close {
  position: absolute;
  top: 0;
  right: 5px;
  transition: all 200ms;
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.popup2 .close:hover {
  color: #c23232;
}





.card-add-carrinho {
  background: var(--color-background);
  padding: 10px;
  margin-top: 15px;
  border-radius: var(--size-radius);
  border: 3px solid var(--color-shadow, #8c8b8b);
  box-shadow: .5rem .5rem 0 var(--color-shadow, #8c8b8b);

}


.group {
  position: relative;
  margin-bottom: 25px;
}

.input {
  font-size: 14px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #757575;
}

.input:focus {
  outline: none;
}

/* LABEL ======================================= */
.label {
  color: #999;
  font-size: 15px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

/* active state */
.input:focus~label,
input:valid~label {
  top: -5px;
  font-size: 10px;
  color: #5264AE;
}



.imagem-produto {
  width: 300px;
  margin-top: 10px;
}


.carrinho-qtd {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  background: #ededed;
  padding: 10px 8px;
  margin-top: 10px;
  font-size: 14px;
  overflow-x: auto;
  white-space: nowrap;
}

.itens-carrinho-qtd {
  position: static;
  flex: 0 0 auto;
  font-size: 18px;
  margin-right: 6px;
}

.itens-carrinho-qtd-adc {
  position: static;
  flex: 0 0 auto;
  font-size: 15px;
  margin-right: 8px;
}


.menos-mais {
  min-width: 35px;
  height: 32px;
  background: #cecece;
  text-align: center;
  display: inline-block;
  font-size: 17px;
  line-height: 32px;
}

.qtd-item-carrinho {
  min-width: 35px;
  height: 32px;
  background: #fff;
  text-align: center;
  display: inline-block;
  font-size: 17px;
  line-height: 32px;
}


.valor-carrinho-it {
  min-width: 90px;
  height: 32px;
  background: #fff;
  text-align: center;
  display: inline-block;
  font-size: 17px;
  color: #0a8f17;
  line-height: 32px;
}


.nome-produto {
  font-weight: 300;
}




.overlay-excluir {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  background: #ffeae6;
  width: 300px;
  height: auto;
  z-index: 1;
}



.nome_user {
  font-size: 18px;
}

.telefone_user {
  font-size: 16px;
  color: #335a9c;
  font-weight: bold;

}

.botao_sim {
  width: 100%;
  background-color: green;
  padding: 10px;
  color: #FFF;
  border: 0px;
  border-radius: 0px;
}


.botao_nao {
  width: 100%;
  background-color: red;
  padding: 10px;
  color: #FFF;
  border: 0px;
  border-radius: 0px;
}




.badge2 {
  position: absolute;
  display: inline-block;
  min-width: 10px;
  padding: 4px 9px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f6f2f8;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #242424;
  border-radius: 5px;
  left: 0;
  top: -10px;
  z-index: 200;



}



.ocultar {
  display: none;
}




@media (max-width: 768px) {
  .card {
    padding: 5px;
    min-height: 70px;
    margin: 0px 0px 20px 0px;
  }

  .card-title {
    font-size: 18px;
  }

  .cards {
    margin-left: 0px;
    margin-right: 0px;
  }

  .ocultar-mobile {
    display: none;
  }


  .imagem-produto {
    width: 100%;
    padding: 0px 10px;
  }



  .margin_top_negativa {
    margin-top: 0px !important;
  }



}


.cardTarefas {
  margin-bottom: 10px;
  margin-left: 9px;
}



@media (min-width: 768px) {



  .cardTarefas {
    margin-bottom: 10px;
    margin-left: 5px;
  }

  .cards {
    margin-left: 100px;
    margin-right: 100px;
  }

  .ocultar-banner-web {
    display: none;

  }



  .cards {
    margin-top: 65px;
  }

  .margin_top_web {
    margin-top: 30px;
  }




}


.subtitulo-item {
  font-weight: 500;
  font-size: 13px;
}

.subtitulo-item-menor {
  font-weight: 500;
  font-size: 11px;
}


.ingredientes {
  font-size: 11px;
}


.avancar-pgto {
  font-size: 13px;
}

.previsao_entrega {
  font-size: 11px;
  margin-bottom: 10px;
}


.total-finalizar {
  position: fixed;
  bottom: 0;
  width: 100%;

}


.sabores {
  text-align: center;
  padding: 5px;
  justify-content: center;
}

.sabores-itens {
  border: 1px solid #a6a6a6;
  border-radius: 10px;
  padding: 5px;
  margin: 2px;
  font-size: 11px;
}


.ocultar_img {
  display: none;
}

.ocultar_dasktop {
  display: none;
}

.ocultar_mobile {
  display: inline;
}

.padding_input{
      padding-left:30%; 
      padding-right:30%;
    }

@media (max-width: 760px) {
  .ocultar_img {
    display: inline;

  }

  .ocultar_dasktop {
    display: inline;
  } 
  
    .ocultar_mobile {
      display: none;
    }

    .padding_input{
      padding-left:30px; 
      padding-right:30px;
    }
  
}

body .main-container .container {
  max-width: 980px;
}

body .main-container .categoria-hero {
  margin: 78px 0 14px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(125, 42, 232, 0.96), rgba(255, 122, 24, 0.9));
  color: #fff;
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.12);
}

body .main-container .categoria-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body .main-container .categoria-hero__title {
  margin: 12px 0 8px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

body .main-container .categoria-hero__text {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

body .main-container .categoria-hero__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

body .main-container .navbar.bg-light.fixed-top {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(35, 31, 32, 0.08);
}

body .main-container .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #231f20;
}

body .main-container .navbar-brand a {
  color: #7d2ae8;
}

body .main-container .navbar-brand span {
  letter-spacing: 0.02em;
}

body .main-container .list-group {
  margin-top: 0 !important;
  gap: 12px;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  list-style: none;
}

body .main-container .list-group > a {
  text-decoration: none;
}

body .main-container .list-group-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 14px 14px 14px 16px;
  min-height: 104px;
  border-radius: 20px !important;
  border: 1px solid rgba(35, 31, 32, 0.08) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 16px 35px rgba(44, 24, 16, 0.08) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body .main-container .list-group-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #7d2ae8, #ff7a18);
}

body .main-container .list-group-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(44, 24, 16, 0.12) !important;
}

body .main-container .list-group-item .row {
  width: 100%;
  align-items: center;
}

body .main-container .list-group-item .col-10 {
  padding-right: 10px;
}

body .main-container .list-group-item .col-2 img {
  width: 78px !important;
  height: 78px !important;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

body .main-container .list-group-item .titulo-item {
  font-size: 17px;
  color: #231f20;
  margin-bottom: 4px;
}

body .main-container .list-group-item .subtitulo-item-menor {
  color: #6f6671;
  font-size: 12px !important;
  line-height: 1.45;
  margin-bottom: 6px;
}

body .main-container .list-group-item .valor-item-maior {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #11b67a;
  font-weight: 700;
}

body .main-container .list-group-item .valor-item-maior del {
  color: #d43b3b;
}

body .main-container .list-group-item .img-fluid,
body .main-container .list-group-item img[width="65px"][height="65px"] {
  border-radius: 16px;
}

body .main-container .list-group-item img[src*="esgotado"],
body .main-container .list-group-item img[src*="promocao2"] {
  width: 52px !important;
  height: 52px !important;
  right: 6px !important;
  top: 6px !important;
}

@media (max-width: 760px) {
  body .main-container .categoria-hero {
    margin-top: 72px;
    padding: 16px 16px 14px;
    border-radius: 18px;
  }

  body .main-container .categoria-hero__title {
    font-size: 24px;
  }

  body .main-container .list-group-item {
    min-height: 96px;
    padding: 12px 12px 12px 14px;
    border-radius: 18px !important;
  }

  body .main-container .list-group-item .titulo-item {
    font-size: 15px;
  }

  body .main-container .list-group-item .col-2 img {
    width: 66px !important;
    height: 66px !important;
  }

  body .main-container .list-group-item .subtitulo-item-menor {
    font-size: 11px !important;
  }
}

body .cart-page {
  padding-top: 78px;
  padding-bottom: 120px;
}

body .cart-page .cart-list {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-left: 0;
  list-style: none;
}

body .cart-page .cart-list li {
  list-style: none;
}

body .cart-page .tpcart__item {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 14px 14px 12px;
  margin-bottom: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(35, 31, 32, 0.08);
  box-shadow: 0 14px 34px rgba(44, 24, 16, 0.08);
}

body .cart-page .tpcart__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 20px 0 0 20px;
  background: linear-gradient(180deg, #7d2ae8, #ff7a18);
}

body .cart-page .tpcart__img img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

body .cart-page .tpcart__content {
  flex: 1;
  min-width: 0;
}

body .cart-page .tpcart__content-title {
  display: block;
  font-size: 16px;
  color: #231f20;
  margin-bottom: 6px;
}

body .cart-page .tpcart__cart-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #6f6671;
}

body .cart-page .tpcart__cart-price .text-success {
  color: #11b67a !important;
  font-weight: 800;
  font-size: 15px;
}

body .cart-page .cart-actions {
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 1030;
  padding: 0;
}

body .cart-page .cart-actions .below {
  margin-top: 0 !important;
}

body .cart-page .total-pedido {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(35, 31, 32, 0.08) !important;
  box-shadow: 0 12px 26px rgba(44, 24, 16, 0.08);
}

body .cart-page .total-pedido big {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

body .cart-page .total-pedido .direita {
  right: 0;
  position: static;
}

body .cart-page .cart-actions .btn.btn-warning.btn-lg {
  width: 100%;
  border-radius: 16px;
  height: 50px;
  font-weight: 800;
  background: linear-gradient(90deg, #ffb400, #ff8a00);
  border: none;
  box-shadow: 0 16px 30px rgba(255, 151, 41, 0.24);
}

body .cart-page .cart-actions .btn.btn-warning.btn-lg:hover {
  filter: brightness(0.98);
}

body .cart-page .tpcart__item .icon-x-circle {
  font-size: 18px;
}

body.modo-totem {
  background: linear-gradient(180deg, #fffaf4 0%, #f5efe6 100%);
}

body.modo-totem .rodape,
body.modo-totem .img-aberto,
body.modo-totem .scroll-top {
  display: none !important;
}

body.modo-totem .main-container {
  padding-top: 84px;
  padding-bottom: 24px;
}

body.modo-totem .navbar.bg-light.fixed-top {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.modo-totem #slider,
body.modo-totem .ocultar-banner-web {
  display: none !important;
}

body.modo-totem .navbar-brand small {
  font-size: 16px;
}

body.modo-totem .search-shell {
  max-width: 100%;
}

body.modo-totem .nav.nav-pills {
  overflow-x: auto;
  justify-content: flex-start !important;
  white-space: nowrap;
}

body.modo-totem .nav.nav-pills .nav-item {
  width: auto !important;
  flex: 0 0 auto;
}

body.modo-totem .container-xxl.py-5.margin_top_web,
body.modo-totem .search-shell,
body.modo-totem #area_busca,
body.modo-totem .ocultar_dasktop,
body.modo-totem .ocultar_mobile,
body.modo-totem .category-area,
body.modo-totem .brand-product,
body.modo-totem .tab-class {
  display: none !important;
}

body.modo-totem .totem-hero {
  margin: 14px 0 18px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #231f20 0%, #7d2ae8 60%, #ff7a18 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(44, 24, 16, 0.16);
}

body.modo-totem .totem-hero__badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.modo-totem .totem-hero__title {
  margin: 12px 0 6px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

body.modo-totem .totem-hero__text {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

body.modo-totem .totem-hero__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  background: #fff;
  color: #231f20;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

body.modo-totem .search-shell {
  min-height: 64px;
  padding: 16px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
}

body.modo-totem .search-shell .icon-search {
  font-size: 22px;
}

body.modo-totem .search-shell input {
  font-size: 17px;
}

body.modo-totem .nav.nav-pills {
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
}

body.modo-totem .nav.nav-pills .nav-item a {
  padding: 6px 8px !important;
}

body.modo-totem .nav.nav-pills .nav-item img {
  width: 62px !important;
  height: 62px !important;
}

body.modo-totem .titulo_icones {
  font-size: 16px !important;
}

body.modo-totem .subtitulo_icones {
  font-size: 12px !important;
}

body.modo-totem .category-area .category__item,
body.modo-totem .brand-product .tpbrandproduct__item {
  border-radius: 26px;
}

body.modo-totem .category-area .category__content,
body.modo-totem .tpbrandproduct__contact {
  padding: 16px 16px 18px;
}

body.modo-totem .category-area .category__content h6,
body.modo-totem .tpbrandproduct__product-title a,
body.modo-totem .tpbrandproduct__contact span {
  font-size: 17px;
}

body.modo-totem .totem-categorias {
  margin: 10px 0 18px;
}

body.modo-totem .totem-categorias__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 12px;
}

body.modo-totem .totem-categorias__head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #231f20;
}

body.modo-totem .totem-categorias__head span {
  color: #6f6671;
  font-size: 13px;
}

body.modo-totem .totem-categorias__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body.modo-totem .totem-category-card {
  display: block;
  text-decoration: none;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(35, 31, 32, 0.08);
  box-shadow: 0 18px 38px rgba(44, 24, 16, 0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  min-height: 320px;
}

body.modo-totem .totem-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(44, 24, 16, 0.14);
  border-color: rgba(125, 42, 232, 0.25);
}

body.modo-totem .totem-category-card__image {
  height: 210px;
  background: linear-gradient(180deg, rgba(125, 42, 232, 0.08), rgba(255, 122, 24, 0.05));
}

body.modo-totem .totem-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.modo-totem .totem-category-card__body {
  padding: 16px 16px 18px;
}

body.modo-totem .totem-category-card__body h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: #231f20;
}

body.modo-totem .totem-category-card__body p {
  margin: 0 0 10px;
  color: #6f6671;
  font-size: 14px;
  line-height: 1.45;
}

body.modo-totem .totem-category-card__body span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(125, 42, 232, 0.10);
  color: #7d2ae8;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 768px) {
  body.modo-totem .totem-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  body.modo-totem .totem-hero__title {
    font-size: 24px;
  }

  body.modo-totem .totem-hero__button {
    width: 100%;
    min-width: 0;
  }

  body.modo-totem .totem-categorias__head {
    flex-direction: column;
    align-items: flex-start;
  }

  body.modo-totem .totem-categorias__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.modo-totem .totem-category-card__image {
    height: 180px;
  }
}

@media (max-width: 560px) {
  body.modo-totem .totem-categorias__grid {
    grid-template-columns: 1fr;
  }

  body.modo-totem .totem-category-card {
    min-height: 280px;
  }

  body.modo-totem .totem-category-card__image {
    height: 190px;
  }
}

@media (max-width: 768px) {
  body .cart-page {
    padding-top: 70px;
    padding-bottom: 110px;
  }

  body .cart-page .tpcart__item {
    gap: 12px;
    padding: 12px 12px 12px 10px;
  }

  body .cart-page .tpcart__img img {
    width: 64px;
    height: 64px;
  }

  body .cart-page .tpcart__content-title {
    font-size: 15px;
  }
}
