.produtos-bloco {
  width: 100%;
  display: flex;
  justify-content: center;
}

.produtos-bloco-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.produtos-bloco-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.produtos-bloco-title {
  color: #000;
  font-size: 40px;
  font-weight: 300;
  font-style: normal;
  text-align: left;
  text-transform: uppercase;
}

.produtos-bloco-btn {
  width: 110px;
  height: 32px;
  background: #252424;
  color: #fff !important;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.produtos-bloco-btn:hover {
  background: #444;
  color: #fff;
  text-decoration: none;
}

.produtos-bloco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  row-gap: 58px;
}

.produtos-bloco-produto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  height: auto;
}

.produtos-bloco-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #EEEDED;
}

.produtos-bloco-produto-nome {
  font-size: 15px;
  font-weight: bold;
  color: #000;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  height: 30px;
}

.produtos-bloco-produto-desc {
  color: #6B6B6B;
  font-size: 13px;
  line-height: 13px;
  margin-bottom: 25px;
  text-align: left;
  height: 40px;
}

.produtos-bloco-produto-btn {
  width: 110px;
  height: 32px;
  background: #252424;
  color: #fff;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  padding: 0px;
  font-weight: 500;
}

.produtos-bloco-produto-btn:hover,
.produtos-bloco-produto-btn:focus,
.produtos-bloco-produto-btn:active {
  background: #444;
  color: #fff;
  border: none;
  box-shadow: none;
  outline: none;
}

/* MOBILE CARROSSEL PRODUTOS */
@media (max-width: 767px) {
  .produtos-bloco-mobile {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .produtos-bloco-mobile-carousel {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 32px 0;
  }

  .swiper {
    width: 100vw;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .produtos-bloco-img-mobile {
    width: 100%;
    max-width: 263px;
    height: auto;
    object-fit: contain;
    margin-bottom: 18px;
    background: #EEEDED;
    border-radius: 10px;
  }

  .produtos-bloco-produto-nome-mobile {
    font-size: 15px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
    text-align: center;
    padding: 0 16px;
  }

  .produtos-bloco-produto-desc-mobile {
    color: #6B6B6B;
    font-size: 13px;
    margin-bottom: 18px;
    text-align: center;
    padding: 0 16px;
    max-width: 345px;
  }

  .swiper-pagination {
    position: static;
    margin-top: 12px;
    text-align: center;
  }

  .swiper-pagination-bullet {
    background: #222;
    opacity: 0.3;
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    transition: opacity 0.2s;
  }

  .swiper-pagination-bullet-active {
    background: #222;
    opacity: 1;
  }

  .produtos-bloco-title-mobile {
    font-size: 30px;
    line-height: 32px;
    font-weight: bold;
    text-transform: uppercase;
  }

  .home-bloco4-produtos {
    padding: 0px;
  }

  .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px auto;
  }

  .owl-dots button {
    width: 10px;
    height: 10px;
    background-color: #bcbcbc !important;
    border-radius: 50%;
    border: none;
    outline: none !important;
  }

  button.owl-dot.active {
    background-color: #222 !important;
    border: none;
    outline: none;
  }

  .owl-dots button span {
    width: 100%;
    display: block;
  }
}

@media (max-width: 1200px) {
  .produtos-bloco-container {
    padding: 0 24px;
  }

  .produtos-bloco-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 700px) {
  .produtos-bloco-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .produtos-bloco-title {
    font-size: 22px;
  }

  .produtos-bloco-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .produtos-bloco-produto {
    padding: 25px 8px 16px 8px;
    align-items: center;
    justify-content: center;
  }

  .produtos-bloco-img {
    max-width: 120px;
    height: 90px;
  }
}