/*
 * Central do cliente Game Imports
 * O login continua em formato de modal. Somente a conta autenticada ocupa a tela.
 */

.account-modal-shell--signed {
  z-index: 1200;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
  background:
    radial-gradient(circle at 88% 8%, rgba(24, 137, 255, .15), transparent 30rem),
    radial-gradient(circle at 10% 100%, rgba(0, 209, 255, .07), transparent 34rem),
    #020914;
}

.account-modal-shell--signed .modal__backdrop {
  display: none;
}

.account-modal-shell--signed .account-modal--signed {
  width: 100%;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(22, 126, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 126, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 78% 0%, rgba(22, 140, 255, .1), transparent 32rem),
    linear-gradient(145deg, #04111f, #020813 62%, #020710);
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: #f6faff;
  box-shadow: none;
  scrollbar-color: rgba(42, 155, 255, .7) rgba(5, 18, 33, .45);
  scrollbar-width: thin;
}

.account-modal-shell--signed .modal__close {
  position: fixed;
  z-index: 20;
  top: 22px;
  right: 26px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(105, 187, 255, .25);
  border-radius: 14px;
  background: rgba(3, 15, 29, .88);
  color: #dceeff;
  font-size: 25px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, .3);
  backdrop-filter: blur(16px);
}

.account-modal-shell--signed .modal__close:hover {
  border-color: rgba(55, 166, 255, .65);
  background: rgba(13, 65, 117, .5);
}

.account-modal--signed .account-signed {
  width: min(1580px, 100%);
  min-height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  grid-template-rows: auto auto minmax(0, 1fr);
  grid-template-areas:
    "head head"
    "profile stats"
    "nav content";
  align-content: start;
  gap: 24px;
  padding: 34px 42px 58px;
}

.account-modal--signed .account-dashboard-head {
  grid-area: head;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 76px 22px 2px;
  border-bottom: 1px solid rgba(86, 177, 255, .16);
}

.account-modal--signed .account-dashboard-head .eyebrow {
  color: #51baff;
  font-size: 11px;
  letter-spacing: 2.4px;
}

.account-modal--signed .account-dashboard-head .eyebrow i {
  background: #24a4ff;
  box-shadow: 0 0 18px rgba(36, 164, 255, .8);
}

.account-modal--signed .account-dashboard-head h2 {
  margin: 8px 0 5px;
  color: #f7fbff;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -1.7px;
}

.account-modal--signed .account-dashboard-head p {
  margin: 0;
  color: #8fa7bd;
  font-size: 14px;
  line-height: 1.55;
}

.account-modal--signed .account-dashboard-actions {
  width: auto;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.account-modal--signed .account-dashboard-actions .button {
  width: auto;
  min-height: 48px;
  flex: 0 0 auto;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 11px;
  letter-spacing: .7px;
}

.account-modal--signed .account-dashboard-actions .button--gold {
  color: #fff;
  background: linear-gradient(135deg, #168cff, #075dcc);
  box-shadow: 0 12px 30px rgba(0, 112, 255, .25);
}

.account-modal--signed .account-dashboard-actions .button--outline {
  border-color: rgba(104, 183, 255, .3);
  background: rgba(11, 45, 78, .45);
  color: #badeff;
}

.account-modal--signed .account-profile {
  grid-area: profile;
  min-height: 148px;
  align-self: stretch;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(70, 169, 255, .21);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(16, 46, 75, .85), rgba(5, 20, 35, .92));
  box-shadow: 0 20px 55px rgba(0, 0, 0, .22);
}

.account-modal--signed .account-profile__avatar {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(93, 194, 255, .5);
  border-radius: 17px;
  background: linear-gradient(145deg, #1d9cff, #0648aa);
  color: #fff;
  font-size: 19px;
  box-shadow: 0 10px 30px rgba(0, 105, 255, .25);
}

.account-modal--signed .account-profile small {
  color: #59c2ff;
  font-size: 10px;
  letter-spacing: .75px;
}

.account-modal--signed .account-profile__copy h3 {
  margin: 4px 0 2px;
  color: #f3f9ff;
  font-size: 18px;
  line-height: 1.25;
}

.account-modal--signed .account-profile__copy p,
.account-modal--signed .account-profile__copy span {
  color: #91a9bd;
  font-size: 12px;
  line-height: 1.45;
}

.account-modal--signed .account-profile__since {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(105, 187, 255, .12);
}

.account-modal--signed .account-profile__since small {
  color: #718ba2;
  font-size: 10px;
}

.account-modal--signed .account-profile__since b {
  margin: 0;
  color: #cce7ff;
  font-size: 12px;
}

.account-modal--signed .account-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.account-modal--signed .account-stats article {
  min-height: 148px;
  align-content: center;
  padding: 22px 24px;
  border: 1px solid rgba(71, 169, 255, .18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 100%, rgba(20, 132, 255, .17), transparent 54%),
    linear-gradient(145deg, rgba(14, 40, 68, .9), rgba(5, 18, 33, .93));
  box-shadow: 0 20px 55px rgba(0, 0, 0, .18);
}

.account-modal--signed .account-stats small {
  color: #87a3bb;
  font-size: 11px;
  letter-spacing: .65px;
}

.account-modal--signed .account-stats strong {
  margin: 7px 0 5px;
  color: #69c7ff;
  font-size: 40px;
  line-height: 1;
  text-shadow: 0 0 28px rgba(42, 159, 255, .2);
}

.account-modal--signed .account-stats span {
  display: block;
  color: #718ba2;
  font-size: 12px;
}

.account-modal--signed .account-nav {
  grid-area: nav;
  align-self: start;
  position: sticky;
  top: 24px;
  display: grid;
  gap: 8px;
  overflow: visible;
  padding: 10px;
  border: 1px solid rgba(73, 171, 255, .18);
  border-radius: 18px;
  background: rgba(4, 17, 31, .82);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.account-modal--signed .account-nav button {
  position: relative;
  width: 100%;
  height: 58px;
  flex: none;
  padding: 0 18px 0 54px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #8ba4b9;
  font-size: 12px;
  letter-spacing: .55px;
  text-align: left;
}

.account-modal--signed .account-nav button::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
  opacity: .78;
}

.account-modal--signed .account-nav button[data-account-tab="consoles"]::before {
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(4, 17, 31, .9);
}

.account-modal--signed .account-nav button[data-account-tab="security"]::before {
  height: 20px;
  border-radius: 9px 9px 7px 7px;
}

.account-modal--signed .account-nav button:hover {
  border-color: rgba(67, 169, 255, .2);
  background: rgba(21, 104, 184, .1);
  color: #c5e7ff;
}

.account-modal--signed .account-nav button.is-active {
  border-color: rgba(58, 170, 255, .4);
  background: linear-gradient(135deg, rgba(20, 129, 239, .26), rgba(7, 64, 124, .18));
  color: #72ceff;
  box-shadow: inset 3px 0 0 #1da1ff, 0 10px 25px rgba(0, 93, 194, .12);
}

.account-modal--signed [data-account-section] {
  grid-area: content;
  min-width: 0;
  align-self: start;
  padding: 26px;
  border: 1px solid rgba(70, 169, 255, .17);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(8, 27, 47, .92), rgba(3, 14, 27, .95));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}

.account-modal--signed [data-account-section][hidden] {
  display: none !important;
}

.account-modal--signed .account-orders-heading {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(78, 174, 255, .14);
}

.account-modal--signed .account-orders-heading h3 {
  margin: 0;
  color: #f2f8ff;
  font-size: 24px;
  letter-spacing: -.5px;
}

.account-modal--signed .account-orders-heading p {
  max-width: none;
  margin: 5px 0 0;
  color: #7992a8;
  font-size: 13px;
  line-height: 1.5;
}

.account-modal--signed .account-orders-heading button {
  flex: 0 0 auto;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(62, 170, 255, .28);
  border-radius: 10px;
  background: rgba(20, 121, 219, .1);
  color: #63c5ff;
  font-size: 10px;
}

.account-modal--signed .account-orders {
  max-height: none;
  overflow: visible;
  display: grid;
  gap: 16px;
  margin-top: 20px;
  padding: 0;
}

.account-modal--signed .account-orders > p {
  color: #8da3b7;
  font-size: 14px;
}

.account-modal--signed .account-order-list {
  display: grid;
  gap: 10px;
}

.account-modal--signed .account-order-row {
  width: 100%;
  min-height: 94px;
  display: grid;
  grid-template-columns: 48px minmax(250px, 1fr) minmax(150px, auto) minmax(150px, auto);
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(61, 161, 244, .18);
  border-radius: 15px;
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 131, 241, .07), transparent 20rem),
    linear-gradient(145deg, rgba(10, 34, 58, .8), rgba(4, 18, 32, .9));
  color: #eef8ff;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 13px 36px rgba(0, 0, 0, .13);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.account-modal--signed .account-order-row:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 173, 255, .48);
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 131, 241, .14), transparent 20rem),
    linear-gradient(145deg, rgba(13, 43, 72, .9), rgba(5, 23, 41, .95));
}

.account-modal--signed .account-order-row__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 168, 255, .35);
  border-radius: 13px;
  background: rgba(17, 124, 220, .13);
  color: #65c4ff;
  font-size: 20px;
}

.account-modal--signed .account-order-row__identity {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.account-modal--signed .account-order-row__identity small {
  color: #7993a9;
  font-size: 11px;
}

.account-modal--signed .account-order-row__identity strong {
  overflow: hidden;
  color: #edf7ff;
  font-size: 15px;
  letter-spacing: .1px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-modal--signed .account-order-row__identity em {
  overflow: hidden;
  color: #8099ad;
  font-size: 11px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-modal--signed .account-order-row__status {
  width: max-content;
  max-width: 190px;
  padding: 7px 10px;
  border: 1px solid rgba(58, 166, 255, .27);
  border-radius: 999px;
  background: rgba(25, 125, 220, .1);
  color: #71caff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.account-modal--signed .account-order-row__total {
  min-width: 0;
  display: grid;
  justify-items: end;
  gap: 5px;
}

.account-modal--signed .account-order-row__total > strong {
  color: #74cdff;
  font-size: 20px;
}

.account-modal--signed .account-order-row__total em {
  color: #7892a8;
  font-size: 10px;
  font-style: normal;
}

.account-modal--signed .account-order-row__total b {
  margin-left: 4px;
  color: #5fc3ff;
  font-size: 13px;
}

.account-modal--signed .account-order-view-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(75, 170, 248, .14);
}

.account-modal--signed .account-order-view-head > button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(60, 169, 255, .28);
  border-radius: 10px;
  background: rgba(18, 115, 204, .09);
  color: #68c6ff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
}

.account-modal--signed .account-order-view-head > button:hover {
  background: rgba(20, 135, 236, .17);
}

.account-modal--signed .account-order-view-head > div {
  min-width: 0;
  display: grid;
  justify-items: end;
  gap: 2px;
}

.account-modal--signed .account-order-view-head small {
  color: #7590a6;
  font-size: 10px;
  text-transform: uppercase;
}

.account-modal--signed .account-order-view-head strong {
  overflow: hidden;
  max-width: 100%;
  color: #e8f5ff;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-modal--signed .account-order {
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(61, 161, 244, .19);
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 131, 241, .08), transparent 25rem),
    linear-gradient(145deg, rgba(11, 36, 60, .84), rgba(4, 18, 32, .92));
  box-shadow: 0 16px 46px rgba(0, 0, 0, .16);
}

.account-modal--signed .account-order__top {
  align-items: flex-start;
}

.account-modal--signed .account-order__top small {
  color: #7d95aa;
  font-size: 11px;
  line-height: 1.5;
}

.account-modal--signed .account-order__top strong {
  margin-top: 3px;
  color: #eaf5ff;
  font-size: 15px;
  letter-spacing: .2px;
}

.account-modal--signed .account-order__top > span {
  padding: 8px 11px;
  border-color: rgba(62, 169, 255, .33);
  border-radius: 9px;
  background: rgba(31, 131, 224, .11);
  color: #75cbff;
  font-size: 10px;
}

.account-modal--signed .order-progress {
  gap: 14px;
}

.account-modal--signed .order-progress > div {
  height: 8px;
  background: rgba(99, 162, 216, .1);
}

.account-modal--signed .order-progress > div > span {
  background: linear-gradient(90deg, #0877ec, #24b6ff);
  box-shadow: 0 0 18px rgba(30, 161, 255, .35);
}

.account-modal--signed .order-progress small {
  color: #8da5ba;
  font-size: 11px;
}

.account-modal--signed .order-current-status {
  gap: 24px;
  padding: 18px;
  border-color: rgba(68, 166, 248, .16);
  border-radius: 13px;
  background: rgba(2, 12, 23, .52);
}

.account-modal--signed .order-current-status code {
  margin-bottom: 7px;
  padding: 4px 7px;
  background: rgba(21, 135, 236, .14);
  color: #55baff;
  font-size: 9px;
}

.account-modal--signed .order-current-status b {
  color: #edf7ff;
  font-size: 16px;
}

.account-modal--signed .order-current-status p {
  margin-top: 5px;
  color: #8ba2b6;
  font-size: 13px;
  line-height: 1.55;
}

.account-modal--signed .order-current-status > strong {
  color: #68c8ff;
  font-size: 26px;
}

.account-modal--signed .order-toggle {
  height: 46px;
  border-color: rgba(62, 169, 255, .25);
  border-radius: 11px;
  background: rgba(19, 111, 201, .08);
  color: #67c5ff;
  font-size: 10px;
}

.account-modal--signed .order-toggle:hover {
  background: rgba(22, 135, 236, .17);
}

.account-modal--signed .order-detail {
  gap: 22px;
  padding-top: 5px;
}

.account-modal--signed .order-detail section > h4 {
  margin-bottom: 12px;
  color: #cfe8fc;
  font-size: 12px;
  letter-spacing: .65px;
}

.account-modal--signed .order-product {
  gap: 11px 18px;
  padding: 16px;
  border-color: rgba(62, 160, 239, .15);
  border-radius: 12px;
  background: rgba(2, 12, 23, .48);
}

.account-modal--signed .order-product > div > span {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  border-radius: 9px;
  background: rgba(22, 139, 240, .15);
  color: #60c2ff;
  font-size: 11px;
}

.account-modal--signed .order-product b {
  color: #e9f4fd;
  font-size: 13px;
  line-height: 1.4;
}

.account-modal--signed .order-product small,
.account-modal--signed .order-random-games {
  color: #8199ad;
  font-size: 11px;
  line-height: 1.5;
}

.account-modal--signed .order-product > strong {
  color: #caeaff;
  font-size: 14px;
}

.account-modal--signed .order-games summary {
  color: #53bdff;
  font-size: 11px;
}

.account-modal--signed .order-games p {
  margin-top: 10px;
  padding: 13px;
  background: rgba(19, 120, 208, .07);
  color: #9bb0c2;
  font-size: 11px;
  line-height: 1.75;
}

.account-modal--signed .order-detail-grid {
  gap: 12px;
}

.account-modal--signed .order-detail-grid > section {
  padding: 17px;
  border-color: rgba(61, 158, 238, .15);
  border-radius: 13px;
  background: rgba(2, 12, 23, .46);
}

.account-modal--signed .order-data-list {
  gap: 10px;
}

.account-modal--signed .order-data-list span {
  color: #718aa0;
  font-size: 9px;
}

.account-modal--signed .order-data-list b {
  color: #c9ddec;
  font-size: 12px;
  line-height: 1.5;
}

.account-modal--signed .order-data-list a,
.account-modal--signed .order-action-link {
  color: #55c1ff;
  font-size: 11px;
}

.account-modal--signed .order-data-list .is-total b {
  color: #64c6ff;
  font-size: 17px;
}

.account-modal--signed .order-stage__copy b {
  color: #dceeff;
  font-size: 10px;
}

.account-modal--signed .order-stage__copy code {
  color: #718a9f;
  font-size: 8px;
}

.account-modal--signed .order-stage__copy p {
  color: #7f98ad;
  font-size: 9px;
}

.account-modal--signed .order-stage__copy time,
.account-modal--signed .order-last-update {
  color: #647d92;
  font-size: 8px;
}

.account-modal--signed .order-stage[data-stage-state="done"] .order-stage__marker i {
  border-color: #25b6ff;
  background: #25b6ff;
  box-shadow: 0 0 14px rgba(37, 182, 255, .35);
}

.account-modal--signed .order-stage[data-stage-state="current"] .order-stage__marker i {
  border-color: #168cff;
  background: #168cff;
  box-shadow: 0 0 16px rgba(22, 140, 255, .45);
}

.account-modal--signed .order-audit {
  border-color: rgba(61, 158, 238, .14);
  background: rgba(1, 10, 20, .48);
}

.account-modal--signed .order-audit summary {
  color: #8aa6bd;
  font-size: 10px;
}

.account-modal--signed .order-audit code {
  color: #55bbff;
  font-size: 8px;
}

.account-modal--signed .order-audit b {
  color: #cfe4f4;
  font-size: 10px;
}

.account-modal--signed .order-audit p,
.account-modal--signed .order-audit time {
  color: #718a9f;
  font-size: 9px;
}

.account-modal--signed .account-orders-empty {
  padding: 36px;
  border-color: rgba(71, 169, 255, .22);
  background: rgba(11, 65, 111, .07);
}

.account-modal--signed .account-orders-empty b {
  color: #eaf6ff;
  font-size: 17px;
}

.account-modal--signed .account-orders-empty span {
  color: #849eb3;
  font-size: 13px;
}

.account-modal--signed .account-security {
  gap: 14px;
}

.account-modal--signed .security-card,
.account-modal--signed .password-form,
.account-modal--signed .console-pair-card,
.account-modal--signed .account-console-card {
  border-color: rgba(65, 163, 244, .17);
  background: rgba(3, 17, 31, .58);
}

.account-modal--signed .security-card {
  padding: 18px;
}

.account-modal--signed .security-card > span {
  background: rgba(22, 140, 255, .14);
  color: #62c4ff;
}

.account-modal--signed .security-card b,
.account-modal--signed .password-form h3 {
  color: #eef8ff;
  font-size: 14px;
}

.account-modal--signed .security-card p {
  color: #8199ae;
  font-size: 11px;
}

.account-modal--signed .password-form {
  gap: 14px;
  padding: 22px;
}

.account-modal--signed .password-form label {
  color: #a8bfd1;
  font-size: 10px;
}

.account-modal--signed .password-form input,
.account-modal--signed .console-pair-card input,
.account-modal--signed .account-console-card input {
  height: 50px;
  border-color: rgba(73, 169, 247, .22);
  background: #020c17;
  color: #f4faff;
  font-size: 13px;
}

.account-modal--signed .password-form > small {
  color: #7891a5;
  font-size: 11px;
}

.account-modal--signed .console-pair-card {
  padding: 22px;
  border-radius: 15px;
}

.account-modal--signed .console-pair-card h3 {
  color: #f1f9ff;
  font-size: 22px;
}

.account-modal--signed .console-pair-card p {
  color: #8299ad;
  font-size: 13px;
  line-height: 1.6;
}

.account-modal--signed .account-console-card {
  padding: 20px;
}

.account-modal--signed .account-console-card__info b {
  color: #edf7ff;
  font-size: 15px;
}

.account-modal--signed .account-console-card__info p {
  color: #8ba3b7;
  font-size: 12px;
}

.account-modal--signed .account-console-card__info small {
  color: #718ba1;
  font-size: 10px;
}

@media (max-width: 1040px) {
  .account-modal--signed .account-signed {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 18px;
    padding: 28px 24px 46px;
  }

  .account-modal--signed .account-stats article {
    min-height: 132px;
    padding: 18px;
  }

  .account-modal--signed .account-stats strong {
    font-size: 34px;
  }

  .account-modal--signed .order-detail-grid {
    grid-template-columns: 1fr;
  }

  .account-modal--signed .account-order-row {
    grid-template-columns: 44px minmax(190px, 1fr) minmax(130px, auto) minmax(130px, auto);
    gap: 13px;
  }
}

@media (max-width: 780px) {
  .account-modal-shell--signed .modal__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .account-modal--signed .account-signed {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "head"
      "profile"
      "stats"
      "nav"
      "content";
    gap: 14px;
    padding: 18px 14px calc(34px + env(safe-area-inset-bottom));
  }

  .account-modal--signed .account-dashboard-head {
    min-height: 0;
    display: grid;
    gap: 18px;
    padding: 2px 52px 18px 2px;
  }

  .account-modal--signed .account-dashboard-head h2 {
    font-size: 32px;
  }

  .account-modal--signed .account-dashboard-head p {
    font-size: 13px;
  }

  .account-modal--signed .account-dashboard-actions {
    width: 100%;
    justify-content: stretch;
  }

  .account-modal--signed .account-dashboard-actions .button {
    min-width: 0;
    flex: 1 1 0;
  }

  .account-modal--signed .account-profile {
    min-height: 0;
    padding: 18px;
  }

  .account-modal--signed .account-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .account-modal--signed .account-stats article {
    min-height: 106px;
    padding: 14px 12px;
    border-radius: 14px;
  }

  .account-modal--signed .account-stats small {
    font-size: 10px;
  }

  .account-modal--signed .account-stats strong {
    font-size: 27px;
  }

  .account-modal--signed .account-stats span {
    font-size: 10px;
  }

  .account-modal--signed .account-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
    padding: 6px;
  }

  .account-modal--signed .account-nav button {
    height: 50px;
    padding: 0 8px;
    font-size: 10px;
    text-align: center;
  }

  .account-modal--signed .account-nav button::before {
    display: none;
  }

  .account-modal--signed [data-account-section] {
    padding: 18px;
    border-radius: 17px;
  }

  .account-modal--signed .account-orders-heading {
    min-height: 0;
    align-items: flex-end;
    padding-bottom: 16px;
  }

  .account-modal--signed .account-orders-heading h3 {
    font-size: 21px;
  }

  .account-modal--signed .account-orders-heading p {
    font-size: 11px;
  }

  .account-modal--signed .account-order {
    padding: 17px;
  }

  .account-modal--signed .account-order-row {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 15px;
  }

  .account-modal--signed .account-order-row__icon {
    width: 42px;
    height: 42px;
  }

  .account-modal--signed .account-order-row__status {
    grid-column: 2;
    justify-self: start;
  }

  .account-modal--signed .account-order-row__total {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .account-modal--signed .account-order-row__total em {
    font-size: 0;
  }

  .account-modal--signed .account-order-row__total em b {
    font-size: 19px;
  }

  .account-modal--signed .account-order__top {
    display: grid;
    gap: 10px;
  }

  .account-modal--signed .account-order__top > span {
    width: max-content;
  }

  .account-modal--signed .order-current-status {
    display: grid;
    gap: 12px;
  }

  .account-modal--signed .order-current-status > strong {
    font-size: 24px;
  }

  .account-modal--signed .order-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .account-modal--signed .account-signed {
    padding-inline: 10px;
  }

  .account-modal--signed .account-dashboard-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .account-modal--signed .account-dashboard-actions .button {
    width: 100%;
  }

  .account-modal--signed .account-profile {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .account-modal--signed .account-profile__avatar {
    width: 52px;
    height: 52px;
  }

  .account-modal--signed .account-profile__copy h3 {
    font-size: 16px;
  }

  .account-modal--signed .account-stats {
    grid-template-columns: 1fr;
  }

  .account-modal--signed .account-stats article {
    min-height: 82px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .account-modal--signed .account-stats strong {
    grid-row: 1 / 3;
    grid-column: 2;
    font-size: 31px;
  }

  .account-modal--signed .account-stats span {
    display: block;
  }

  .account-modal--signed .account-nav button {
    font-size: 10px;
    letter-spacing: .15px;
  }

  .account-modal--signed [data-account-section] {
    padding: 14px;
  }

  .account-modal--signed .account-orders-heading {
    display: grid;
    gap: 12px;
  }

  .account-modal--signed .account-orders-heading button {
    width: 100%;
  }

  .account-modal--signed .account-order-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .account-modal--signed .account-order-row__icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .account-modal--signed .account-order-row__identity strong {
    font-size: 13px;
  }

  .account-modal--signed .account-order-row__status {
    grid-column: 2;
    max-width: 100%;
    font-size: 8px;
  }

  .account-modal--signed .account-order-row__total {
    grid-column: 1 / -1;
    grid-row: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(73, 169, 247, .12);
  }

  .account-modal--signed .account-order-row__total > strong {
    font-size: 19px;
  }

  .account-modal--signed .account-order-view-head {
    align-items: stretch;
    display: grid;
  }

  .account-modal--signed .account-order-view-head > div {
    justify-items: start;
  }

  .account-modal--signed .account-order {
    padding: 14px;
  }

  .account-modal--signed .order-product {
    grid-template-columns: 1fr;
  }

  .account-modal--signed .order-product > strong {
    padding-left: 43px;
  }

  .account-modal--signed .order-audit article {
    grid-template-columns: 1fr;
  }
}

/* Linha do tempo do pedido — leitura ampliada e visual tecnológico */
.account-modal--signed .order-detail > section:last-of-type {
  padding: 22px;
  border: 1px solid rgba(61, 163, 246, .16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(28, 143, 255, .1), transparent 30rem),
    rgba(2, 13, 25, .5);
}

.account-modal--signed .order-detail > section:last-of-type > h4 {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: #eff8ff;
  font-size: 18px;
  letter-spacing: -.2px;
  text-transform: none;
}

.account-modal--signed .order-detail > section:last-of-type > h4::before {
  content: "";
  width: 4px;
  height: 23px;
  border-radius: 999px;
  background: linear-gradient(#36c5ff, #0878ed);
  box-shadow: 0 0 18px rgba(38, 174, 255, .55);
}

.account-modal--signed .order-timeline {
  counter-reset: order-stage;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.account-modal--signed .order-stage {
  counter-increment: order-stage;
  position: relative;
  min-height: 184px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding: 17px;
  border: 1px solid rgba(74, 158, 225, .14);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(11, 37, 61, .84), rgba(4, 19, 34, .92));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
}

.account-modal--signed .order-stage::after {
  content: "Próxima etapa";
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 4px 7px;
  border: 1px solid rgba(110, 151, 184, .16);
  border-radius: 999px;
  background: rgba(97, 133, 162, .07);
  color: #718a9f;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.account-modal--signed .order-stage[data-stage-state="done"] {
  border-color: rgba(42, 203, 151, .25);
  background:
    radial-gradient(circle at 0 0, rgba(36, 210, 158, .1), transparent 12rem),
    linear-gradient(145deg, rgba(8, 46, 53, .82), rgba(4, 23, 36, .94));
}

.account-modal--signed .order-stage[data-stage-state="done"]::after {
  content: "Concluído";
  border-color: rgba(45, 216, 157, .25);
  background: rgba(37, 201, 144, .1);
  color: #69e2b5;
}

.account-modal--signed .order-stage[data-stage-state="current"] {
  border-color: rgba(45, 176, 255, .5);
  background:
    radial-gradient(circle at 0 0, rgba(32, 164, 255, .18), transparent 14rem),
    linear-gradient(145deg, rgba(10, 51, 86, .92), rgba(4, 23, 42, .96));
  box-shadow: 0 15px 42px rgba(0, 104, 214, .18), inset 0 0 0 1px rgba(61, 181, 255, .09);
}

.account-modal--signed .order-stage[data-stage-state="current"]::after {
  content: "Etapa atual";
  border-color: rgba(54, 184, 255, .38);
  background: rgba(28, 145, 239, .16);
  color: #79d4ff;
}

.account-modal--signed .order-stage[data-stage-state="problem"] {
  border-color: rgba(255, 104, 104, .35);
  background:
    radial-gradient(circle at 0 0, rgba(255, 84, 84, .12), transparent 13rem),
    linear-gradient(145deg, rgba(58, 25, 36, .86), rgba(27, 14, 27, .94));
}

.account-modal--signed .order-stage[data-stage-state="problem"]::after {
  content: "Atenção";
  border-color: rgba(255, 111, 111, .3);
  background: rgba(255, 87, 87, .1);
  color: #ffaaaa;
}

.account-modal--signed .order-stage__marker {
  position: relative;
  width: 48px;
  height: 48px;
}

.account-modal--signed .order-stage__marker::before {
  display: none;
}

.account-modal--signed .order-stage__marker i {
  position: relative;
  inset: auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101, 159, 204, .25);
  border-radius: 13px;
  background: rgba(80, 128, 166, .08);
  color: #7792a8;
  box-shadow: none;
}

.account-modal--signed .order-stage__marker i::after {
  content: counter(order-stage);
  font-size: 16px;
  font-style: normal;
  font-weight: 950;
}

.account-modal--signed .order-stage[data-stage-state="done"] .order-stage__marker i {
  border-color: rgba(45, 216, 157, .36);
  background: linear-gradient(145deg, rgba(33, 202, 145, .3), rgba(8, 83, 74, .24));
  color: #7be7bf;
  box-shadow: 0 0 22px rgba(41, 205, 151, .14);
}

.account-modal--signed .order-stage[data-stage-state="current"] .order-stage__marker i {
  border-color: rgba(57, 187, 255, .55);
  background: linear-gradient(145deg, #179fff, #075cc3);
  color: #fff;
  box-shadow: 0 0 25px rgba(35, 162, 255, .35);
}

.account-modal--signed .order-stage[data-stage-state="problem"] .order-stage__marker i {
  border-color: rgba(255, 114, 114, .5);
  background: linear-gradient(145deg, #e94e62, #8f253b);
  color: #fff;
}

.account-modal--signed .order-stage__copy {
  min-width: 0;
  padding: 36px 0 0;
  text-align: left;
}

.account-modal--signed .order-stage__copy > div {
  display: grid;
  justify-items: start;
  gap: 5px;
}

.account-modal--signed .order-stage__copy b {
  color: #eaf5fd;
  font-size: 14px;
  line-height: 1.3;
}

.account-modal--signed .order-stage__copy code {
  margin: 0;
  color: #6fbde9;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .25px;
}

.account-modal--signed .order-stage__copy p {
  min-height: 0;
  margin: 11px 0 13px;
  color: #91a8ba;
  font-size: 12px;
  line-height: 1.55;
}

.account-modal--signed .order-stage__copy time {
  color: #718ca2;
  font-size: 10px;
}

.account-modal--signed .order-stage[data-stage-state="current"] .order-stage__copy code {
  color: #71d0ff;
}

@media (max-width: 1120px) {
  .account-modal--signed .order-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .account-modal--signed .order-detail > section:last-of-type {
    padding: 16px;
  }

  .account-modal--signed .order-detail > section:last-of-type > h4 {
    font-size: 17px;
  }

  .account-modal--signed .order-timeline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .account-modal--signed .order-stage {
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 15px;
  }

  .account-modal--signed .order-stage__marker {
    width: 46px;
    height: 46px;
    min-height: 0;
  }

  .account-modal--signed .order-stage__marker i {
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
  }

  .account-modal--signed .order-stage__copy {
    padding: 34px 0 0;
  }

  .account-modal--signed .order-stage__copy b {
    font-size: 13px;
  }

  .account-modal--signed .order-stage__copy p {
    font-size: 11px;
  }
}

/* Rastreamento de pedido — padrão limpo de grandes lojas */
.account-modal--signed .order-detail > section:last-of-type {
  padding: 24px 22px 20px;
  border: 1px solid rgba(61, 163, 246, .14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(8, 31, 52, .72), rgba(3, 17, 31, .66));
}

.account-modal--signed .order-detail > section:last-of-type > h4 {
  margin: 0 0 12px;
  color: #edf7ff;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -.15px;
}

.account-modal--signed .order-detail > section:last-of-type > h4::before {
  width: 3px;
  height: 20px;
  box-shadow: none;
}

.account-modal--signed .order-timeline {
  counter-reset: order-stage;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 18px 2px 2px;
}

.account-modal--signed .order-stage {
  counter-increment: order-stage;
  position: relative;
  min-width: 0;
  min-height: 126px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 54px auto auto;
  align-items: start;
  gap: 0;
  padding: 0 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.account-modal--signed .order-stage[data-stage-state="done"],
.account-modal--signed .order-stage[data-stage-state="current"],
.account-modal--signed .order-stage[data-stage-state="problem"] {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.account-modal--signed .order-stage::after {
  content: "Próxima etapa";
  position: static;
  justify-self: center;
  margin: 8px 0 0;
  padding: 4px 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(111, 143, 170, .1);
  color: #778fa3;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.account-modal--signed .order-stage[data-stage-state="done"]::after {
  content: "Concluído";
  border: 0;
  background: rgba(38, 195, 139, .11);
  color: #62dbae;
}

.account-modal--signed .order-stage[data-stage-state="current"]::after {
  content: "Em andamento";
  border: 0;
  background: rgba(41, 165, 255, .15);
  color: #79d3ff;
}

.account-modal--signed .order-stage[data-stage-state="problem"]::after {
  content: "Atenção";
  border: 0;
  background: rgba(255, 93, 108, .12);
  color: #ff9ca6;
}

.account-modal--signed .order-stage__marker {
  position: relative;
  width: 100%;
  height: 54px;
  display: grid;
  place-items: start center;
}

.account-modal--signed .order-stage__marker::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 21px;
  left: -50%;
  right: -50%;
  width: auto;
  height: 3px;
  display: block;
  border-radius: 999px;
  background: rgba(103, 137, 164, .2);
}

.account-modal--signed .order-stage:first-child .order-stage__marker::before {
  left: 50%;
}

.account-modal--signed .order-stage:last-child .order-stage__marker::before {
  right: 50%;
}

.account-modal--signed .order-stage[data-stage-state="done"] .order-stage__marker::before {
  background: #25b984;
}

.account-modal--signed .order-stage[data-stage-state="current"] .order-stage__marker::before {
  background: linear-gradient(90deg, #25b984 0 50%, rgba(103, 137, 164, .2) 50% 100%);
}

.account-modal--signed .order-stage[data-stage-state="problem"] .order-stage__marker::before {
  background: linear-gradient(90deg, #ff6677 0 50%, rgba(103, 137, 164, .2) 50% 100%);
}

.account-modal--signed .order-stage__marker i {
  position: relative;
  z-index: 2;
  inset: auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 3px solid #17334a;
  border-radius: 50%;
  background: #091c2d;
  color: #7d96aa;
  box-shadow: 0 0 0 3px #071725;
}

.account-modal--signed .order-stage__marker i::after {
  content: counter(order-stage);
  font-size: 14px;
  font-style: normal;
  font-weight: 950;
}

.account-modal--signed .order-stage[data-stage-state="done"] .order-stage__marker i {
  border-color: #58d5a8;
  background: #1aa772;
  color: #fff;
  box-shadow: 0 0 0 3px #071725;
}

.account-modal--signed .order-stage[data-stage-state="done"] .order-stage__marker i::after {
  content: "✓";
  font-size: 18px;
}

.account-modal--signed .order-stage[data-stage-state="current"] .order-stage__marker i {
  border-color: #7bd4ff;
  background: linear-gradient(145deg, #1aa9ff, #0875e7);
  color: #fff;
  box-shadow:
    0 0 0 3px #071725,
    0 0 0 7px rgba(40, 171, 255, .12),
    0 0 24px rgba(33, 161, 255, .28);
}

.account-modal--signed .order-stage[data-stage-state="problem"] .order-stage__marker i {
  border-color: #ff9ca6;
  background: #d94559;
  color: #fff;
  box-shadow: 0 0 0 3px #071725;
}

.account-modal--signed .order-stage__copy {
  min-width: 0;
  padding: 7px 0 0;
  text-align: center;
}

.account-modal--signed .order-stage__copy > div {
  display: block;
}

.account-modal--signed .order-stage__copy b {
  display: block;
  min-height: 34px;
  color: #dfeaf2;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.account-modal--signed .order-stage[data-stage-state="current"] .order-stage__copy b {
  color: #8bdbff;
}

.account-modal--signed .order-stage__copy code,
.account-modal--signed .order-stage__copy p {
  display: none;
}

.account-modal--signed .order-stage__copy time {
  display: block;
  margin-top: 6px;
  color: #72899c;
  font-size: 9px;
  line-height: 1.35;
}

@media (max-width: 1120px) {
  .account-modal--signed .order-timeline {
    grid-template-columns: repeat(6, minmax(118px, 1fr));
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
  }
}

@media (max-width: 680px) {
  .account-modal--signed .order-detail > section:last-of-type {
    padding: 17px 15px 12px;
  }

  .account-modal--signed .order-detail > section:last-of-type > h4 {
    margin-bottom: 18px;
    font-size: 17px;
  }

  .account-modal--signed .order-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: visible;
    padding: 0;
  }

  .account-modal--signed .order-stage {
    min-height: 88px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    padding: 0;
    text-align: left;
  }

  .account-modal--signed .order-stage__marker {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 54px;
    height: 100%;
    min-height: 88px;
    place-items: start center;
  }

  .account-modal--signed .order-stage__marker::before {
    top: 0;
    bottom: 0;
    left: 25px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .account-modal--signed .order-stage:first-child .order-stage__marker::before {
    top: 22px;
    left: 25px;
  }

  .account-modal--signed .order-stage:last-child .order-stage__marker::before {
    right: auto;
    bottom: calc(100% - 22px);
  }

  .account-modal--signed .order-stage[data-stage-state="current"] .order-stage__marker::before,
  .account-modal--signed .order-stage[data-stage-state="problem"] .order-stage__marker::before {
    background: linear-gradient(180deg, #25b984 0 22px, rgba(103, 137, 164, .2) 22px 100%);
  }

  .account-modal--signed .order-stage__marker i {
    width: 42px;
    height: 42px;
  }

  .account-modal--signed .order-stage__copy {
    grid-column: 2;
    grid-row: 1;
    padding: 3px 0 0 9px;
    text-align: left;
  }

  .account-modal--signed .order-stage__copy b {
    min-height: 0;
    padding-right: 0;
    font-size: 14px;
  }

  .account-modal--signed .order-stage__copy time {
    margin-top: 4px;
    font-size: 10px;
  }

  .account-modal--signed .order-stage::after {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    align-self: start;
    margin: 7px 0 18px 9px;
    font-size: 8px;
  }
}

/* Central do cliente clara — visual de e-commerce confiável */
.account-modal-shell--signed {
  background: #f1f5fa;
}

.account-modal-shell--signed .account-modal--signed {
  background:
    linear-gradient(rgba(14, 112, 225, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 112, 225, .025) 1px, transparent 1px),
    radial-gradient(circle at 82% 0%, rgba(47, 154, 255, .12), transparent 32rem),
    linear-gradient(145deg, #f8fbff, #edf3f9 70%, #eaf1f8);
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: #10243b;
  scrollbar-color: rgba(31, 129, 225, .55) #e8f0f7;
}

.account-modal-shell--signed .modal__close {
  border-color: #d6e2ed;
  background: rgba(255, 255, 255, .94);
  color: #1d344b;
  box-shadow: 0 12px 32px rgba(33, 73, 111, .13);
}

.account-modal-shell--signed .modal__close:hover {
  border-color: #78baf0;
  background: #edf7ff;
  color: #0876da;
}

.account-modal--signed .account-dashboard-head {
  border-bottom-color: #d8e4ef;
}

.account-modal--signed .account-dashboard-head .eyebrow {
  color: #0879df;
}

.account-modal--signed .account-dashboard-head .eyebrow i {
  background: #138de9;
  box-shadow: none;
}

.account-modal--signed .account-dashboard-head h2 {
  color: #10243b;
}

.account-modal--signed .account-dashboard-head p {
  color: #60758a;
}

.account-modal--signed .account-dashboard-actions .button--gold {
  background: linear-gradient(135deg, #168cff, #0870d8);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 117, 222, .22);
}

.account-modal--signed .account-dashboard-actions .button--outline {
  border-color: #c9d9e7;
  background: #fff;
  color: #244866;
}

.account-modal--signed .account-profile,
.account-modal--signed .account-stats article,
.account-modal--signed .account-nav,
.account-modal--signed [data-account-section] {
  border-color: #d9e5ef;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 45px rgba(42, 76, 109, .08);
}

.account-modal--signed .account-profile small {
  color: #0780df;
}

.account-modal--signed .account-profile__copy h3 {
  color: #13263b;
}

.account-modal--signed .account-profile__copy p,
.account-modal--signed .account-profile__copy span {
  color: #63778a;
}

.account-modal--signed .account-profile__since {
  border-top-color: #e1eaf2;
}

.account-modal--signed .account-profile__since small {
  color: #7a8d9f;
}

.account-modal--signed .account-profile__since b {
  color: #304b64;
}

.account-modal--signed .account-stats article {
  background:
    radial-gradient(circle at 100% 100%, rgba(41, 148, 244, .12), transparent 54%),
    #fff;
}

.account-modal--signed .account-stats small {
  color: #60758a;
}

.account-modal--signed .account-stats strong {
  color: #0878dc;
  text-shadow: none;
}

.account-modal--signed .account-stats span {
  color: #74879a;
}

.account-modal--signed .account-nav {
  backdrop-filter: blur(18px);
}

.account-modal--signed .account-nav button {
  color: #60768c;
}

.account-modal--signed .account-nav button[data-account-tab="consoles"]::before {
  box-shadow: inset 0 0 0 4px #fff;
}

.account-modal--signed .account-nav button:hover {
  border-color: #c8e2f7;
  background: #f0f8ff;
  color: #0a6dc3;
}

.account-modal--signed .account-nav button.is-active {
  border-color: #9fd0f5;
  background: linear-gradient(135deg, #e8f5ff, #f5faff);
  color: #0878da;
  box-shadow: inset 3px 0 0 #168fea, 0 9px 22px rgba(25, 127, 218, .1);
}

.account-modal--signed .account-nav button.is-active[data-account-tab="consoles"]::before {
  box-shadow: inset 0 0 0 4px #edf8ff;
}

.account-modal--signed .account-orders-heading {
  border-bottom-color: #e0e8f0;
}

.account-modal--signed .account-orders-heading h3 {
  color: #13273d;
}

.account-modal--signed .account-orders-heading p,
.account-modal--signed .account-orders > p {
  color: #667a8e;
}

.account-modal--signed .account-orders-heading button,
.account-modal--signed .account-order-view-head > button {
  border-color: #bdd9ee;
  background: #f3f9fe;
  color: #0875cf;
}

.account-modal--signed .account-orders-heading button:hover,
.account-modal--signed .account-order-view-head > button:hover {
  background: #e8f5ff;
}

.account-modal--signed .account-order-row {
  border-color: #dae5ee;
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 132, 230, .07), transparent 20rem),
    #fff;
  color: #142a40;
  box-shadow: 0 12px 30px rgba(44, 79, 111, .07);
}

.account-modal--signed .account-order-row:hover {
  border-color: #8ac9f5;
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 132, 230, .12), transparent 20rem),
    #fbfdff;
}

.account-modal--signed .account-order-row__icon {
  border-color: #b8d8ef;
  background: #edf7ff;
  color: #087bdc;
}

.account-modal--signed .account-order-row__identity small,
.account-modal--signed .account-order-row__identity em {
  color: #74879a;
}

.account-modal--signed .account-order-row__identity strong {
  color: #172b40;
}

.account-modal--signed .account-order-row__status {
  border-color: #b9daf0;
  background: #edf8ff;
  color: #0875ce;
}

.account-modal--signed .account-order-row__total > strong,
.account-modal--signed .account-order-row__total b {
  color: #0878d8;
}

.account-modal--signed .account-order-row__total em {
  color: #718498;
}

.account-modal--signed .account-order-view-head {
  border-bottom-color: #dfe8f0;
}

.account-modal--signed .account-order-view-head small {
  color: #71869a;
}

.account-modal--signed .account-order-view-head strong {
  color: #1b3147;
}

.account-modal--signed .account-order {
  border-color: #d7e4ee;
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 132, 230, .08), transparent 25rem),
    #fff;
  box-shadow: 0 15px 38px rgba(43, 76, 107, .08);
}

.account-modal--signed .account-order__top small {
  color: #718599;
}

.account-modal--signed .account-order__top strong {
  color: #162b40;
}

.account-modal--signed .account-order__top > span {
  border-color: #b7d9ef;
  background: #edf8ff;
  color: #0874cf;
}

.account-modal--signed .account-order__top > span[data-status-tone="success"] {
  border-color: #a9dcc2;
  background: #eaf8f0;
  color: #18734e;
}

.account-modal--signed .order-progress > div {
  background: #dce8f2;
}

.account-modal--signed .order-progress small {
  color: #6f8295;
}

.account-modal--signed .order-current-status {
  border-color: #c8e1f3;
  background: linear-gradient(135deg, #edf8ff, #f8fcff);
}

.account-modal--signed .order-current-status code {
  background: #dceeff;
  color: #0876d5;
}

.account-modal--signed .order-current-status b {
  color: #142a40;
}

.account-modal--signed .order-current-status p {
  color: #5f7589;
}

.account-modal--signed .order-current-status > strong {
  color: #0878d8;
}

.account-modal--signed .order-toggle {
  border-color: #bdd9ec;
  background: #f5fafe;
  color: #0875cf;
}

.account-modal--signed .order-toggle:hover {
  background: #e9f5fe;
}

.account-modal--signed .order-detail section > h4 {
  color: #314b63;
}

.account-modal--signed .order-product,
.account-modal--signed .order-detail-grid > section {
  border-color: #dce6ee;
  background: #f8fbfe;
}

.account-modal--signed .order-product > div > span {
  background: #e4f2fd;
  color: #087bd9;
}

.account-modal--signed .order-product b,
.account-modal--signed .order-product > strong {
  color: #1b3045;
}

.account-modal--signed .order-product small,
.account-modal--signed .order-random-games {
  color: #667c8f;
}

.account-modal--signed .order-games summary,
.account-modal--signed .order-data-list a,
.account-modal--signed .order-action-link {
  color: #0878d7;
}

.account-modal--signed .order-games p {
  background: #edf7ff;
  color: #526b80;
}

.account-modal--signed .order-data-list span {
  color: #708498;
}

.account-modal--signed .order-data-list b {
  color: #263e54;
}

.account-modal--signed .order-data-list .is-total b {
  color: #0878d7;
}

.account-modal--signed .order-audit {
  border-color: #dbe6ef;
  background: #f8fbfe;
}

.account-modal--signed .order-audit summary {
  color: #566f84;
}

.account-modal--signed .order-audit code {
  color: #0878d8;
}

.account-modal--signed .order-audit b {
  color: #263e54;
}

.account-modal--signed .order-audit p,
.account-modal--signed .order-audit time,
.account-modal--signed .order-last-update {
  color: #718598;
}

.account-modal--signed .account-orders-empty {
  border-color: #cfe0ed;
  background: #f6fbff;
}

.account-modal--signed .account-orders-empty b {
  color: #173047;
}

.account-modal--signed .account-orders-empty span {
  color: #657b8f;
}

.account-modal--signed .security-card,
.account-modal--signed .password-form,
.account-modal--signed .console-pair-card,
.account-modal--signed .account-console-card {
  border-color: #d9e5ee;
  background: #f8fbfe;
}

.account-modal--signed .security-card > span {
  background: #e5f3ff;
  color: #0878d8;
}

.account-modal--signed .security-card b,
.account-modal--signed .password-form h3,
.account-modal--signed .console-pair-card h3,
.account-modal--signed .account-console-card__info b {
  color: #172d43;
}

.account-modal--signed .security-card p,
.account-modal--signed .console-pair-card p,
.account-modal--signed .account-console-card__info p {
  color: #62788c;
}

.account-modal--signed .password-form label {
  color: #526a80;
}

.account-modal--signed .password-form input,
.account-modal--signed .console-pair-card input,
.account-modal--signed .account-console-card input {
  border-color: #cbdce9;
  background: #fff;
  color: #172d43;
}

.account-modal--signed .password-form > small,
.account-modal--signed .account-console-card__info small {
  color: #73879a;
}

.account-modal--signed .order-detail > section:last-of-type {
  border-color: #d7e4ee;
  background: #f8fbfe;
}

.account-modal--signed .order-detail > section:last-of-type > h4 {
  color: #193047;
}

.account-modal--signed .order-stage__marker::before {
  background: #d5e1eb;
}

.account-modal--signed .order-stage[data-stage-state="current"] .order-stage__marker::before {
  background: linear-gradient(90deg, #25b984 0 50%, #d5e1eb 50% 100%);
}

.account-modal--signed .order-stage[data-stage-state="problem"] .order-stage__marker::before {
  background: linear-gradient(90deg, #ff6677 0 50%, #d5e1eb 50% 100%);
}

.account-modal--signed .order-stage__marker i {
  border-color: #cbdbe7;
  background: #fff;
  color: #667e92;
  box-shadow: 0 0 0 3px #f8fbfe;
}

.account-modal--signed .order-stage[data-stage-state="done"] .order-stage__marker i {
  box-shadow: 0 0 0 3px #f8fbfe;
}

.account-modal--signed .order-stage[data-stage-state="current"] .order-stage__marker i {
  box-shadow:
    0 0 0 3px #f8fbfe,
    0 0 0 7px rgba(40, 171, 255, .12),
    0 0 22px rgba(33, 161, 255, .22);
}

.account-modal--signed .order-stage[data-stage-state="problem"] .order-stage__marker i {
  box-shadow: 0 0 0 3px #f8fbfe;
}

.account-modal--signed .order-stage__copy b {
  color: #263b50;
}

.account-modal--signed .order-stage[data-stage-state="done"] .order-stage__copy b {
  color: #285744;
}

.account-modal--signed .order-stage[data-stage-state="current"] .order-stage__copy b {
  color: #0878d7;
}

.account-modal--signed .order-stage__copy time {
  color: #718598;
}

.account-modal--signed .order-stage::after {
  background: #e9eff4;
  color: #667c8f;
}

.account-modal--signed .order-stage[data-stage-state="done"]::after {
  background: #e2f7ef;
  color: #16855d;
}

.account-modal--signed .order-stage[data-stage-state="current"]::after {
  background: #e1f2ff;
  color: #0874cf;
}

@media (max-width: 680px) {
  .account-modal--signed .order-stage[data-stage-state="current"] .order-stage__marker::before,
  .account-modal--signed .order-stage[data-stage-state="problem"] .order-stage__marker::before {
    background: linear-gradient(180deg, #25b984 0 22px, #d5e1eb 22px 100%);
  }
}

/* Ícones vetoriais da navegação da conta */
.account-modal--signed .account-nav button {
  padding-left: 62px;
}

.account-modal--signed .account-nav button::before,
.account-modal--signed .account-nav button[data-account-tab="consoles"]::before,
.account-modal--signed .account-nav button[data-account-tab="security"]::before {
  left: 13px;
  width: 34px;
  height: 34px;
  display: block;
  border: 1px solid #d2e4f2;
  border-radius: 10px;
  background-color: #f0f8fe;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px 21px;
  box-shadow: none;
  opacity: 1;
}

.account-modal--signed .account-nav button[data-account-tab="orders"]::before {
  background-image: url("/assets/account-nav-orders.svg");
}

.account-modal--signed .account-nav button[data-account-tab="consoles"]::before {
  background-image: url("/assets/account-nav-consoles.svg");
}

.account-modal--signed .account-nav button[data-account-tab="security"]::before {
  background-image: url("/assets/account-nav-security.svg");
}

.account-modal--signed .account-nav button.is-active::before,
.account-modal--signed .account-nav button.is-active[data-account-tab="consoles"]::before {
  border-color: #9ecff1;
  background-color: #dff1ff;
  box-shadow: 0 5px 14px rgba(20, 119, 207, .14);
}

@media (max-width: 780px) {
  .account-modal--signed .account-nav button {
    height: 66px;
    padding: 35px 4px 5px;
    text-align: center;
  }

  .account-modal--signed .account-nav button::before,
  .account-modal--signed .account-nav button[data-account-tab="consoles"]::before,
  .account-modal--signed .account-nav button[data-account-tab="security"]::before {
    top: 6px;
    left: 50%;
    width: 27px;
    height: 27px;
    transform: translateX(-50%);
    border-radius: 8px;
    background-size: 17px 17px;
  }
}
