@media (max-width: 768px) {
  /* Esconde as tabelas originais no mobile (somente as que foram processadas) */
  table[data-mt-processed="1"] {
    display: none !important;
  }

  .mt-cards {
    display: grid;
    gap: 1rem;
  }

  .mt-card {
    min-width: 280px;
    border: 1px solid #CBD5E1;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
  }

  .mt-card__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: 11.5px 16px;
    background: #E1EFFD;
    border: 0;
    text-align: left;
    list-style: none;
  }

  .mt-card__header::-webkit-details-marker {
    display: none;
  }

  .mt-card__title {
    font-weight: 700 !important;
    font-size: 18px;
    /* line-height: 1.2; */
    color: #0862AD;
    font-weight: 700;
  }

  .mt-card__chev {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: #0b5ea8;
  }

  .mt-card__chev svg {
    width: 15px;
    /* height: 18px; */
    transition: transform .2s ease;
  }

  .mt-card[open] .mt-card__chev svg {
    transform: rotate(180deg);
  }

  .mt-card__body {
    padding: 1rem 1rem 1.25rem;
  }

  .mt-row {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(120px, 2fr);
    gap: 0.5rem 1rem;
    padding: 1rem 0;
  }

  .mt-row:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .mt-label {
    font-weight: 700;
    color: #020617;
    font-size: 14px;
  }

  .mt-value {
    color: #020617;
    word-break: break-word;
    font-weight: 400;
    font-size: 14px;
  }

  .mt-value a {
    color: #0b5ea8;
    text-decoration: underline;
  }
}