/* STATUS LOJA */
#statusLoja {
  text-align: center;
  padding: 12px;
  font-weight: bold;
  background: #e63946;
  color: white;
  display: none;
}

/* BOTÃO BLOQUEADO */
.btn-bloqueado {
  opacity: 0.5;
  cursor: not-allowed;
}

/* PREÇOS DOS PRODUTOS */
.dish-price {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f8f8;
  padding: 8px 12px;
  border-radius: 10px;
}

.price-option .size {
  font-weight: 600;
}

.price-option .value {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.price-option .btn-default {
  margin-left: 10px;
}

/* CARROSSEL COM GALERIA DE FOTOS  */

.carrossel-fotos {
  background-color: #fff9ea;
  padding: 40px 0;
  overflow: hidden;
}

.carrossel-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.carrossel-track {
  display: flex;
  width: calc(250px * 8);
  animation: scroll 25s linear infinite;
}

.carrossel-track img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.carrossel-track img:hover {
  transform: scale(1.25) rotate(2deg);
}

/* efeito zoom */
.carrossel-track img:hover {
  transform: scale(1.2);
}

/* animação infinita */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
.carrossel-track:hover {
  animation-play-state: paused;
}

/* Banner carrossel infinito */
.banner {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.banner-track {
  display: flex;
  height: 100%;
  animation: scrollBanner 30s linear infinite;
}

.banner-slide {
  min-width: 100vw;
  height: 100%;
  position: relative;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* conteúdo */
.banner-content {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  text-align: center;
  color: white;

  z-index: 2;

  width: 90%;
  max-width: 600px;
}

.banner-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

/* botão */
.banner-btn {
  background: #ff4d4d;
  color: white;

  padding: 14px 30px;

  text-decoration: none;
  border-radius: 6px;

  font-size: 18px;

  transition: 0.3s;
}

.banner-btn:hover {
  background: #e63c3c;
  transform: scale(1.05);
}

/* animação */
@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* INTRO PREMIUM SEM CARD */

#intro {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  background: linear-gradient(270deg, #ffcb45, #ffe8b4, #f8d477);
  background-size: 400% 400%;

  animation: gradientMove 6s ease infinite;
}

/* conteúdo central */

.intro-content {
  text-align: center;
  animation: introFade 1.5s ease;
}

/* ícone */

.intro-icon {
  font-size: 90px;
  color: #1d1d1d;
}

/* título */

.intro-title {
  font-size: 48px;
  margin-top: 10px;
}

/* texto */

.intro-text {
  margin-top: 5px;
  font-size: 18px;
}

/* barra loading */

.intro-loader {
  width: 220px;
  height: 6px;
  background: #ffffff70;
  border-radius: 10px;
  margin: 20px auto 0;
  overflow: hidden;
}

.intro-loader::after {
  content: "";
  display: block;
  height: 100%;
  width: 0%;
  background: #1d1d1d;

  animation: loadingBar 2.5s forwards;
}

/* animações */

@keyframes loadingBar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes introFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* saída da intro */

#intro.hide {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
.cliente {
  font-size: 30px;
  font-weight: 600;
}
