.elementor-kit-939{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-939 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.beneficios-home {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
}
.beneficio {
  flex: 1 1 250px;
  text-align: center;
  padding: 20px;
}
.beneficio h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #ff6600; /* acorde con tu branding */
}
.beneficio p {
  font-size: 0.8em;
  color: #333;
}
.beneficio strong {
  color: #000;
}
.icono {
  font-size: 42px;
  color: #ff6600;
  margin-bottom: 10px;
}

.marquee {
  background: #ff6600;
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
}

.marquee__inner {
  display: flex;
  width: max-content;
  gap: 80px;
  animation: marquee 14s linear infinite;
}

.item {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.item span {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.btn-pack {
  background: #fff;
  color: #ff6600;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}

.btn-pack:hover {
  background: #ffe0cc;
}

.marquee:hover .marquee__inner {
  animation-play-state: paused;
}

/* Lógica real del scroll infinito */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ✅ Clon automático del contenido */
.marquee__inner::after {
  content: "";
  display: flex;
  margin-left: 0px;
  width: 100%;
  background-repeat: no-repeat;
  animation: none;
}/* End custom CSS */