/* =========================
   Productos
   ========================= */
.section-menta {
  background: var(--menta-soft);
}

/* =========================
   Cabecera y texto de producto
   ========================= */

.product-copy {
  min-width: 0;
}

.product-head {
  display: flex;
  align-items: center;
  gap: 1rem;

  margin-bottom: 1.75rem;
}

.product-logo {
  display: block;
  flex: 0 0 auto;

  width: 4rem;
  height: 4rem;

  object-fit: contain;
}

.product-title {
  margin: 0;

  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.035em;

  color: var(--text);
}

.product-lead {
  max-width: 34rem;
  margin-bottom: 1.5rem;

  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.55;
  color: var(--text-2);
}

.product-highlight {
  max-width: 34rem;
  margin: 1.75rem 0 0;

  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 650;
  line-height: 1.4;

  color: #173f31;
}

.product-highlight + .product-cta {
  margin-top: 1.5rem;
}

@media (max-width: 720px) {
  .product-head {
    gap: 0.8rem;
    margin-bottom: 1.35rem;
  }

  .product-logo {
    width: 3.25rem;
    height: 3.25rem;
  }

  .product-title {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .product-lead {
    font-size: 1.1rem;
  }

  .product-highlight {
    margin-top: 1.5rem;
    font-size: 1.2rem;
  }
}

.mockup-box {
  position: relative;
  display: inline-block;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.08);
}

.mockup-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.col.mockup {
  align-self: start;
  display: flex;
  justify-content: center;
}

/* CTA de producto */
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.75rem;
  padding: 0.9rem 1.25rem;
  border-radius: 0.75rem;
  background: #173f31;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(23, 63, 49, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.product-cta:hover {
  color: #ffffff;
  background: #214f3f;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 63, 49, 0.22);
}

.product-cta span {
  transition: transform 180ms ease;
}

.product-cta:hover span {
  transform: translateX(4px);
}

.product-cta:focus-visible {
  outline: 3px solid rgba(111, 146, 85, 0.45);
  outline-offset: 3px;
}


/* menta */
.product-logo--menta {
    width: 4.5rem;
    height: 4.5rem;
}

@media (max-width: 720px) {

    .product-logo--menta {
        width: 3.5rem;
        height: 3.5rem;
    }

}