.products-section {
  padding: var(--spacing-lg) var(--spacing-sm);
  max-width: 1400px;
  margin: 0 auto;
}

.products-section h2 {
  color: var(--primary-blue);
  font-size: clamp(36px, 3.7vw, 64px);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  margin-bottom: clamp(60px, 5.8vw, 100px);
}

/* ===== PRODUCTS ===== */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.3vw, 40px);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.product {
  margin-top: clamp(90px, 9vw, 120px);
  position: relative;
  background: white;
  border-radius: 24px;
  padding: clamp(24px, 2.3vw, 40px);
  padding-top: clamp(40px, 3vw, 60px);
  text-align: center;
  width: 100%;
  height: clamp(380px, 24vw, 470px);
  box-shadow: 0px 4px 70.3px 0px #00000026;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.product img {
  margin-top: calc(-1.5 * clamp(80px, 7vw, 150px)); /* La mitad de la imagen sobresale */
  margin-bottom: clamp(16px, 1.16vw, 24px);
  width: clamp(200px, 12.9vw, 300px);
  height: clamp(200px, 12.9vw, 300px);
  border-radius: 50%;  border: 3px solid var(--primary-blue);
  padding: 8px;
  background: white;
  object-fit: cover;
  box-sizing: border-box;
  z-index: 2;
  position: relative;
  box-shadow: 0 2px 12px 0 #0001;
}

.product .category {
  width: 100%;
  background-color: var(--primary-blue);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: clamp(14px, 0.93vw, 18px);
  margin-bottom: clamp(24px, 1.8vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product h3 {
  color: var(--text-gray);
  font-size: clamp(32px, 1.5vw, 48px);
  font-weight: 700;
  margin-bottom: clamp(24px, 1.8vw, 32px);
  line-height: 1.2;
}

.product p {
  color: var(--text-gray);
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: 1.5;
  padding: 0 clamp(20px, 1.4vw, 24px);
}

@media (max-width: 992px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products {
    grid-template-columns: 1fr;
  }

  .product {
    height: auto;
    min-height: 400px;
    padding-top: 60px;
  }

  .product img {
    width: 140px;
    height: 140px;
  }
}