.elementor-kit-5{--e-global-color-primary:#204F8D;--e-global-color-secondary:#FF7A00;--e-global-color-text:#2B2B2B;--e-global-color-accent:#FFFFFF;--e-global-color-db8c419:#3B6FB3;--e-global-color-38d963f:#FF9A4D;--e-global-color-3aecaa5:#F5F7FA;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Poppins";--e-global-typography-accent-font-weight:500;font-family:"Poppins", Sans-serif;font-weight:700;}.elementor-kit-5 button,.elementor-kit-5 input[type="button"],.elementor-kit-5 input[type="submit"],.elementor-kit-5 .elementor-button{background-color:#F47A20;font-family:"Tahoma", Sans-serif;font-size:24px;font-weight:600;color:#FFFFFF;box-shadow:0px 6px 10px 0px rgba(0,0,0,0.5);border-radius:10px 10px 10px 10px;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-kit-5 a{font-family:"Poppins", Sans-serif;}.elementor-kit-5 h1{font-family:"Poppins", Sans-serif;}.elementor-kit-5 h2{font-family:"Poppins", Sans-serif;}.elementor-kit-5 h3{font-family:"Poppins", Sans-serif;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}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 */.elementor-kit-5 img {
    margin-bottom: 0 !important;
    display: block;
}

/* Contenedor principal */
.marquee-contenedor {
  width: 100%;
  overflow: hidden;
  background: #F47A20; /* Cámbialo a tu gusto */
  color: #fff;
  padding: 5px 0;
  display: flex;
}

/* El bloque que se mueve */
.marquee-contenido {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%; /* Empieza desde fuera a la derecha */
  animation: marquee-efecto 20s linear infinite;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Animación */
@keyframes marquee-efecto {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Pausar al pasar el ratón (opcional) */
.marquee-contenedor:hover .marquee-contenido {
  animation-play-state: paused;
}/* End custom CSS */