

    .uc_appservico-card {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      background: #fff;
      padding: 30px;
     
    }

    /* Coluna da esquerda */
    .uc_appservico-left {
      display: flex;
      flex-direction: column;
    }

    .uc_appservico-header {
      display: flex;
      align-items: center;
    }

    .uc_appservico-icon {
      width: 64px;
      height: 64px;
      border-radius: 14px;
      background: #0078d7;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #fff;
      margin-right: 16px;
      flex-shrink: 0;
    }

    .uc_appservico-info {
      display: flex;
      flex-direction: column;
    }

    .uc_appservico-name {
      font-size: 20px;
      font-weight: 600;
      color: #111;
      margin-bottom: 4px;
    }

    .uc_appservico-department {
      font-size: 14px;
      color: #666;
    }

    .uc_appservico-description {
      margin-top: 30px;
      font-size: 15px;
      color: #333;
      line-height: 1.4;
    }

    .uc_appservico-rating {
      margin-top: 20px;
      font-size: 14px;
      color: #444;
    }

    /* Estrelas simples */
    .uc_appservico-stars {
      color: #ffb400;
      font-size: 16px;
      margin-left: 6px;
    }

    /* Coluna da direita */
    .uc_appservico-right {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 10px;
    }
    
    .uc_appservico-fav {
      background: #fff5f5;
      color: #d93025;
      border: 1px solid #d93025;
    }

    .uc_appservico-fav:hover {
      background: #ffe5e5;
    }

    .uc_appservico-helpdesk {
      background: #f1f3f4;
      color: #333;
    }

    .uc_appservico-helpdesk:hover {
      background: #e2e5e7;
    }

    /* Área de serviços Helpdesk */
    .uc_appservico-helpdesk-services {
      grid-column: span 2;
      margin-top: 20px;
      padding-top: 10px;
      border-top: 1px solid #e0e0e0;
    }

    .uc_appservico-helpdesk-title,
    .uc_appservico-docs-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #111;
    }

    .uc_appservico-helpdesk-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .uc_appservico-helpdesk-table th,
    .uc_appservico-helpdesk-table td {
      text-align: left;
      padding: 10px 12px;
      border-bottom: 1px solid #e0e0e0;
      vertical-align: top;
    }

    .uc_appservico-helpdesk-table th {
      background: #f5f5f7;
      font-weight: 600;
      color: #333;
    }

    .uc_appservico-helpdesk-link {
      color: #0078d7;
      text-decoration: none;
      font-weight: 500;
    }

    .uc_appservico-helpdesk-link:hover {
      text-decoration: underline;
    }

    /* Documentos de apoio */
    .uc_appservico-docs {
      grid-column: span 2;
      margin-top: 20px;
      padding-top: 10px;
      border-top: 1px solid #e0e0e0;
    }

    .uc_appservico-docs-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .uc_appservico-docs-item {
      margin-bottom: 8px;
    }

    .uc_appservico-docs-link {
      color: #0078d7;
      text-decoration: none;
      font-size: 14px;
    }

    .uc_appservico-docs-link:hover {
      text-decoration: underline;
    }
