body {
  min-height: 100vh;
  margin: 0;
  background: #f3c4d6;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
}

.nav-item a:hover {
  transform: scale(1.3);
  color: #fff;
}

.dish-image {
  width: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}

.dish-image:hover {
  transform: scale(1.05);
}

.dish-heart {
  background-color: #f3c4d6;
}

.dish-heart i {
  color: white;
}

#modalImagem {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

#imgGrande {
  width: 700px;
  height: 700px;
  object-fit: cover;
  border-radius: 14px;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.btn-default {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-default:hover {
  background-color: #efb3cb;
}

/* modal da imagem */
#modalImagem {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

/* imagem ampliada */
#imgGrande {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  transition: transform 0.4s;
  cursor: zoom-in;
}

/* zoom forte */
#imgGrande.zoom {
  transform: scale(2.5);
  cursor: zoom-out;
}

footer {
  background-color: #f3c4d6;
}

/* fim da personalização */

/* 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, #efb3cb, #f8dce7, #f5d0e0);
  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;
}
/* fim da intro */

header,
#navbar {
  background-color: #f3c4d6;
}

.nav-item.has-submenu > a:hover {
  color: #f3c4d6;
}

.submenu li a:hover {
  background-color: #f3c4d6;
  color: #f2e5d2;
}

.mobile_menu {
  color: #f3c4d6;
}

.mobile_nav_list {
  color: #fff;
}

.carrossel-fotos {
  color: #f3c4d6;
}

/* CARROSSEL COM GALERIA DE FOTOS  */

.carrossel-fotos {
  background-color: #f3c4d6;
  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;
}
/* fim */

/* BANNER CARROSSEL */
.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%);
  }
}

.dish.disabled {
  opacity: 0.5;
  filter: grayscale(100%);
}

.dish.disabled button {
  pointer-events: none;
  background: #999;
  cursor: not-allowed;
}

/* MODAL DE PEDIDO */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  padding: 15px;
}

/* QUANDO O MODAL ABRIR */
.modal.ativo {
  display: flex;
}

/* CONTEÚDO DO MODAL */
.modal-content {
  background: #fff;
  color: #333;
  padding: 22px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

/* TÍTULO */
.modal-content h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

/* LABELS */
.modal-content label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* INPUTS */
.modal-content input,
.modal-content select {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

/* BOTÃO FINALIZAR PEDIDO */
.modal-content button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  background: #facc15;
  color: #1f2937;
  transition: all 0.3s ease;
}

.modal-content button:hover {
  background: #eab308;
  transform: scale(1.03);
}

/* BOTÃO FECHAR */
.close {
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* LISTA DE PRODUTOS */
#lista-produtos div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  background: #f3f4f6;
  padding: 8px;
  border-radius: 8px;
}

#lista-produtos input {
  width: 60px;
}

/* MENSAGEM DE CONFIRMAÇÃO */
.confirmacao {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.confirmacao-box {
  background: #fff;
  color: #333;
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.confirmacao-box i {
  color: #22c55e;
  font-size: 42px;
  margin-bottom: 12px;
}
/* fim do modal */
