.ame-slider {
  max-width: 460px;
  margin: 0 auto;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

/* TÍTULO */
.ame-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 14px;
}

/* VALOR */
.ame-value {
  font-size: 2.6rem;
  font-weight: 900;
  color: #C0D03F;
  margin-bottom: 26px;
}

/* RANGE */
.ame-range-wrap {
  position: relative;
  margin-bottom: 28px;
}

#energyRange {
  width: 100%;
  height: 12px;
  appearance: none;
  background: #e5e5e5;
  border-radius: 10px;
  outline: none;
}

#energyRange::-webkit-slider-thumb {
  appearance: none;
  width: 32px;
  height: 32px;
  background: #C0D03F;
  border-radius: 50%;
  border: 4px solid #fff;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

/* FILL */
.ame-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  background: #C0D03F;
  border-radius: 10px;
  pointer-events: none;
}

/* TOOLTIP */
.ame-tooltip {
  position: absolute;
  top: -44px;
  transform: translateX(-50%);
  background: #F2E742;
  color: #1c1c1c;
  font-weight: 700;
  font-size: .95rem;
  padding: 6px 12px;
  border-radius: 14px;
  white-space: nowrap;
}

/* CTA */
.ame-cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 40px;
  background: linear-gradient(135deg, #C0D03F, #F2E742);
  text-transform: uppercase;
  color: #ffffff !important;      /* <- forzado blanco */
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, color .2s;
}

.ame-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(192,208,63,.4);
  color: #ffffff !important;      /* <- forzado blanco también en hover */
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .ame-title { font-size: 1.15rem; }
  .ame-value { font-size: 2.2rem; }
}
