 .slider_dot.is-active {
            background: rgba(5, 108, 193, 1);
        }
            /* PISTA DEL SLIDER */
        .slider .slide-track {
            display: flex;
            width: calc(250px * 20);
            animation: scroll-horizontal 40s linear infinite;
        }

        .slider:hover .slide-track {
            animation-play-state: paused;

        }
  /* TITULO */
        .fabricantes_titulo {
            margin: 0;
            display: flex;
            justify-content: center;
        }

        .fabricantes_titulo h2 {
            text-align: center;
            color: #056CC1;
            font-weight: bold;
            font-size: 32px;
            margin: 0;
        }

        .fabricantes_titulo span {
            font-weight: bold;
            font-size: 32px;
            text-transform: none;
        }

        .fabricantes {
            background: #f2f2f2;
            margin-top: -14px;
            padding: 30px 5%;
        }
        .top_brands {
            padding: 30px 5%;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            width: 100%;
            gap: 30px;
        }
          .top-card_brand::before {
            content: "";
            position: absolute;
            border-radius: 8px;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.47);
            z-index: 1;
            transition-duration: 500ms;
        }

        .top-card_brand:hover::before {
            content: "";
            position: absolute;
            border-radius: 8px;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.65);
            z-index: 1;
        }

        .top-card_brand>* {
            position: relative;
            z-index: 2;
        }
        .card_brand-h3 {
            color: #fff;
            font-size: 28px;
            font-weight: bold;
            text-align: left;
            text-transform: uppercase;
            line-height: 1.3em;
        }
         .card_brand-p {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            line-height: 1.3em;
        }
        
        .slider::before,
        .slider::after {
            content: "";
            position: absolute;
            top: 0;
            width: 80px;
            height: 100%;
            z-index: 2;
        }

        .slider::before {
            left: 0;
            background: linear-gradient(to right, #f2f2f2 0%, transparent 100%);
        }

        .slider::after {
            right: 0;
            background: linear-gradient(to left, #f2f2f2 0%, transparent 100%);
        }

        /* CADA SLIDE */
        .slider .slide {
            width: 300px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
        }

        .slider img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
          /* CONTENEDOR GENERAL */
        .slider {
            width: 100%;
            height: 180px;
            overflow: hidden;
            position: relative;
        }
 .top-card_brand {
            min-width: 100%;
            max-width: 100%;
            min-height: 270px;
            padding: 25px;
            border-radius: 8px;
            border: none;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 15px;
            justify-content: center;
        }
          .card_brand-etiqueta span {
            background-color: #F29F05;
            color: #fff;
            font-size: 14px;
            font-weight: bold;
            padding: 5px 9px;
            border-radius: 8px;
        }

        
        .card_brand-boton {
            padding: 10px 20px;
            background-color: #056CC1;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition-duration: 500ms;
        }

        .card_brand-boton:hover {
            background-color: #1680d6;
            color: #fff;
            transform: scale(1.1);
        }
