.html-producto .e-producto {
  --verde: #315c4b;
  --morado: #5b466f;
  --verde-claro: #eaf1ed;
  --morado-claro: #f0ebf4;
  --crema: #f8f5ef;
  --texto: #27312d;
  --gris: #5c6661;
  --blanco: #fff;
  --borde: #d8dfda;
  box-sizing: border-box;
  color: var(--texto);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow: hidden;
}
.html-producto .e-producto *,
.html-producto .e-producto *::before,
.html-producto .e-producto *::after {
  box-sizing: border-box;
}
.html-producto .e-producto h2,
.html-producto .e-producto h3,
.html-producto .e-producto p {
  margin-top: 0;
}
.html-producto .e-producto h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 1rem;
}
.html-producto .e-producto h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  margin-bottom: .6rem;
}
.html-producto .e-hero {
  background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, .16), transparent 28%), linear-gradient(135deg, var(--verde), var(--morado));
  color: var(--blanco);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  border-radius: 0 0 26px 26px;
}
.html-producto .e-hero .e-etiqueta {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  padding: .35rem .8rem;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.html-producto .e-hero h2 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: .75rem;
}
.html-producto .e-hero > p:not(.e-subtexto) {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 650;
  margin-bottom: .75rem;
}
.html-producto .e-hero .e-subtexto {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  opacity: .96;
}
.html-producto .e-intro,
.html-producto .e-funciones,
.html-producto .e-beneficio {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}
.html-producto .e-intro {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  text-align: center;
}
.html-producto .e-intro h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.html-producto .e-intro p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gris);
}
.html-producto .e-funciones {
  padding-bottom: 3.5rem;
}
.html-producto .e-funciones > h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.html-producto .e-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.html-producto .e-grid article {
  background: var(--crema);
  border: 1px solid var(--borde);
  border-radius: 18px;
  padding: 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.html-producto .e-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(39, 49, 45, .08);
}
.html-producto .e-grid article > span {
  display: block;
  color: var(--verde);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: .9rem;
}
.html-producto .e-grid article p {
  color: var(--gris);
  font-size: .94rem;
  margin-bottom: 0;
}
.html-producto .e-beneficio {
  background: linear-gradient(135deg, var(--verde-claro), var(--morado-claro));
  border-radius: 24px;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
.html-producto .e-beneficio h2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.html-producto .e-beneficio p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gris);
  margin-bottom: 0;
}
@media (max-width: 900px) {
.html-producto .e-grid {
  grid-template-columns: repeat(2, 1fr);
}
.html-producto .e-hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
}
@media (max-width: 600px) {
.html-producto .e-hero {
  border-radius: 0 0 20px 20px;
  padding: 2.25rem 1rem;
}
.html-producto .e-hero h2 {
  font-size: 2.35rem;
}
.html-producto .e-intro {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.html-producto .e-grid {
  grid-template-columns: 1fr;
}
.html-producto .e-beneficio {
  border-radius: 18px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
}