body {
  font-family: sans-serif;
}
.title {
  font-family: Arial, sans-serif;
  margin-top: 7%;
  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;
}

/* Slider/Banner Container */
.slider-container {
    max-width: 1200px;
    margin: 30px auto 50px;
    padding: 0 20px;
}

.slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botões de navegação */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Indicadores de slide (bolinhas) */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    width: 30px;
    border-radius: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .slider {
        height: 250px;
    }
    
    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 10px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 20px;
    }
}

/* 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;
  color: rgb(240, 93, 8);
}
#frete {
  margin-top: -5px;
  font-size: 11px;
  color: green;
}



