-->
<style>
/* Fuerza al contenedor del módulo a expandirse al 100% real de la sección en HubSpot sin fondo */
.hs-carrusel-module {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 2rem 0 !important;
    background: transparent !important;
}

.hs-carrusel-module .contenedor-carrusel-hubspot {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    isolation: isolate;
}

.hs-carrusel-module .titulo-carrusel-hubspot {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff; /* brand-accent (Amarillo) */
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto 1.5rem auto;
    letter-spacing: 0.08em;
    line-height: 1.4;
    /* Efecto de sombreado llamativo: silueta limpia combinada con un resplandor sutil */
   
}

.hs-carrusel-module .overflow-carrusel-hubspot {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Máscara de degradado para desvanecer los logos en los extremos sobre cualquier fondo */
    -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
    mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}

.hs-carrusel-module .pista-carrusel-hubspot {
    display: flex;
    white-space: nowrap;
    animation: hs-scroll-logos-infinito 30s linear infinite;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
    width: fit-content;
}

/* Pausar animación al pasar el mouse */
.hs-carrusel-module .pista-carrusel-hubspot:hover {
    animation-play-state: paused;
}

.hs-carrusel-module .logo-item-hubspot {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: default;
}

.hs-carrusel-module .logo-item-hubspot:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes hs-scroll-logos-infinito {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
</style>