    *, *::before, *::after { box-sizing: border-box; }
    body { margin: 0; font-family: 'Montserrat', sans-serif; color: #333333; }
    .products-section { padding: 1rem; display: flex; flex-direction: column;       max-width: 1200px; margin: 0 auto;}
    .products-section h2 { font-weight: 300; font-size: 1.75rem; margin-bottom: 1.5rem; }
.cards-container {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* mantém momentum no iOS */
  touch-action: auto;
  overscroll-behavior: contain auto;
}

    .cards-container::-webkit-scrollbar { display: none; }
    .card {
      position: relative;
      flex: 0 0 23%;
      background-color: #f5f3f1;
      border: 1px solid #f5f3f1;
      border-radius: 20px;
      padding: 1.5rem 0.75rem 0.75rem;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      cursor: pointer;
    }
    .label-tag {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      background: transparent;
      color: #fff;
      text-align: center;
      font-size: 0.75rem;
      font-weight: 500;
      padding: 0.25rem 0;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
    }
    .card img { width: 100%; height: auto; border-radius: 4px; margin-bottom: 0.75rem; }
    .title-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; width: 100%; }
    .title-group h3 { font-weight: 400; font-size: 1.25rem; margin: 0; }
    .title-group .description { font-weight: 300; font-size: 0.6rem; margin: 0; line-height: 1.4; word-break: break-word; }
    .pricing-group { display: flex; flex-direction: column; gap: 0.25rem; margin-top: auto; width: 100%; }
    .pricing-group .price-intro { margin: 0; font-size: 0.7rem; line-height: 1.2; text-transform: uppercase; letter-spacing: 1px; color: #444; }
    .pricing-group .price { margin: 0; font-weight: 600; color: #001428; font-size: 1.5rem; line-height: 1.2; }
    .pricing-group .installment { margin: 0; font-weight: 300; color: #001428; font-size: 0.8rem; line-height: 1.2; }
    .card button { margin-top: 1rem; align-self: stretch; padding: 1rem 0.6rem; font-size: 0.8rem; border: 1px solid #fff; background-color: #FF564D; color: #fff; border-radius: 16px; font-weight: 600; cursor: pointer; text-align: center; }
    button i { font-size: 1rem; vertical-align: middle; }
    .disclaimer { font-size: 0.8rem; color: #000; margin-top: 1rem; line-height: 1.3; text-align: center; }
    @media (max-width: 768px) { .card { flex: 0 0 75%; } .card button {font-size: 1.1rem;} }