/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 18 2025 | 01:35:18 */
html, body {
    overflow-x: hidden !important;
}
.contenedor {
    overflow-x: hidden !important;
    white-space: nowrap;
    position: relative;
}

/* Contenedor del texto en movimiento */
.deslizar {
    display: flex;
    width: max-content;
    animation: deslizar 35s linear infinite;
}

/* Texto duplicado para evitar cortes */
.texto {
    font-family: var(--e-global-typography-primary-font-family); 
    display: inline-block;
    font-size: 26px;
    font-weight: bold;
    color: #333;
}

/* Animación continua sin espacios vacíos */
@keyframes deslizar {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.textohome {
  line-height: 1; /* Reduce el interlineado */
}
h3 {
  margin-bottom: -9px; /* Reduce el espacio debajo del título */
}