/* ========== NOSSOS PRODUTOS ========== */
.products {
  padding: 4rem 0 2rem;
  background-color: #EBEBEB;
}
.products .section-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #131210;
}
.products-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.product-item {
  flex: 1 1 calc(33.333% - 1.333rem);
  max-width: calc(33.333% - 1.333rem);
  text-align: center;
}
.product-image {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.product-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 48px;
  height: 48px;
  background-color: #B79A63;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #131210;
}
.product-desc {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #333;
  padding: 0 1rem;
}

/* ========== RESPONSIVE NOSSOS PRODUTOS ========== */
@media (max-width: 992px) {
  .products-grid {
    gap: 1.5rem;
  }
  .product-item {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .product-image {
    width: 160px;
    height: 160px;
  }
  .product-badge {
    width: 40px;
    height: 40px;
    bottom: 5px;
    right: 5px;
    font-size: 0.9rem;
  }
  .product-title {
    font-size: 1rem;
  }
  .product-desc {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .products-grid {
    flex-direction: column;
    gap: 2.5rem;
  }
  .product-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
