/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 11 2025 | 15:22:41 */
/* Cards que bloquean que la animacion se vea por fuera */
.box_closed {
  overflow: hidden;
  position: relative;
}

/* TEXTO CON HIGHLIGHT */
.highlight_word {
  position: relative;
  display: inline-block;
  z-index: 1; /* asegura que el texto quede por encima */
}

.highlight_word::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px; /* ajusta según la fuente */
  width: 100%;
  height: 6px;
  background-color: #F3D99C;
  z-index: -1;
  pointer-events: none;
  transition: none;
  animation: none;
  transform: none;
  will-change: auto;
}
