body, html {
    overflow-x: hidden;
}
body {
}

.imagem_cab {
    height: 97px;
    width: 100%;
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
}

.titulo-1 {
    font-size: 18px;
    font-weight: bold;
}

.btn-1 {
    background-color: #e93f38;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
}

.btn-1.desativa {
  background-color: #999 !important;
}

.darkmode-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    justify-content: start;
    background-color: #fff;
    width: max-content;
    margin: 0;
    padding: 3px;
    border-radius: 6px;
}

/* Estilo base do switch */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 15px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.darkmode-toggle input:checked + .slider {
  background-color: #4b6cb7;
}

.darkmode-toggle input:checked + .slider:before {
  transform: translateX(24px);
}


.box_produtos {
    overflow: scroll;
}

.item_produto {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.item_produto a {
    flex-shrink: 0;
}

.item_produto a img {
  width: 90px;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.item_produto div {
    background-color: #dee3ea;
    /*border-radius: 10px;*/
    padding: 10px;
    align-items: center;
    height: 118px;
    width: 100%;
}

.item_produto div h3 {
  font-size: 18px;
  font-weight: bold;
  height: 45px;
  overflow: hidden;
}

.preco_seletor span {
    font-size: 15px;
    display: block;
    font-weight: 400;
}

.preco_seletor {
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  height: 45px !important;
  justify-content: space-between !important;
  overflow: hidden;
}

.quantidade {
      display: flex !important;
      align-items: center !important;
      padding: 0 !important;
      height: auto !important;
      justify-content: center !important;
      gap: 5px !important;
      width: 120px !important;
}

.quantidade input {
      width: 20px;
      height: 30px;
      border: none;
      background-color: transparent;
      padding: 0;
      text-align: center;
      font-weight: 900;
      font-size: 19px;
  }

.quantidade button:active {
  transform: scale(0.95);
}

.menos {
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: #fff;
    background-color: #e93f38;
    padding: 0;
    flex-shrink: 0;
}

.mais {
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: #fff;
    background-color: #373737;
    padding: 0;
    flex-shrink: 0;
}


.modal-content {
    background-color: #ffffff;
}

.infoproduto img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.modal-header {
    border-bottom: none;
}

.infoproduto h3 {
    font-size: 18px;
}

.infoproduto h3 span {
    display: block;
    font-weight: 400;
}

.infoproduto p {
    font-size: 14px;
    line-height: 120%;
    margin-top: 20px;
}


.btn-2 {
    background-color: #4fac27;
    font-size: 25px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
}






















/* Exemplo simples de tema escuro */
body.darkmode {
  background-color: #121212;
  color: #f5f5f5;
}

body.darkmode .slider {
  background-color: #222;
}

body.darkmode .darkmode-toggle {
  background-color: #000;
}

body.darkmode .item_produto div {
    background-color: #656565;
}
body.darkmode .modal-content {
    background-color: #555555;
}
/* Exemplo simples de tema escuro */


@media (max-width: 767px) {



}
