@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  background-image: url("../images/BGPIZZA.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.container {
  max-width: 600px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.logo img {
  width: 100px;
}

.pizzabg {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  top: 0;
  z-index: 1;
}

.pizzabg img {
  max-width: 494px;
}

.links {
  position: relative;
  z-index: 99;
  top: 320px;
  width: 280px;
  padding-bottom: 10px;
}

.links a {
  border-radius: 0 50px 50px 0;
  text-decoration: none;
}

.items {
  width: 280px;
  height: 60px;
  margin-bottom: 15px;
  background-color: #E25C26;
  border-radius: 0 50px 50px 0;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.items h2 {
  padding-right: 75px;
  color: white;
  font-size: 14px;
  letter-spacing: 1.25%;
  z-index: 9;
  text-shadow: 2px 2px 4px rgba(45, 25, 61, 0.2);
}

.box-icone {
  width: 60px;
  height: 100%;
  border-radius: 0 50px 50px 0;
  background-color: white;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.fatia {
  height: 60px;
  position: absolute;
  left: 0;
}

.sociais {
  position: fixed;
  bottom: 0;
  right: 20px;
  z-index: 9;
}

.sociais-box {
  width: 42px;
  height: 67px;
  border: 2px solid #E25C26;
  border-bottom: transparent;
  border-radius: 50px 50px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sociais-box a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardapio {
  cursor: pointer;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2E193D;
  opacity: 0.5;
  z-index: 999;
  display: none;
}

#view-cardapio {
  max-width: 600px;
  width: 100%;
  height: 95%;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 9999;
  display: none;
}

.box-cardapio {
  background-color: white;
  position: relative;
  height: 100%;
  border-radius: 20px 20px 0 0;
}

/* Estilo básico para o carrossel */
.embla {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 10px 10px 10px;
  overflow: auto;
  height: 100%;
}

.embla__viewport {
  overflow: hidden;
  height: 100%;
  max-height: calc(100% - 80px);
}

.embla__container {
  display: flex;
  max-height: 100%;
}

.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
  overflow: auto;
  max-height: 100%;
  border-radius: 10px;
}

.embla__slide img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.embla__controls {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 10px;
}

.embla__buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.embla__button {
  -webkit-tap-highlight-color: rgba(49, 49, 49, 0.5);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: inset 0 0 0 2px #E25C26;
  width: 30px;
  height: 30px;
  z-index: 1;
  border-radius: 50%;
  color: #2E193D;
  display: flex;
  align-items: center;
  justify-content: center;
}

.embla__button:disabled {
  color: rgb(192, 192, 192);
}

.embla__button__svg {
  width: 45%;
  height: 45%;
}

.embla__selected-snap-display {
  justify-self: flex-end;
  align-self: center;
  color: #2E193D;
}

.close {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  padding: 10px;
  color: #E25C26;
}

.close svg {
  cursor: pointer;
}

.avaliacao-wrapper {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 9;
}

.btn-avaliacao {
  display: inline-block;
  background-color: #E25C26;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.btn-avaliacao:hover {
  background-color: #c94c1f;
}

/* Adiciona cursor de ponteiro para os novos botões de loja */
.loja-btn {
  cursor: pointer;
}

/* Estilo para a nova modal genérica */
#view-loja.modal-centralizado {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 300px;
  max-width: 350px;
  width: 100%;
  height: auto;
  display: none;
  z-index: 9999;
}

.box-modal {
  width: 100%;
  background-color: white;
  padding: 20px 30px 20px 0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.box-modal h2 {
  color: #2E193D;
  margin-bottom: 25px;
  padding-right: 20px; /* Espaço para o botão de fechar */
  font-size: 1.1em;
  text-align: center;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #E25C26;
  cursor: pointer;
}

/* Container para os links dentro da modal */
.modal-links-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  align-items: center;
}

.modal-links-container a {
  text-decoration: none;
  display: block;
  width: 300px;
}

.box-modal .items {
  width: 100%;
  margin-bottom: 0;
  border-radius: 50px;
  height: 50px;
  flex-direction: row;
  align-items: center;
}

.box-modal .items h2 {
  color: white;
  font-size: 14px;
  margin-bottom: 0;
  letter-spacing: 1.25%;
  z-index: 9;
  text-shadow: 2px 2px 4px rgba(45, 25, 61, 0.2);
  padding-left: 20px;
}

.box-modal .items .box-icone {
  border-radius: 0 50px 50px 0;
  border: 1px solid #ccc;
}

.box-modal .items .box-icone img {
  width: 25px;
}

@media screen and (min-width: 600px) {
  .sociais {
    right: 50%;
    transform: translate(50%);
  }
  .avaliacao-wrapper {
    right: 50%;
    transform: translate(50%);
  }
  .sociais-box {
    margin-left: 520px;
  }
  .btn-avaliacao {
    margin-left: 450px;
  }
}
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}
@media (max-width: 335px) {
  .box-modal {
    padding-right: 0;
  }
}/*# sourceMappingURL=style.css.map */