
    .services-section {
      background: var(--surface);
      padding: 40px 0 40px 0;
    }
    .services-title {
      color: var(--brand-primary);
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 10px;
      text-align: center;
    }
    .services-subtitle {
      font-size: 1.1rem;
      color: var(--text-muted);
      margin-bottom: 40px;
      text-align: center;
    }
    .services-carousel-container {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 1100px;
      margin: 10px auto;
      position: relative;
      height: 420px;
      overflow: hidden;
      width: 100%;
    }
    .carousel-fade {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 72px;
      pointer-events: none;
      z-index: 1;
    }
    .carousel-fade.left { left: 0; background: linear-gradient(90deg, var(--surface) 0%, rgba(255,255,255,0) 100%); }
    .carousel-fade.right { right: 0; background: linear-gradient(-90deg, var(--surface) 0%, rgba(255,255,255,0) 100%); }
    .services-cards-carousel {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      height: 96%;
      padding: 4px 12px;
    }
    .services-cards-carousel::-webkit-scrollbar { display: none; }
    .services-cards-carousel { scrollbar-width: none; }
    .service-card {
      background: #fff;
      border-radius: var(--radius-xl);
      box-shadow: 0 6px 18px rgba(17,24,39,0.06);
      padding: 32px 24px 24px 24px;
      width: clamp(280px, 72vw, 480px);
      min-height: 320px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: box-shadow .25s var(--ease-smooth), border-color .25s var(--ease-smooth), transform .25s var(--ease-smooth);
      border: 1px solid #efe7df;
      box-sizing: border-box;
      margin: 0 4px;
      flex-shrink: 0;
      scroll-snap-align: center;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(17,24,39,0.10);
      border-color: var(--brand-secondary);
    }
    .service-title {
      color: var(--brand-primary);
      font-size: 1.35rem;
      margin-bottom: 10px;
      font-weight: 700;
      letter-spacing: 0.2px;
    }
    .service-desc {
      color: var(--text-muted);
      font-size: 1.05rem;
      margin-bottom: 0;
      line-height: 1.7;
      max-width: 44ch;
    }
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.9);
      backdrop-filter: saturate(140%) blur(2px);
      border: 1px solid rgba(17,24,39,0.08);
      border-radius: var(--radius-pill);
      width: 40px;
      height: 40px;
      box-shadow: 0 2px 8px rgba(17,24,39,0.08);
      color: var(--brand-primary);
      font-size: 1rem;
      cursor: pointer;
      z-index: 2;
      transition: background .2s var(--ease-smooth), transform .2s var(--ease-smooth), box-shadow .2s var(--ease-smooth);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .carousel-arrow:hover,
    .carousel-arrow:focus-visible {
      background: var(--brand-secondary);
      color: var(--brand-primary);
      outline: none;
      transform: translateY(-50%) scale(1.04);
      box-shadow: 0 6px 16px rgba(17,24,39,0.12);
    }
    .carousel-arrow.left {
      left: 1px; /* ajustado */
    }
    .carousel-arrow.right {
      right: 1px; /* ajustado */
    }
    .carousel-dots {
      display: flex;
      justify-content: center;
      margin-top: 18px;
      gap: 8px;
    }
    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: var(--radius-pill);
      background: transparent;
      border: 2px solid #e9d8c9;
      cursor: pointer;
      transition: background 0.2s var(--ease-smooth), transform 0.2s var(--ease-smooth), border-color .2s var(--ease-smooth), width .2s var(--ease-smooth);
    }
    .carousel-dot.active {
      background: var(--brand-secondary);
      border-color: var(--brand-secondary);
      width: 18px;
    }
    .carousel-dot:focus-visible { outline: 2px solid var(--brand-secondary); outline-offset: 2px; }
    @media (max-width: 900px) {
      .services-carousel-container {
        max-width: 100vw;
        height: 360px;
      }
      .service-card {
        width: 88vw;
        min-height: 300px;
        padding: 24px 16px 20px 16px;
        margin: 0 2vw;
      }
      .carousel-arrow.left { left: 0; }
      .carousel-arrow.right { right: 0; }
    }

    @media (max-width: 520px) {
      .services-title { font-size: 2rem; }
      .services-subtitle { font-size: 1rem; }
      .services-carousel-container { height: 330px; }
      .service-card { min-height: 280px; }
      .service-title { font-size: 1.25rem; }
      .service-desc { font-size: 1rem; }
    }

    /* Respeita usuários com preferência por reduzir movimento */
    @media (prefers-reduced-motion: reduce) {
      .services-cards-carousel { scroll-behavior: auto; }
      .service-card { transition: none; }
      .carousel-arrow { transition: none; }
      .carousel-dot { transition: none; }
    }
