.services-breadcrumbs {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0.8rem 1.5rem;
            margin: 1.5rem auto;
            width: fit-content;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(200, 220, 230, 0.6);
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .services-breadcrumbs ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.5rem;
            justify-content: center;
        }

        .services-breadcrumbs li {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .services-breadcrumbs li a {
            text-decoration: none;
            color: #4a5568;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
        }

        .services-breadcrumbs li a:hover {
            background-color: #0077b6; /* LatinosPC Blue */
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 119, 182, 0.25);
        }

        .services-breadcrumbs li:not(:last-child)::after {
            content: "\203A"; /* Better arrow character */
            margin-left: 0.5rem;
            color: #cbd5e0;
            font-size: 1.2rem;
            line-height: 1;
        }

        .services-breadcrumbs li a.active {
            font-weight: 800;
            color: #0077b6;
            background: rgba(0, 119, 182, 0.05);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        @media (max-width: 768px) {
            .services-breadcrumbs {
                padding: 0.6rem 1rem;
                border-radius: 20px;
                margin: 1rem 10px;
            }
            .services-breadcrumbs li a {
                padding: 0.3rem 0.6rem;
                font-size: 0.8rem;
            }
        }

/* CONSULTATION */
.service {
      font-size: 18px;
      color: rgb(35, 33, 33);
      display: inline-block;
      padding: 5px 0;
      position: relative;
  }

  .service:before {
      content: '';
      background: #13b1ea;
      display: block;
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 3px;
      transition: all 0.3s ease-in-out;
  }

  .service:hover {
      background-position: 0;
  }

  .service:hover::before {
      width: 100%;
  }

/* REMOTE SUPPORT */
   .remote {
            display: inline-block;
            padding: 5px 0;
            position: relative;
        }

        .remote:before {
            content: '';
            background: rgb(31, 150, 99);
            display: block;
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 3px;
            transition: all 0.3s ease-in-out;
        }

        .remote:hover {
            background-position: 0;
        }

        .remote:hover::before {
            width: 100%;
        }

        .text {
            font-size: 20px;
            background: rgb(221, 247, 233);
        }