body {
  font-family: sans-serif;
}
.title {
  font-family: Arial, sans-serif;
  margin-top: 10%;
  text-align: center;
  color: rgb(22, 27, 51);
}
.title h4 {
  margin-top: 0%;
  color: rgb(214, 113, 40);
  font-size: 20px;
  font-family: Arial, sans-serif;
}

/* Banner */
.slider {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 400px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 15px;
  /* border: 2px solid red; */
}

.slide {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}
#slideLx img {
  width: 430px;
  height: 430px;
}
#slideL img {
  width: 700px;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Produtos  */
#ajustar {
  padding-top: 150px;
  font-size: 20px;
  margin-left: 140px;
}
#tuya {
  padding-top: 150px;
}

.paginacao {
  text-align: center;
  padding-top: 30px;
}
.paginacao a {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  background: #eee;
  color: #333;
  border-radius: 4px;
  text-decoration: none;
}
.paginacao a:hover {
  background: #2462e7;
  color: white;
}

.produtos {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  gap: 20px;
  justify-content: center;
  margin: 30px auto;
  max-width: 1200px;
}

#descricao {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* limita a 2 linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.produto {
  width: 250px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  height: auto;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.produto:hover {
  transform: scale(1.03);
}

.produto img {
  width: 100%;
  max-width: 300px; /* ou 150px, dependendo do layout */
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}


.detalhes {
  padding-top: -100px;
  text-align: center;
}

.detalhes h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.detalhes p {
  font-size: 13px;
  color: black;
}
#preco {
  font-size: 17px;
}
#frete {
  margin-top: -5px;
  font-size: 11px;
  color: green;
}



