/* ===================================================================
   conta.css — Área do cliente "Meus pedidos" (página dedicada).
   Usa as variáveis de marca do style.css (com fallback seguro).
=================================================================== */
.conta-body { margin: 0; min-height: 100dvh; color: var(--texto, #33271c);
  background: linear-gradient(180deg, var(--creme-claro, #fcf6ea), #fff 55%); }

/* ----- Topo ----- */
.conta-top { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 11px 16px; background: rgba(255,255,255,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linha, #efe3d0); }
.conta-top__brand { display: flex; align-items: center; gap: 10px; text-decoration: none;
  color: var(--vermelho-escuro, #7d1616); font-family: "Fraunces", serif; font-weight: 600; font-size: 1.08rem; }
.conta-top__logo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.conta-top__acts { display: flex; align-items: center; gap: 8px; }
.conta-top__voltar, .conta-top__sair { font: inherit; font-size: .88rem; font-weight: 600; padding: 8px 15px;
  border-radius: 999px; cursor: pointer; text-decoration: none; white-space: nowrap; transition: var(--transicao, .2s); }
.conta-top__voltar { color: var(--vermelho, #9a1f1f); background: var(--creme, #f6ead2); }
.conta-top__voltar:hover { background: var(--creme-claro, #fcf6ea); }
.conta-top__sair { color: #fff; background: var(--vermelho, #9a1f1f); border: none; }
.conta-top__sair:hover { background: var(--vermelho-escuro, #7d1616); }

.conta-main { max-width: 760px; margin: 0 auto; padding: 24px 16px 64px; }

/* ----- Hero (saudação) ----- */
.acc-hero { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.acc-hero__avatar { width: 66px; height: 66px; flex: none; border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; font-size: 1.5rem; color: #fff;
  background: linear-gradient(135deg, var(--vermelho, #9a1f1f), var(--laranja-escuro, #c8631a));
  box-shadow: 0 8px 20px rgba(154,31,31,.25); }
.acc-hero__info h1 { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.55rem; line-height: 1.1;
  margin: 0 0 3px; color: var(--vermelho-escuro, #7d1616); }
.acc-hero__info p { margin: 0; color: var(--texto-claro, #857565); font-size: .92rem; }

/* ----- Resumo (stats) ----- */
.acc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 28px; }
.acc-stat { position: relative; background: linear-gradient(160deg, #fff, var(--creme-claro, #fcf6ea)); border: 1px solid var(--linha, #f0e6d6);
  border-radius: 16px; padding: 16px 10px; text-align: center; box-shadow: 0 6px 18px rgba(108,20,20,.06);
  overflow: hidden; transition: transform .18s, box-shadow .18s; }
.acc-stat::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--vermelho, #9a1f1f), var(--laranja, #ef7900)); opacity: .85; }
.acc-stat:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(108,20,20,.12); }
.acc-stat__n { display: block; font-family: "Fraunces", serif; font-weight: 700; font-size: 1.5rem; line-height: 1.1;
  color: var(--vermelho, #9a1f1f); }
.acc-stat__n--money { font-size: 1.12rem; color: var(--whats-escuro, #1e9e54); }
.acc-stat__l { display: block; font-size: .7rem; color: var(--texto-claro, #857565); margin-top: 5px;
  text-transform: uppercase; letter-spacing: .03em; }

/* ----- Pedidos ----- */
.acc-pedidos__head { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; margin-bottom: 14px; }
.acc-pedidos__head h2 { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.25rem; margin: 0; }
.acc-filtros { display: flex; gap: 6px; flex-wrap: wrap; }
.acc-chip { font: inherit; font-size: .82rem; font-weight: 600; padding: 7px 14px; border-radius: 999px;
  border: 1.5px solid var(--linha, #e8dcc8); background: #fff; color: var(--texto-claro, #857565);
  cursor: pointer; transition: var(--transicao, .2s); }
.acc-chip:hover { border-color: var(--laranja, #ef7900); }
.acc-chip.is-on { background: var(--vermelho, #9a1f1f); border-color: var(--vermelho, #9a1f1f); color: #fff; }

.acc-lista { display: flex; flex-direction: column; gap: 12px; }

.ped-card { position: relative; background: linear-gradient(165deg, #fff 60%, var(--creme-claro, #fcf6ea));
  border: 1px solid var(--linha, #f0e6d6); border-radius: 18px;
  padding: 16px 18px 14px 22px; overflow: hidden; box-shadow: 0 4px 14px rgba(108,20,20,.05);
  transition: transform .18s, box-shadow .18s; }
.ped-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(108,20,20,.12); }
.ped-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--linha, #ccc); }
.ped-card--novo::before { background: #e6a417; }
.ped-card--confirmado::before { background: #2f7fd1; }
.ped-card--entregue::before { background: var(--whats, #25d366); }
.ped-card--cancelado::before { background: #c0392b; }
.ped-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.ped-card__idwrap { display: flex; flex-direction: column; }
.ped-card__id { font-weight: 700; font-size: 1rem; color: var(--vermelho-escuro, #7d1616); }
.ped-card__data { font-size: .8rem; color: var(--texto-claro, #857565); }
.ped-status { font-size: .72rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.ped-status--novo { background: #fff3d6; color: #9a6b00; }
.ped-status--confirmado { background: #dceaff; color: #1366b3; }
.ped-status--entregue { background: #d8f3de; color: #1f7a33; }
.ped-status--cancelado { background: #fde2df; color: #b23a2e; }
.ped-itens { list-style: none; margin: 11px 0 12px; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.ped-itens li { font-size: .9rem; color: var(--texto, #4a3f33); }
.ped-it__q { font-weight: 700; color: var(--laranja-escuro, #c8631a); }
.ped-itens em { color: var(--texto-claro, #857565); font-style: normal; font-size: .84rem; }
.ped-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border-top: 1px dashed var(--linha, #eee); padding-top: 10px; }
.ped-pags { display: flex; gap: 6px; flex-wrap: wrap; }
.ped-pag { font-size: .7rem; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.ped-pag--pago { background: #d8f3de; color: #1f7a33; }
.ped-pag--pend { background: #fff3d6; color: #9a6b00; }
.ped-total { font-family: "Fraunces", serif; font-weight: 700; font-size: 1.2rem; color: var(--texto, #33271c); margin-left: auto; }
/* Ação de cancelar (só aparece em pedido ainda não aceito) */
.ped-acoes { margin-top: 12px; padding-top: 11px; border-top: 1px dashed var(--linha, #eee); display: flex; justify-content: flex-end; }
.ped-cancelar { font: inherit; font-size: .82rem; font-weight: 600; color: #b23a2e; background: #fff;
  border: 1.5px solid #f0c6c0; padding: 8px 16px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transicao, .2s); }
.ped-cancelar:hover { background: #fdeceae0; border-color: #e08376; }
.ped-cancelar:disabled { opacity: .55; cursor: progress; }

/* Alteração feita pela loja aguardando confirmação do cliente */
.ped-card--alt { box-shadow: 0 0 0 2px #f6e4bd, var(--sombra, 0 6px 18px rgba(0,0,0,.06)); }
.ped-alt { background: #fdf4e2; border: 1.5px solid #f0d9a8; border-radius: 14px; padding: 12px 14px; margin: 4px 0 12px; }
.ped-alt__tit { font-weight: 800; color: #9a6a12; font-size: .92rem; margin-bottom: 10px; }
.ped-alt__cmp { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 12px; }
.ped-alt__col { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.ped-alt__lbl { font-size: .7rem; color: #8a7a5a; }
.ped-alt__old { text-decoration: line-through; color: #8a7a5a; font-weight: 600; }
.ped-alt__new { font-weight: 800; color: #1f7a3d; font-size: 1.2rem; }
.ped-alt__seta { font-size: 1.3rem; color: #c0922e; }
.ped-alt__acts { display: flex; gap: 10px; }
.ped-alt__ok { flex: 2; background: #2c9d57; color: #fff; border: none; border-radius: 11px; padding: 12px; font: inherit; font-weight: 700; cursor: pointer; }
.ped-alt__ok:hover { filter: brightness(.96); }
.ped-alt__rec { flex: 1; background: #fff; color: #b23a2e; border: 1.5px solid #f0c6c0; border-radius: 11px; padding: 12px; font: inherit; font-weight: 700; cursor: pointer; }
.ped-alt__ok:disabled, .ped-alt__rec:disabled { opacity: .55; cursor: progress; }
/* Avaliação do cliente no card (pedido entregue) */
.ped-aval { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--linha, #eee); display: flex; flex-direction: column; gap: 9px; }
.pa-tit { font-size: .85rem; font-weight: 600; color: var(--texto, #5a4a3a); }
.pa-stars { display: inline-flex; gap: 4px; }
.pa-star { background: none; border: none; cursor: pointer; font-size: 1.75rem; line-height: 1; color: #dcd5c7; padding: 0; transition: transform .12s, color .12s; }
.pa-star:hover { transform: scale(1.18); }
.pa-star.is-on { color: #f2b705; }
.pa-extra { display: flex; flex-direction: column; gap: 8px; }
.pa-obs { width: 100%; min-height: 54px; resize: vertical; padding: 9px 11px; border: 1.5px solid var(--linha, #e8dcc8); border-radius: 11px; font: inherit; font-size: .86rem; background: #fff; color: var(--texto, #33271c); }
.pa-obs:focus { outline: none; border-color: var(--whats, #25d366); }
.pa-enviar { align-self: flex-start; font: inherit; font-weight: 700; font-size: .85rem; color: #fff; background: var(--whats-escuro, #1e9e54); border: none; padding: 9px 18px; border-radius: 999px; cursor: pointer; }
.pa-enviar:hover { background: #18834a; }
.pa-enviar:disabled { opacity: .6; cursor: progress; }
.ped-aval--feita { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 6px; }
.pa-stars-txt { color: #f2b705; font-size: 1rem; letter-spacing: 1px; }
.pa-obstxt { width: 100%; margin: 2px 0 0; font-style: italic; font-size: .84rem; color: var(--texto-claro, #857565); }

/* ----- Linha do tempo do pedido (etapas animadas) ----- */
.ped-track { display: flex; justify-content: space-between; margin: 14px 2px 2px; }
.pt-step { flex: 1; position: relative; display: flex; flex-direction: column; align-items: center; gap: 7px; z-index: 1; }
/* linha que conecta cada etapa à anterior */
.pt-step:not(:first-child)::before { content: ""; position: absolute; top: 16px; right: 50%; width: 100%; height: 3px;
  background: var(--linha, #e8dcc8); border-radius: 999px; z-index: -1; transition: background .5s ease; }
.pt-step.is-done:not(:first-child)::before, .pt-step.is-now:not(:first-child)::before {
  background: linear-gradient(90deg, var(--whats, #25d366), var(--whats-escuro, #1e9e54)); }
.pt-dot { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-size: 1.02rem;
  background: #fff; border: 2px solid var(--linha, #e8dcc8); filter: grayscale(.7) opacity(.65); transition: transform .3s, box-shadow .3s, filter .3s, border-color .3s; }
.pt-lbl { font-size: .71rem; font-weight: 600; color: var(--texto-claro, #a99); transition: color .3s; }
.pt-step.is-done .pt-dot { background: linear-gradient(135deg, #eafaef, #d2f3de); border-color: transparent;
  filter: none; box-shadow: 0 4px 12px rgba(37,160,84,.22); }
.pt-step.is-done .pt-lbl { color: var(--whats-escuro, #1e9e54); }
.pt-step.is-now .pt-dot { border-color: var(--vermelho, #9a1f1f); filter: none; transform: scale(1.12);
  animation: ptPulse 1.7s ease-in-out infinite; }
.pt-step.is-now .pt-lbl { color: var(--vermelho-escuro, #7d1616); font-weight: 700; }
@keyframes ptPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(154,31,31,.34); } 50% { box-shadow: 0 0 0 9px rgba(154,31,31,0); } }

.ped-frase { margin: 11px 2px 0; font-size: .84rem; font-weight: 600; color: var(--texto, #5a4a3a);
  background: linear-gradient(180deg, var(--creme-claro, #fcf6ea), #fff); border-radius: 12px; padding: 9px 13px;
  border: 1px dashed var(--linha, #f0e6d6); animation: fraseIn .5s .2s both; }
@keyframes fraseIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Cards entram em cascata (acolhedor) — respeita quem prefere menos movimento. */
@keyframes pedIn { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: none; } }
.acc-lista .ped-card { animation: pedIn .5s both; animation-delay: calc(var(--i, 0) * .07s); }
@media (prefers-reduced-motion: reduce) {
  .acc-lista .ped-card, .ped-frase { animation: none; }
  .pt-step.is-now .pt-dot { animation: none; }
}

/* ----- Badge "pedido em andamento" nos botões da conta ----- */
.acct__btn { position: relative; }
.conta-badge { display: inline-grid; place-items: center; min-width: 18px; height: 18px; padding: 0 5px; margin-left: 6px;
  border-radius: 999px; background: var(--whats, #25d366); color: #fff; font-size: .72rem; font-weight: 800; line-height: 1;
  animation: badgePulse 2s infinite; }
.conta-badge--chip { position: absolute; top: -3px; right: -3px; margin: 0; border: 2px solid #fff; z-index: 2; }
@keyframes badgePulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 50% { box-shadow: 0 0 0 6px rgba(37,211,102,0); } }

/* ----- Card de notificação (desliza avisando a nova etapa) ----- */
.ped-notif { position: fixed; z-index: 120; left: 18px; bottom: 18px; width: min(360px, calc(100vw - 36px));
  display: flex; align-items: center; gap: 12px; padding: 15px 30px 15px 17px; background: #fff;
  border: 1px solid var(--linha, #f0e6d6); border-radius: 18px; box-shadow: 0 18px 44px rgba(40,15,15,.22);
  transform: translateY(150%); opacity: 0; transition: transform .42s cubic-bezier(.2,.9,.3,1.25), opacity .3s; }
.ped-notif.is-on { transform: none; opacity: 1; }
.ped-notif::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(180deg, var(--whats, #25d366), var(--whats-escuro, #1e9e54)); border-radius: 18px 0 0 18px; }
.pn-ico { font-size: 1.7rem; flex: none; animation: pnPop .5s .12s both; }
@keyframes pnPop { from { transform: scale(.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.pn-body { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.pn-tit { font-size: .95rem; color: var(--vermelho-escuro, #7d1616); }
.pn-ped { color: var(--texto-claro, #999); font-weight: 600; }
.pn-msg { font-size: .81rem; color: var(--texto-claro, #857565); line-height: 1.3; }
.pn-ver { flex: none; font: inherit; font-size: .82rem; font-weight: 700; color: #fff; background: var(--vermelho, #9a1f1f);
  border: none; padding: 9px 14px; border-radius: 999px; cursor: pointer; transition: background .2s; }
.pn-ver:hover { background: var(--vermelho-escuro, #7d1616); }
.pn-x { position: absolute; top: 7px; right: 9px; border: none; background: none; color: var(--texto-claro, #999); font-size: .82rem; cursor: pointer; line-height: 1; padding: 2px; }
@media (max-width: 560px) { .ped-notif { left: 12px; right: 12px; bottom: 12px; width: auto; } }
@media (prefers-reduced-motion: reduce) { .conta-badge, .pn-ico { animation: none; } .ped-notif { transition: opacity .3s; transform: none; } }

.acc-vermais { display: block; margin: 16px auto 0; font: inherit; font-weight: 600; font-size: .9rem;
  color: var(--vermelho, #9a1f1f); background: #fff; border: 1.5px solid var(--vermelho, #9a1f1f);
  padding: 10px 22px; border-radius: 999px; cursor: pointer; transition: var(--transicao, .2s); }
.acc-vermais:hover { background: var(--vermelho, #9a1f1f); color: #fff; }

.acc-vazio { text-align: center; padding: 42px 16px; background: #fff; border: 1px dashed var(--linha, #e8dcc8); border-radius: 18px; }
.acc-vazio__ico { font-size: 2.4rem; margin-bottom: 8px; }
.acc-vazio p { color: var(--texto-claro, #857565); margin: 0 0 16px; }

.acc-rodape { margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.acc-novopedido { display: inline-flex; }
.acc-linksenha { font: inherit; font-size: .88rem; color: var(--vermelho, #9a1f1f); background: none; border: none;
  cursor: pointer; text-decoration: underline; }

.acc-loading { text-align: center; padding: 80px 16px; color: var(--texto-claro, #857565); }
.acc-spin { width: 42px; height: 42px; margin: 0 auto 14px; border: 4px solid var(--creme, #f0e0c8);
  border-top-color: var(--vermelho, #9a1f1f); border-radius: 50%; animation: accspin .8s linear infinite; }
@keyframes accspin { to { transform: rotate(360deg); } }

/* ----- Login / cadastro ----- */
.acc-auth { display: flex; justify-content: center; padding: 28px 4px; }
.acc-auth__card { width: 100%; max-width: 430px; background: #fff; border: 1px solid var(--linha, #f0e6d6);
  border-radius: 24px; padding: 30px 26px; text-align: center; box-shadow: 0 16px 40px rgba(108,20,20,.10); }
.acc-auth__ico { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.7rem; background: linear-gradient(135deg, var(--vermelho, #9a1f1f), var(--laranja-escuro, #c8631a)); }
.acc-auth__card h1 { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.6rem; margin: 0 0 6px;
  color: var(--vermelho-escuro, #7d1616); }
.acc-auth__card > p { color: var(--texto-claro, #857565); font-size: .92rem; margin: 0 0 20px; line-height: 1.5; }
.acc-auth__card .field-dlg { text-align: left; margin-bottom: 14px; }
.acc-auth__btn { width: 100%; margin-top: 4px; }
.acc-auth__alt { font-size: .88rem; color: var(--texto-claro, #857565); margin: 16px 0 0; }
.acc-auth__alt button { font: inherit; font-weight: 600; color: var(--whats-escuro, #1e9e54); background: none;
  border: none; cursor: pointer; text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.on { opacity: 1; transform: none; }

/* ===================================================================
   Menu de conta no topo da LOJA + diálogo de telas (integrado)
=================================================================== */
.acct { position: relative; }
.acct__btn { display: flex; align-items: center; gap: 8px; font: inherit; font-weight: 600; font-size: .9rem;
  padding: 6px 11px 6px 7px; border-radius: 999px; border: 1.5px solid var(--linha, #efe3d0); background: #fff;
  color: var(--vermelho-escuro, #7d1616); cursor: pointer; transition: var(--transicao, .2s); }
.acct__btn:hover { border-color: var(--vermelho, #9a1f1f); }
.acct__av { width: 30px; height: 30px; flex: none; border-radius: 50%; display: grid; place-items: center;
  font-size: .82rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--vermelho, #9a1f1f), var(--laranja-escuro, #c8631a)); }
.acct__nome { max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct__chev { width: 16px; height: 16px; opacity: .7; }
.acct__menu { position: absolute; top: calc(100% + 8px); right: 0; z-index: 60; width: 244px;
  background: #fff; border: 1px solid var(--linha, #efe3d0); border-radius: 16px; padding: 8px;
  box-shadow: 0 14px 34px rgba(108,20,20,.16); }
.acct__mhead { display: flex; align-items: center; gap: 10px; padding: 8px 8px 12px;
  border-bottom: 1px solid var(--linha, #f0e6d6); margin-bottom: 6px; }
.acct__av--lg { width: 40px; height: 40px; font-size: 1rem; }
.acct__minfo { display: flex; flex-direction: column; min-width: 0; }
.acct__minfo strong { font-size: .92rem; color: var(--texto, #33271c); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct__minfo small { font-size: .76rem; color: var(--texto-claro, #857565); }
.acct__item { display: flex; align-items: center; gap: 10px; width: 100%; font: inherit; font-size: .92rem; font-weight: 500;
  text-align: left; padding: 11px 10px; border: none; border-radius: 10px; background: none; color: var(--texto, #33271c); cursor: pointer; }
.acct__item:hover { background: var(--creme-claro, #fcf6ea); }
.acct__item--sair { color: var(--vermelho, #9a1f1f); }

.dlg-conta { border: none; background: transparent; padding: 0; max-width: none; max-height: none; width: 100vw; height: 100dvh; margin: 0; }
.dlg-conta::backdrop { background: radial-gradient(circle at 50% 0%, rgba(80,25,25,.5), rgba(30,12,12,.62)); backdrop-filter: blur(5px); }
/* Base (celular): tela cheia — vira uma "área" de verdade. */
.dlg-conta__card { width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--creme-claro, #fcf6ea), #fff 22%); border-radius: 0; overflow: hidden; }
/* Desktop/Windows: vira um modal centralizado (NÃO ocupa a tela toda). */
@media (min-width: 700px) {
  .dlg-conta[open] { display: flex; align-items: center; justify-content: center; }
  .dlg-conta__card { width: min(940px, 92vw); height: min(84dvh, 770px); max-width: 940px; max-height: 84dvh;
    border-radius: 26px; overflow: hidden; border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 40px 90px rgba(35,10,10,.34), 0 0 0 1px rgba(154,31,31,.05); animation: contaPop .26s cubic-bezier(.2,.9,.3,1.2); }
}
@keyframes contaPop { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: none; } }
.dlg-conta__top { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 16px; background: #fff; border-bottom: 1px solid var(--linha, #f0e6d6); flex: none; }
.dlg-conta__topin, .dlg-conta__tabs { display: flex; gap: 4px; }
.dlg-conta__tabs { background: var(--creme, #f6ead2); padding: 4px; border-radius: 999px; }
.ct-tab { font: inherit; font-size: .85rem; font-weight: 600; padding: 7px 15px; border: none; border-radius: 999px;
  background: none; color: var(--texto-claro, #857565); cursor: pointer; transition: var(--transicao, .2s); }
.ct-tab.is-on { background: #fff; color: var(--vermelho, #9a1f1f); box-shadow: 0 2px 6px rgba(0,0,0,.08); }
.dlg-conta__close { width: 38px; height: 38px; flex: none; border: none; border-radius: 50%;
  background: var(--creme, #f6ead2); color: var(--texto, #33271c); font-size: 1rem; cursor: pointer; }
.dlg-conta__close:hover { background: var(--creme-claro, #fcf6ea); }
/* Conteúdo centralizado (não estica numa tela grande). */
.dlg-conta__body { flex: 1; overflow-y: auto; padding: 26px 18px 36px; }
.dlg-conta__body > #contaView { width: 100%; max-width: 640px; margin: 0 auto; }
.dlg-conta__body .acc-hero { margin-bottom: 18px; }
.dlg-conta__body .acc-stats { margin-bottom: 22px; }
.acc-dados__verped { width: 100%; margin-top: 14px; }

.acc-dados { display: flex; flex-direction: column; gap: 1px; background: var(--linha, #f0e6d6);
  border: 1px solid var(--linha, #f0e6d6); border-radius: 16px; overflow: hidden; }
.acc-dado { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; background: #fff; }
.acc-dado__l { font-size: .82rem; color: var(--texto-claro, #857565); }
.acc-dado__v { font-weight: 600; color: var(--texto, #33271c); }
.acc-dados__senha { width: 100%; margin-top: 16px; }
.acc-dados__obs { font-size: .82rem; color: var(--texto-claro, #857565); text-align: center; margin: 16px 0 0; }

.cl-ajuda { font-size: .88rem; color: var(--texto-claro, #857565); margin: 14px 0 0; text-align: center; }
.cl-link { font: inherit; font-weight: 600; color: var(--whats-escuro, #1e9e54); background: none; border: none; cursor: pointer; text-decoration: underline; }

@media (max-width: 560px) {
  .dlg-conta__card { width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh; border-radius: 0; }
  .dlg-conta__body { padding: 18px 14px 30px; }
  .acct__nome { display: none; }
  .acct__btn { padding: 5px; }
}

@media (max-width: 560px) {
  .conta-top__brand span { display: none; }
  .acc-stats { grid-template-columns: repeat(2, 1fr); }
  .acc-hero__info h1 { font-size: 1.32rem; }
  .ped-total { font-size: 1.1rem; }
}
