
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
  }

.badge-status {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

  .destaque-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .destaque-card:hover {
    transform: scale(1.02);
  }

  .destaque-card img {
    width: 100%;
    height: auto;
    border-radius: 0 0 12px 12px;
  }

  .destaque-card .card-body {
    padding: 20px;
  }

  .horizontal-card {
    display: flex;
    flex-direction: row;
    height: 130px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    cursor: pointer;
  }

  .horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .horizontal-card img {
    height: 100%;
    width: 130px;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
  }

  .card-body {
    padding: 15px;
    flex-grow: 1;
  }

  .card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .card-text {
    font-size: 14px;
    margin-bottom: 4px;
    color: #555;
  }

  .btn-ver {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
  }

  .btn-ver:hover {
    background-color: #218838;
  }





  


    body {
      background: #f5f5f5;
      font-family: 'Segoe UI', sans-serif;
    }

    .destaque-card {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      border-radius: 50px;
      overflow: hidden;
      transition: transform 0.3s;
    }

    .destaque-card:hover {
      transform: scale(1.01);
    }

    .horizontal-card {
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .horizontal-card:hover {
      transform: scale(1.01);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    }

    .progress {
      height: 10px;
      border-radius: 10px;
      overflow: hidden;
    }

    .progress-bar {
      background-color: #28a745;
    }

    .detalhes-sorteio {
      background: #f1f1f1;
      border-radius: 8px;
      padding: 10px;
      margin-top: 10px;
      font-size: 14px;
    }

    .card-title {
      font-size: 1.25rem;
      font-weight: 600;
    }

    .btn-primary {
      background-color: #007bff;
      border: none;
    }

    .btn-primary:hover {
      background-color: #0056b3;
    }
  
