/*
Plugin Name: Custom Marquee Elementor
Description: Marquee personalizado com texto e ícones SVG.
Version: 1.0
Author: Erick Oliveira
*/

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-scroll 60s linear infinite;
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--marquee-font-size, 24px);
  color: var(--marquee-color, #222);
}

.marquee-content .star {
  color: #E33535;
  margin: 0 0.75em;
  font-size: 1em;
  vertical-align: middle;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
