  .resumo_prazos{
    --sx-radius: 14px;
    --sx-gap: 14px;
    --sx-pad-y: 12px;
    --sx-pad-x: 14px;
    --sx-border: 1px;
    --sx-bg: #fff;
    --sx-fg: #1f2937;          /* cinza-900 */
    --sx-subtle: #6b7280;      /* cinza-500 */
    --sx-line: #e5e7eb;        /* cinza-200 */
    --sx-ring: #dbeafe;        /* azul-100 */
    --sx-ring-strong: #93c5fd; /* azul-300 */
    --sx-shadow: 0 1px 2px rgba(0,0,0,.04), 0 6px 20px rgba(0,0,0,.06);

    list-style: none;
    margin: 16px 0;
    padding: 0;
    background: var(--sx-bg);
    border: var(--sx-border) solid var(--sx-line);
    border-radius: var(--sx-radius);
    box-shadow: var(--sx-shadow);
    overflow: hidden;
}

/* Cada item de mensagem */
  .resumo_prazos > li{
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: var(--sx-gap);
    padding: var(--sx-pad-y) var(--sx-pad-x);
    color: var(--sx-fg);
    font-size: 15px;
    line-height: 1.45;
    border-top: var(--sx-border) solid var(--sx-line);
    background: transparent;
    position: relative;
    transition: background-color .2s ease, box-shadow .2s ease, transform .06s ease;
}
  .resumo_prazos > li:first-child{
    border-top: 0;
}

/* Ícone à esquerda (genérico) */
  .resumo_prazos > li::before{
    content: '⏰';
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--sx-ring);
    border: 1px solid var(--sx-ring-strong);
    font-size: 14px;
    transform: translateY(1px);
}

/* Ênfase por tipo (se você adicionar classes no <li>) */
  .resumo_prazos > li.amanha::before{ content: '⚡'; }
  .resumo_prazos > li.ate-10::before{ content: '📅'; }
  .resumo_prazos > li.ate-30::before{ content: '🗓️'; }

/* Destaques sutis ao passar o mouse */
  .resumo_prazos > li:hover{
    background: #f9fafb; /* cinza-50 */
}
  .resumo_prazos > li:active{
    transform: translateY(1px);
}

/* Texto interno forte (caso você envolva números com <strong>) */
  .resumo_prazos > li > strong{
    color: var(--sx-fg);
    font-weight: 700;
}

/* Badge opcional em contagem (se usar <span class='sx-badge'>) */
  .resumo_prazos > li > .sx-badge{
    justify-self: start;
    align-self: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--sx-ring);
    border: 1px solid var(--sx-ring-strong);
    font-size: 12px;
    color: var(--sx-subtle);
}

/* Acessibilidade: reduz animações quando preferido */
@media (prefers-reduced-motion: reduce){
      .resumo_prazos > li{
        transition: none;
    }
}

.CardConversao{
    max-width: 100% !important;
    margin: 0 20px !important;
}
.titular_info type2{}
.titular_info type2 > p{}
/* Container do teaser (o mesmo elemento tem as classes .cronologia_resumo e  ) */
 .cronologia_resumo{
    margin: 16px 0;
    padding: 0 20px;
}

/* Lista de movimentos: caixa com borda, sombra e variáveis de tema */
 .cronologia_resumo > .resumo_movs{
    --sx-radius: 14px;
    --sx-gap: 14px;
    --sx-pad-y: 12px;
    --sx-pad-x: 14px;
    --sx-border: 1px;

    --sx-bg: #fff;
    --sx-fg: #1f2937;          /* cinza-900 */
    --sx-subtle: #6b7280;      /* cinza-500 */
    --sx-line: #e5e7eb;        /* cinza-200 */
    --sx-ring: #dbeafe;        /* azul-100 */
    --sx-ring-strong: #93c5fd; /* azul-300 */

    --sx-shadow: 0 1px 2px rgba(0,0,0,.04), 0 6px 20px rgba(0,0,0,.06);

    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--sx-bg);
    border: var(--sx-border) solid var(--sx-line);
    border-radius: var(--sx-radius);
    box-shadow: var(--sx-shadow);
    overflow: hidden;
}

/* Cada linha de resumo */
 .cronologia_resumo > .resumo_movs > li{
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: var(--sx-gap);
    padding: var(--sx-pad-y) var(--sx-pad-x);
    color: var(--sx-fg);
    font-size: 15px;
    line-height: 1.45;
    border-top: var(--sx-border) solid var(--sx-line);
    background: transparent;
    position: relative;
    transition: background-color .2s ease, box-shadow .2s ease, transform .06s ease;
}
 .cronologia_resumo > .resumo_movs > li:first-child{
    border-top: 0;
}

/* Ícone à esquerda (padrão) */
 .cronologia_resumo > .resumo_movs > li::before{
    content: '📊';
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--sx-ring);
    border: 1px solid var(--sx-ring-strong);
    font-size: 14px;
    transform: translateY(1px);
}

/* Variações por tipo (adicione essas classes no <li>) */
 .cronologia_resumo > .resumo_movs > li.hoje::before{ content: '🔥'; }
 .cronologia_resumo > .resumo_movs > li.ontem::before{ content: '🕒'; }
 .cronologia_resumo > .resumo_movs > li.ult-10::before{ content: '📅'; }
 .cronologia_resumo > .resumo_movs > li.ult-30::before{ content: '🗓️'; }

/* Hover/active sutis */
 .cronologia_resumo > .resumo_movs > li:hover{
    background: #f9fafb; /* cinza-50 */
}
 .cronologia_resumo > .resumo_movs > li:active{
    transform: translateY(1px);
}

/* CTA: área de ações abaixo da lista */
 .cronologia_resumo > .cta_login{
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px 12px;
    align-items: center;
    justify-content: start;
    padding: 12px 0 0 0;
}

/* Botão principal (Entrar) */
 .cronologia_resumo > .cta_login > .btn_login{
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    background: #2563eb;            /* azul-600 */
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
    border: 1px solid #1d4ed8;      /* azul-700 */
    transition: background-color .15s ease, transform .06s ease;
}
 .cronologia_resumo > .cta_login > .btn_login:hover{
    background: #1d4ed8;            /* azul-700 */
}
 .cronologia_resumo > .cta_login > .btn_login:active{
    transform: translateY(1px);
}

/* Link secundário (Planos) */
 .cronologia_resumo > .cta_login > .link_planos{
    display: inline-block;
    padding: 8px 10px;
    border-radius: 10px;
    color: #374151;                  /* cinza-700 */
    text-decoration: underline;
    text-underline-offset: 3px;
    border: 1px dashed transparent;
    transition: background-color .15s ease, border-color .15s ease;
}
 .cronologia_resumo > .cta_login > .link_planos:hover{
    background: #f3f4f6;             /* cinza-100 */
    border-color: #d1d5db;           /* cinza-300 */
}

/* Acessibilidade: reduzir movimentos */
@media (prefers-reduced-motion: reduce){
     .cronologia_resumo > .resumo_movs > li,
     .cronologia_resumo > .cta_login > .btn_login{
        transition: none;
    }
}
/* ===========================
   SX – Bloco "Titular/Requerente"
   =========================== */

.conteudo > .titular_info.type2,
.titular_info.type2 {
  /* paleta local (não interfere no resto) */
  --sx-navy: #0f1b3d;
  --sx-muted: #445372;
  --sx-accent: #e87722;
  position: relative;
  margin: 8px 20px 0;
  margin-right: auto;
  padding: 12px 16px 12px 48px; /* espaço para ícone e faixa à esquerda */
  background: #ffffff;
  overflow: hidden;
  border-radius: 5px;
}

/* faixa laranja à esquerda */
.conteudo > .titular_info.type2::after,
.titular_info.type2::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #f39a4b, var(--sx-accent));
  border-radius: 14px 0 0 14px;
}

/* ícone antes do texto */
.conteudo > .titular_info.type2::before,
.titular_info.type2::before {
  content: '';
  position: absolute;
  left: 19px;
  /* color: red; */
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  /* ícone "user/id" em SVG branco com contorno navy */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%230f1b3d" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="3"/></svg>');
}

/* texto */
.conteudo > .titular_info.type2 > p,
.titular_info.type2 > p {
  margin: 0;
  color: #212121;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.conteudo > .titular_info.type2 > p > b,
.titular_info.type2 > p > b {
  color: #252525;
  letter-spacing: .25px;
  text-transform: uppercase;
}

/* estado de foco para acessibilidade, caso o bloco receba foco */
.conteudo > .titular_info.type2:focus-within,
.titular_info.type2:focus-within {
  outline: 2px solid var(--sx-accent);
  outline-offset: 2px;
  box-shadow: 0 4px 18px rgba(15,27,61,.12);
}

/* responsivo */
@media (max-width: 640px) {
  .conteudo > .titular_info.type2,
  .titular_info.type2 {
    margin: 8px 12px 10px 12px;
    padding: 12px 14px 12px 46px;
  }
}
@media (max-width:850px){
  .CardConversao{
    margin: 0px 10px !important;
    max-width: calc(100% - 20px) !important;
  }
}