.card-curso {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 90px 24px 24px 24px;
    position: relative;
    max-width: 500px;
    color: #434A54;
    box-shadow: inset 0 0 0 1px #DEE3ED;
  }
  
  .card-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 8px 16px;
    border-radius: 4px;
  }
  
  .h2-card {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
  }
  
  .p-card {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .card-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #434A54;
  }
  
  .info-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
  }
  
  .share-button {
    position: absolute;
    bottom: 24px;
    right: 24px;
  }
  
  .share-button button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .share-button i {
    font-size: 20px;
    color: #434A54;
  }
  
  .wrapper-button-center {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }