body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    /* display: flex; */
  }

  .align-card {
    padding: 10px;
  }

  .card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 250px;
    overflow: hidden;
    transition: transform 0.2s ease;
  }

  .card:hover {
    transform: scale(1.03);
  }

  .card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
  }

  .card-content {
    padding: 15px;
    text-align: center;
  }

  .card-title {
    font-weight: bold;
    color: #333;
    font-size: 14px;
    margin-bottom: 6px;
  }

  .card-description {
    color: #666;
    font-size: 13px;
    margin-bottom: 8px;
  }

  /* Link produto */

  .card-link {
    text-decoration: none;
    color: inherit; 
    display: inline-block;
  }

  .card-link .card {
    cursor: pointer; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .card-link .card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  /* link produto */

  .price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
  }

  .price-new {
    color: #008000;
    font-size: 20px;
    font-weight: bold;
    margin: 4px 0;
  }

  .discount {
    color: #1a9b00;
    font-weight: bold;
    font-size: 13px;
  }

  .installments {
    color: #444;
    font-size: 13px;
  }

  /* .frete {
    color: #00b300;
    font-weight: bold;
    margin-top: 5px;
    font-size: 13px;
  } */

  /*    Scroll-horizontal  */

  .scroll-horizontal-card {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px;
    scroll-behavior: smooth;
  }

  .scroll-horizontal-card::-webkit-scrollbar {
    display: none;
  }

  .scroll-horizontal-card .card {
    flex: 0 0 auto;
    width: 250px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform .2s;
  }

  .scroll-horizontal-card .card:hover {
    transform: scale(1.03);
  }

  @media (min-width: 769px) {
    .scroll-horizontal-card {
      overflow-x: visible;
      flex-wrap: wrap;
    }
  }