    :root {
      --bg: #0a0a0a;
      --card-bg: #1D1D1F;
      --card-border: #2a2a2a;
      --accent: #3b9eff;
      --text-primary: #f0f0f0;
      --text-muted: #888;
      --fade-color: #000;
    }
 
    
 
    /* ── Section container ── */
    .slider-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: #000;
    }
 
    /* Overlay sólido na esquerda — cobre os 350px de margem */
    .slider-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 500px;
      height: 100%;
      background: var(--fade-color);
      pointer-events: none;
      z-index: 10;
    }
 
    /* Overlay fade agora relativo à section, não à viewport */
    .slider-section::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 160px;
      height: 100%;
      background: linear-gradient(to right, transparent, var(--fade-color) 90%);
      pointer-events: none;
      z-index: 10;
    }
 
    /* ── Wrapper full-bleed ── */
    .slider-wrapper {
      position: relative;
      width: 100%;
    }
 
    /* O splide ocupa toda a largura mas recua o track com padding-left */
    .splide {
      overflow: hidden;
      width: 100%;
    }
 
    /* Track começa no centro da viewport e vaza até a borda direita */
    .splide__track {
      overflow: visible !important;
      clip-path: none !important;
      padding-left: 500px !important;
    }
 
    /* ── Igualar altura dos slides ── */
    .splide__list {
      align-items: stretch !important;
    }
 
    .splide__slide {
      display: flex !important;
      height: auto !important;
    }
 
    /* ── Cards ── */
    .card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 32px 28px 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
      cursor: default;
      user-select: none;
    }
 
 
 
    .card-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.85;
    }
 
    .card-icon svg {
      width: 40px;
      height: 40px;
      stroke: var(--text-primary);
      fill: none;
      stroke-width: 1.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .card-title {
      font-family: 'Syne', sans-serif;
      font-size: 23px;
      font-weight: 700;
      color: var(--text-primary);
      letter-spacing: -0.01em;
    }
 
    .card-desc {
      font-size: 20px;
      color: var(--text-muted);
      line-height: 1.6;
      flex: 1;
      font-weight: 300;
    }
 
    .card-btn {
      width: 39px;
      height: 39px;
      border-radius: 50%;
      border:1px solid black;
      background: black;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      line-height: 1;
      padding-bottom: 1px;
    }
 
    .card-btn:hover {
      background: var(--accent);
      border-color: var(--accent);
    }
 
    /* ── Setas customizadas ── */
    .splide__arrow {
      background: var(--card-bg) !important;
      border: 1px solid var(--card-border) !important;
      width: 60px !important;
      height: 60px !important;
      opacity: 1 !important;
      z-index: 20;
      transition: background 0.2s, border-color 0.2s !important;
    }
 
    .splide__arrow:hover {
      background: var(--accent) !important;
      border-color: var(--accent) !important;
    }
 
    .splide__arrow svg {
      fill: var(--text-primary) !important;
      width: 14px !important;
      height: 14px !important;
    }
 
    /* ── Setas desktop: ocultar prev nativa, manter next ── */
    .splide__arrow--prev { display: none !important; }
    .splide__arrow--next { right: 0 !important; }
 
    /* ── Seta prev customizada fora do splide (desktop) ── */
    .btn-prev {
      position: absolute;
      left: 418px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 20;
      transition: background 0.2s, border-color 0.2s;
    }

    button.splide__arrow.splide__arrow--next{
      background:white!important;
    }

   .splide__arrow svg {
    fill: black !important;
    width: 14px !important;
    height: 14px !important;
}
 

 
    .btn-prev svg {
      width: 14px;
      height: 14px;
      fill: none;
      stroke: var(--text-primary);
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .mobile-nav {
      display: none;
    }

        /* ── Entre 1280px e 1600px: offset reduzido para 250px ── */
    @media (max-width: 1600px) and (min-width: 1280px) {
      .slider-section::before {
        width: 180px;
      }

    .btn-prev {
      position: absolute;
      left: 60px!important;
      top: 50%;
      transform: translateY(-50%);
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 20;
      transition: background 0.2s, border-color 0.2s;
    }
    }
 
    /* ── 350px offset: apenas acima de 1280px ── */
    @media (max-width: 1279px) {
      .slider-section::before {
        width: 24px;
      }
 
      .splide__track {
        padding-left: 24px !important;
      }
 
      .btn-prev {
        left: 0;
      }
    }
 
    /* ── Overlay fade: oculto no mobile ── */
    @media (max-width: 520px) {
      /* Esconde setas desktop e overlay */
      .btn-prev,
      .splide__arrow--next {
        display: none !important;
      }
 
      .slider-section::after {
        display: none !important;
      }
 
      /* No mobile o track começa da borda com padding simples */
      .splide__track {
        padding-left: 16px !important;
      }
 
      /* Nav mobile visível */
      .mobile-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 24px;
        width: 100%;
        max-width: 900px;
        padding: 0 16px;
      }
 
      .mobile-nav .nav-btn {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.2s, border-color 0.2s;
      }
 
      .mobile-nav .nav-btn:hover {
        background: var(--accent);
        border-color: var(--accent);
      }
 
      .mobile-nav .nav-btn svg {
        width: 14px;
        height: 14px;
        fill: none;
        stroke: var(--text-primary);
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
 
      /* Counter de slide no mobile */
      .mobile-nav .nav-counter {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.8rem;
        color: var(--text-muted);
        min-width: 40px;
        text-align: center;
      }
    }
 
    /* ── Paginação ── */
    .splide__pagination {
      bottom: -36px !important;
    }
 
    .splide__pagination__page {
      background: var(--card-border) !important;
      opacity: 1 !important;
      width: 6px !important;
      height: 6px !important;
      transition: background 0.2s, width 0.3s !important;
    }
 
    .splide__pagination__page.is-active {
      background: var(--accent) !important;
      width: 20px !important;
      border-radius: 3px !important;
      transform: none !important;
    }
 
    /* ── CTA ── */
    .cta-wrap {
      margin-top: 56px;
      text-align: center;
    }
 
    .cta-btn {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 999px;
      padding: 14px 36px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s;
      letter-spacing: 0.01em;
    }
 
    .cta-btn:hover {
      opacity: 0.88;
      transform: translateY(-1px);
    }
    /* ── Modal overlay ── */
    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(4px);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }
 
    .modal-backdrop.is-open {
      opacity: 1;
      pointer-events: all;
    }
 
    /* ── Modal box ── */
    .modal {
      background: #f0f0ee;
      border-radius: 20px;
      width: 100%;
      max-width: 760px;
      display: grid;
      grid-template-columns: 1fr 1px 1fr;
      align-items: stretch;
      gap: 0;
      position: relative;
      overflow: hidden;
      transform: translateY(16px) scale(0.98);
      transition: transform 0.25s ease;
    }
 
    .modal-backdrop.is-open .modal {
      transform: translateY(0) scale(1);
    }
 
    /* Botão fechar */
    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #1a1a1a;
      border: none;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: background 0.2s;
      line-height: 1;
    }
 
    .modal-close:hover { background: #333; }
 
    /* Lado esquerdo: cópia do card */
    .modal-card {
      background: #1a1a1a;
      border-radius: 16px;
      margin: 20px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
 
    .modal-card .card-icon svg {
      stroke: #f0f0f0;
    }
 
    .modal-card .card-title {
      color: #f0f0f0;
      font-size: 1rem;
    }
 
    .modal-card .card-desc {
      color: #999;
      font-size: 0.82rem;
    }
 
    /* Divisor vertical */
    .modal-divider {
      width: 1px;
      background: #d0d0ce;
      margin: 24px 0;
      align-self: stretch;
    }
 
    /* Lado direito: bullets */
    .modal-content {
      padding: 36px 40px 36px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
 
    .modal-bullets {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
 
    .modal-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.9rem;
      color: #1a1a1a;
      line-height: 1.5;
    }
 
    .modal-bullets li::before {
      content: '•';
      color: #1a1a1a;
      font-size: 1.1rem;
      line-height: 1.4;
      flex-shrink: 0;
    }
 
    /* Mobile modal */
    @media (max-width: 600px) {
      .modal {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
      }
 
      .modal-divider { display: none; }
 
      .modal-card { margin: 16px 16px 0; }
 
      .modal-content { padding: 24px 20px; }
    }

     /* ══════════════════════════════════════
       SLIDER: miolink-pratica
    ══════════════════════════════════════ */
 
    .pratica-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: #323E62;
      padding: 100px 0;
    }

    .section-pratica-title {
      font-weight: 200;
      color:white;
      text-align: center;
      margin-bottom: 80px;
      font-size: 35px;
      
      position: relative; z-index: 20
    }

    .section-pratica-desc {
      font-weight: 600;
      color:white;
      text-align: center;
      margin-top: 80px;
      font-size: 20px;      
      position: relative; z-index: 20;
      padding:0 10px;
    }
 
    /* Overlay sólido esquerdo */
    .pratica-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 500px;
      height: 100%;
      background: #323E62;
      pointer-events: none;
      z-index: 10;
    }
 
    /* Overlay fade direito */
    .pratica-section::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 160px;
      height: 100%;
      background: linear-gradient(to right, transparent, #323E62 90%);
      pointer-events: none;
      z-index: 10;
    }
 
    .pratica-wrapper {
      position: relative;
      width: 100%;
    }
 
    #splide-pratica {
      overflow: hidden;
      width: 100%;
    }
 
    #splide-pratica .splide__track {
      overflow: visible !important;
      clip-path: none !important;
      padding-left: 500px !important;
    }
 
    #splide-pratica .splide__list {
      align-items: stretch !important;
    }
 
    #splide-pratica .splide__slide {
      display: flex !important;
      height: auto !important;
    }
 
    /* ── Card pratica ── */
    .pratica-card {
      background: #3A4668;      
      border-radius: 16px;
      padding: 40px 24px 40px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
      overflow: hidden;
    }
 
    .pratica-card-number {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #f0f0f0;
      letter-spacing: -0.01em;
    }
 
    .pratica-card-title {
      
      font-size: 24px;
      font-weight: 700;
      color: #f0f0f0;
      letter-spacing: -0.01em;
      display: inline;
    }
 
    .pratica-card-number-title {
      
      font-size: 24px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 4px;
    }
 
    .pratica-card-desc {
      font-size: 24px;
      color: #ffffff;
      line-height: 1.6;
      font-weight: 200;
    }
 
    .pratica-card-img {
      margin-top: 20px;
      width: 100%;
      aspect-ratio: 3/2;
      object-fit: contain;
      border-radius: 10px 10px 0 0;
      display: block;
    }
 
    /* ── Setas pratica ── */
    .pratica-btn-prev {
      position: absolute;
      left: 418px;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.15);
      border: none;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 20;
      transition: background 0.2s;
    }
 
    .pratica-btn-prev:hover { background: rgba(255,255,255,0.25); }
 
    .pratica-btn-prev svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke:black;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    #splide-pratica .splide__arrow--prev { display: none !important; }
 
    #splide-pratica .splide__arrow--next {
      right: 0 !important;
      background: white !important;
      border: none !important;
      width: 60px !important;
      height: 60px !important;
      opacity: 1 !important;
      z-index: 20;
      transition: background 0.2s !important;
    }
 
    #splide-pratica .splide__arrow--next:hover {
      background: rgba(255,255,255,0.25) !important;
    }
 
    #splide-pratica .splide__arrow--next svg {
       width: 14px;
      height: 14px;
      fill: none;
      stroke:black;
      stroke-width: 1.0;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    /* Paginação pratica */
    #splide-pratica .splide__pagination {
      bottom: -36px !important;
    }
 
    #splide-pratica .splide__pagination__page {
      background: rgba(255,255,255,0.3) !important;
      opacity: 1 !important;
      width: 6px !important;
      height: 6px !important;
      transition: background 0.2s, width 0.3s !important;
    }
 
    #splide-pratica .splide__pagination__page.is-active {
      background: #fff !important;
      width: 20px !important;
      border-radius: 3px !important;
      transform: none !important;
    }
 
    /* ── Nav mobile pratica ── */
    .pratica-mobile-nav {
      display: none;
    }

            /* ── Entre 1280px e 1600px: offset reduzido para 250px ── */
    @media (max-width: 1600px) and (min-width: 1280px) {
      .pratica-section::before {
        width: 180px;
      }

    .pratica-btn-prev {
      position: absolute;
      left: 60px!important;
      top: 50%;
      transform: translateY(-50%);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 20;
      transition: background 0.2s, border-color 0.2s;
    }
    }
 
    /* ── Responsivo pratica ── */
    @media (max-width: 1279px) {
      .pratica-section::before { width: 24px; background: #323e62; }
      #splide-pratica .splide__track { padding-left: 24px !important; }
      .pratica-btn-prev { left: 0; }
    }
 
    @media (max-width: 520px) {
      .pratica-btn-prev,
      #splide-pratica .splide__arrow--next { display: none !important; }
      .pratica-section::after { display: none !important; }
      #splide-pratica .splide__track { padding-left: 16px !important; }
 
      .pratica-mobile-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 24px;
        width: 100%;
        padding: 0 16px;
      }
 
      .pratica-mobile-nav .nav-btn {
        background: rgba(255,255,255,0.15);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.2s;
      }
 
      .pratica-mobile-nav .nav-btn svg {
        width: 14px;
        height: 14px;
        fill: none;
        stroke: #fff;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
 
      .pratica-mobile-nav .nav-counter {
        font-family: 'DM Sans', sans-serif;
        font-size: 0.8rem;
        color: rgba(255,255,255,0.5);
        min-width: 40px;
        text-align: center;
      }
    }

   /*--- section produto ---*/

    .section-produto{
     
      width: 100%;
      background-color: white;
      padding:100px 0 118px;
      margin: 0 auto;
      
    }

    .box-produto {
      max-width: 1080px;
      margin: 0 auto;
    }
 
    .section-title {
      text-align: center;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 200;
      color: #0D1526;
      margin-bottom: 56px;
      line-height: 1.25;
    }
    .section-title strong { font-weight: 800; }
 
    /* ── CARD ── */
    .product-card {
      background: #FFFFFF;
      border-radius: 32px;
      padding: 52px 56px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 64px;
      align-items: center;
    }
 
    /* ── LEFT ── */
    .left { display: flex; flex-direction: column; align-items: center; gap: 28px; }
 
    .product-image-wrap {
      width: 340px;
      height: 260px;   
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
 
    .product-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
      
    }
 
    .product-img.fade-out { opacity: 0; transform: scale(.94) translateY(8px); }
    .product-img.fade-in  { opacity: 1; transform: scale(1) translateY(0); }
 
    /* ── TABS ── */
    .tabs { display: flex; gap: 14px; }
 
    .tab {
      cursor: pointer;
      border-radius: 14px;
      overflow: hidden;
      outline: 2.5px solid transparent;
      outline-offset: 3px;
      transition: outline-color 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
      background: transparent;
      padding: 0;
      display: inline-flex;
    }
    .tab:hover { transform: translateY(-2px); }

 
    .tab-thumb {
 
      object-fit: cover;
      display: block;
      border-radius: px;
    }

    .tab:not(.active) .tab-thumb {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.35s, opacity 0.35s;
}
 
    /* ── RIGHT ── */
    .right {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
 
    .product-name {
      font-size: clamp(1.5rem, 2.4vw, 2rem);
      font-weight: 400;
      color: #0D1526;
      transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
    }
    .product-name strong { font-weight: 900; }
 
    .features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
    }
    .features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: #000;
      line-height: 1.45;
    }
    .features li::before {
      content: '';
      flex-shrink: 0;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #000000;
      margin-top: 7px;
    }
 
    .dimensions {
      font-size: 13px;
      color: #000;
      padding-top: 0px;
      border-bottom: 1px solid #EAEDF5;
      transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
      height: 25px;
      display: block;
    }
    .dimensions strong { color: #000; font-weight: 400; }
 
    .use-cases { transition: opacity 0.35s cubic-bezier(.4,0,.2,1); }
    .use-cases-label {
      font-size: 14px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: #000;
      margin-bottom: 16px;
    }
    .use-cases-grid {
      display: flex;
      gap: 20px;
    }
    .use-case {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      text-align: left;
      flex: 1;
    }
    .use-case-icon {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .use-case-icon svg { width: 20px; height: 20px; stroke: #1A6FFF; fill: none; stroke-width: 1.8; }
    .use-case p { font-size: 12px; color: #3E4A63; line-height: 1.35; }
 
    /* ── CTA ── */
    .cta-wrap { margin-top: 36px; display: flex; justify-content: center; }
    .cta-btn {
      background: #1A6FFF;
      color: #FFFFFF;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 700;
      padding: 16px 44px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      letter-spacing: .02em;
      transition: background 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
      box-shadow: 0 6px 24px rgba(26,111,255,.35);
    }
    .cta-btn:hover {
      background: #1256d6;
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(26,111,255,.45);
    }
    .cta-btn:active { transform: translateY(0); }
 
    /* fade content */
    .content-fade { transition: opacity 0.35s cubic-bezier(.4,0,.2,1); }
    .content-fade.hidden { opacity: 0; pointer-events: none; }
 
    @media (max-width: 768px) {
      .product-card {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        gap: 36px;
      }
      .product-image-wrap { width: 100%; }
      .use-cases-grid { gap: 12px; }
    }

.main-btn {
    background: #2089FF;
    width: 100%;
    margin: 0 auto;
    max-width: fit-content;
    padding:15px 35px;    
    display: block;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 103px;
}

.main-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

  