/* MENU - CARDÁPIO */
.title {
  font-size: 6rem;
  color: #68421d;
  display: block;
  align-items: center;
  text-align: center;
}

/* ANALISANDO SE REALMENTE SERÁ NECESSÁRIO
.menu {
  margin-top: 100px;
  margin-bottom: 30px;
}
ANALISANDO SE REALMENTE SERÁ NECESSÁRIO */
.menu .subtitle {
  color: var(--links);
  font-size: 2rem;
  align-items: center;
  text-align: center;
  margin-bottom: 100px;
  font-family: "Saudagar", sans-serif;
  text-transform: none;
}

/* SWIPER */
.card-list .card-item .card-link {
  user-select: none;
  display: block;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  cursor: default;
}

.card-list .card-link .card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.card-list .card-link .card-title {
  font-size: 2.5rem;
  color: #4d604d;
  /*font-weight: 600;*/
  text-align: center;
}

.card-list .card-link p {
  text-decoration: none;
  text-align: center;
  color: var(--brown);
}

.card-list .card-link .btn {
  border: 2px solid rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  cursor: pointer;
  text-align: center;
  display: block;
  margin: 15px auto 0;
  font-size: 1.5rem;
  padding: 1rem 1rem;
}

.card-list .card-link:hover .btn:hover {
  background: #1d271d;
  color: #fff;
  padding: 1rem 1.3rem;
  font-size: 1.5rem;
}

.card-wrapper {
  max-width: 100%;
  margin: 0 60px 50px;
  padding: 50px 15px;
  overflow: hidden;
}

.card-list .card-item {
  list-style: none;
}

.card-wrapper .swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: #1d271d;
}

.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--links);
}
