/* ===== PRODUCTO HERO ===== */
.prod-hero {
  position: relative;
  padding-top: 72px;
  background: linear-gradient(135deg, #eaf6f6 0%, #f5f0fc 60%, #eaf6f6 100%);
  overflow: hidden;
  min-height: 380px;
}
.prod-hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.prod-hero__shape {
  position: absolute;
  border-radius: 50%;
}
.prod-hero__shape--teal {
  width: 500px; height: 380px;
  background: linear-gradient(135deg, #1C4B5A 0%, #2E9E9A 100%);
  bottom: -50px; left: -80px;
  clip-path: ellipse(55% 60% at 20% 80%);
  opacity: 0.9;
}
.prod-hero__shape--purple {
  width: 400px; height: 320px;
  background: linear-gradient(135deg, #7B52A6 0%, #9B7EC8 100%);
  top: 50px; right: -60px;
  clip-path: ellipse(60% 55% at 80% 30%);
  opacity: 0.85;
}
.prod-hero .container { position: relative; z-index: 1; }
.prod-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 48px;
  padding: 50px 0 80px;
}
.prod-hero__image-wrap { display: flex; justify-content: center; }
.prod-hero__img {
  max-height: 360px;
  width: auto;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.18));
}
.prod-hero__content { display: flex; flex-direction: column; gap: 20px; }
.prod-hero__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--teal-dark);
  line-height: 1.25;
}
.prod-hero__wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.prod-hero__wave svg { height: 80px; }

/* ===== PRODUCTO CONTENT ===== */
.prod-section { padding: 72px 0 100px; background: #fff; }
.prod-content { width: 100%; }
.prod-h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 16px;
  margin-top: 40px;
}
.prod-h2:first-child { margin-top: 0; }
.prod-h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--teal-dark);
  margin-bottom: 12px;
  margin-top: 32px;
}
.prod-content p { margin-bottom: 16px; font-size: 15px; }
.prod-content p:last-child { margin-bottom: 0; }
.prod-content .highlight-card { margin: 32px 0; }
.ingredients-list { margin: 32px 0; }
.uso-section {
  /*background: var(--bg-gray);
  border-radius: var(--radius);*/
  padding: 32px;
  margin-top: 32px;
}
.uso-section p { margin-bottom: 8px; font-size: 15px; }

@media (max-width: 768px) {
  .prod-hero__grid {
    grid-template-columns: 1fr;
    padding: 40px 0 60px;
    gap: 32px;
    text-align: center;
  }
  .prod-hero__content { align-items: center; }
  .prod-hero__title { font-size: 28px; }
  .prod-hero__img { max-height: 260px; }
  .prod-section { padding: 48px 0 72px; }
  .prod-hero{
    min-height: auto;
    overflow-x: hidden;
  }
  .prod-hero img{
    width: 130%;
    max-width: initial;
    margin: 0 0 0 -15%;
  }
}
