/* Login / cadastro — somente formulário (layout 6) */
body.pg-auth-minimal {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background: #f0f2f5;
}
body.pg-auth-minimal #login,
body.pg-auth-minimal #cadastro {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: max(10px, env(safe-area-inset-top, 0px)) 16px 28px;
  box-sizing: border-box;
}
body.pg-auth-minimal #login .h30,
body.pg-auth-minimal #cadastro .h30 {
  height: 0;
  display: none;
}
body.pg-auth-minimal #login .h80,
body.pg-auth-minimal #cadastro .h80 {
  height: 0;
  display: none;
}


/* Banner de consentimento de cookies (layout 6) */
.cookie-banner-l6 {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.cookie-banner-l6--visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner-l6__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(0, 74, 139, 0.12);
  border-radius: 12px;
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.08),
    0 1px 3px rgba(15, 23, 42, 0.06);
}
.cookie-banner-l6__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(145deg, #f0f6fc 0%, #e8f0fa 100%);
  color: var(--color-menu);
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cookie-banner-l6__icon {
    display: none;
  }
}
.cookie-banner-l6__content {
  flex: 1 1 280px;
  min-width: 0;
}
.cookie-banner-l6__text {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #334155;
}
@media (min-width: 768px) {
  .cookie-banner-l6__text {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .cookie-banner-l6__text {
    font-size: 1.25rem;
  }
}
.cookie-banner-l6__text strong {
  font-weight: 600;
  color: #1e293b;
}
.cookie-banner-l6__text a {
  color: var(--color-menu);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-l6__text a:hover {
  color: #003366;
}
.cookie-banner-l6__actions {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .cookie-banner-l6__actions {
    width: auto;
  }
}
.cookie-banner-l6__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 200px;
  padding: 13px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--cookie-btn-bg, var(--color-menu));
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 74, 139, 0.25);
}
@media (min-width: 768px) {
  .cookie-banner-l6__btn {
    font-size: 1.125rem;
    padding: 14px 28px;
  }
}
.cookie-banner-l6__btn:hover {
  background-color: var(--cookie-btn-bg-hover, #e85d04);
  box-shadow: 0 4px 14px rgba(232, 93, 4, 0.35);
}
.cookie-banner-l6__btn:active {
  background-color: var(--cookie-btn-bg-hover, #e85d04);
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(232, 93, 4, 0.3);
}
.cookie-banner-l6__btn:focus-visible {
  outline: 2px solid var(--cookie-btn-bg-hover, #e85d04);
  outline-offset: 2px;
}
body.has-cookie-banner-l6 {
  padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 768px) {
  body.has-cookie-banner-l6 {
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
  }
}


/* Login layout 6 — card moderno */


/* Login layout 6 — card moderno */
.auth-login-l6 {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: max(10px, env(safe-area-inset-top, 0px)) 16px 28px;
  box-sizing: border-box;
  background: #f3f4f6;
  font-size: 18px;
  line-height: 1.5;
}
.auth-login-l6__wrap {
  width: 100%;
  max-width: 460px;
}
.auth-login-l6__card {
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 20px 40px rgba(15, 23, 42, 0.08);
  padding: 40px 36px 32px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .auth-login-l6__card {
    padding: 32px 22px 28px;
  }
}
.auth-login-l6__brand {
  text-align: center;
  margin-bottom: 28px;
}
.auth-login-l6__brand-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--auth-accent, #e85d04);
  color: #fff;
  font-size: 1.625rem;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--auth-accent, #e85d04) 45%, transparent);
}
@supports not (color: color-mix(in srgb, red, blue)) {
  .auth-login-l6__brand-icon {
    box-shadow: 0 8px 24px rgba(232, 93, 4, 0.35);
  }
}
.auth-login-l6__title {
  margin: 0 0 10px;
  font-size: 1.9375rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}
@media (min-width: 480px) {
  .auth-login-l6__title {
    font-size: 2.25rem;
  }
}
.auth-login-l6__subtitle {
  margin: 0;
  font-size: 1.1875rem;
  line-height: 1.55;
  color: #6b7280;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) {
  .auth-login-l6__subtitle {
    font-size: 1.3125rem;
  }
}
.auth-login-l6__google,
a.auth-login-l6__google {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #374151;
  font-size: 1.1875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}
@media (min-width: 480px) {
  .auth-login-l6__google {
    font-size: 1.25rem;
    padding: 15px 18px;
  }
}
.auth-login-l6__google:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.auth-login-l6__google-icon {
  display: flex;
  flex-shrink: 0;
}
.auth-login-l6__google-icon svg {
  width: 24px;
  height: 24px;
}
.auth-login-l6__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: #9ca3af;
  font-size: 1.0625rem;
}
@media (min-width: 480px) {
  .auth-login-l6__divider {
    font-size: 1.125rem;
  }
}
.auth-login-l6__divider::before,
.auth-login-l6__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.auth-login-l6__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth-login-l6__field {
  position: relative;
  display: block;
}
.auth-login-l6__field input {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 48px 15px 48px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  font-size: 1.1875rem;
  font-weight: 400;
  font-style: normal;
  color: #111827;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}
@media (min-width: 480px) {
  .auth-login-l6__field input {
    font-size: 1.25rem;
    padding: 16px 48px 16px 48px;
  }
}
.auth-login-l6__field input::placeholder {
  color: #9ca3af;
  font-size: 1em;
  font-weight: 400;
  font-style: normal;
  opacity: 1;
}
.auth-login-l6__field input::-webkit-input-placeholder {
  color: #9ca3af;
  font-weight: 400;
  font-style: normal;
}
.auth-login-l6__field input::-moz-placeholder {
  color: #9ca3af;
  font-weight: 400;
  font-style: normal;
  opacity: 1;
}
.auth-login-l6__field input:-ms-input-placeholder {
  color: #9ca3af;
  font-weight: 400;
  font-style: normal;
}
/* Sobrescreve regra global input { font-style: italic } do tema */
.auth-login-l6 .auth-login-l6__field input,
.auth-login-l6 .auth-login-l6__field input::placeholder {
  font-style: normal !important;
  font-weight: 400 !important;
}
.auth-login-l6__field input:focus {
  border-color: #d1d5db;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.06);
}
.auth-login-l6__field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(calc(-50% + 1px));
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 16px;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
}
.auth-login-l6__field-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin: 0;
  line-height: 1;
  font-size: 16px;
}
.auth-login-l6__toggle-pw {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #9ca3af;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 0;
  z-index: 3;
}
.auth-login-l6__toggle-pw i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  line-height: 1;
  margin: 0;
}
.auth-login-l6__toggle-pw:hover {
  color: #6b7280;
}
.auth-login-l6__forgot {
  text-align: right;
  margin-top: -2px;
}
.auth-login-l6__forgot a {
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
}
@media (min-width: 480px) {
  .auth-login-l6__forgot a {
    font-size: 1.1875rem;
  }
}
.auth-login-l6__forgot a:hover {
  text-decoration: underline;
}
.auth-login-l6__submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 20px;
  border: none;
  border-radius: 10px;
  background: var(--auth-btn-bg, #101827);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.22s ease, transform 0.15s ease;
  font-family: inherit;
}
@media (min-width: 480px) {
  .auth-login-l6__submit {
    font-size: 1.3125rem;
    padding: 17px 22px;
  }
}
.auth-login-l6__submit:hover {
  background: var(--auth-btn-hover, #e85d04);
}
.auth-login-l6__submit:active {
  transform: scale(0.99);
}
.auth-login-l6__submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
.auth-login-l6__signup {
  margin: 24px 0 0;
  text-align: center;
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.5;
}
@media (min-width: 480px) {
  .auth-login-l6__signup {
    font-size: 1.1875rem;
  }
}
.auth-login-l6__signup a {
  font-weight: 600;
  text-decoration: none;
}
.auth-login-l6__signup a:hover {
  text-decoration: underline;
}
.auth-login-l6__back {
  display: block;
  margin-top: 22px;
  text-align: center;
  font-size: 1.125rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (min-width: 480px) {
  .auth-login-l6__back {
    font-size: 1.1875rem;
  }
}
.auth-login-l6__back:hover {
  color: #6b7280;
}
body.pg-auth-minimal #login.auth-login-l6 {
  padding: max(10px, env(safe-area-inset-top, 0px)) 16px 28px;
  min-height: 100dvh;
  justify-content: flex-start;
}
body.pg-auth-minimal #login.auth-login-l6 .h30,
body.pg-auth-minimal #login.auth-login-l6 .h80 {
  display: none;
}
/* Modais (boxs) — login e área do cliente */
.boxs > div.esqueci_senha,
.boxs > div.cadastro_editar_senha {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  width: min(440px, calc(100vw - 32px)) !important;
  max-height: min(90vh, 720px);
  overflow: auto;
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2) !important;
  padding: 0 !important;
}
.boxs > div.cadastro_editar {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  width: min(520px, calc(100vw - 32px)) !important;
  max-height: min(90vh, 820px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2) !important;
  padding: 0 !important;
}
.boxs > div.esqueci_senha h3,
.boxs > div.cadastro_editar h3,
.boxs > div.cadastro_editar_senha h3 {
  display: none;
}
.boxs > div.esqueci_senha .contextoo,
.boxs > div.cadastro_editar .contextoo,
.boxs > div.cadastro_editar_senha .contextoo {
  padding: 0 !important;
}
.boxs > div.cadastro_editar .contextoo {
  overflow: auto;
  max-height: min(90vh, 820px);
}
.boxs > div.esqueci_senha a.fechar,
.boxs > div.cadastro_editar a.fechar,
.boxs > div.cadastro_editar_senha a.fechar {
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f3f4f6;
  color: #6b7280 !important;
  font-size: 16px;
  text-decoration: none;
}
.boxs > div.esqueci_senha a.fechar:hover,
.boxs > div.cadastro_editar a.fechar:hover,
.boxs > div.cadastro_editar_senha a.fechar:hover {
  background: #e5e7eb;
  color: #111827 !important;
}
.auth-modal-l6 {
  padding: 28px 28px 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #374151;
}
.auth-modal-l6--account {
  padding-bottom: 28px;
}
.auth-modal-l6__head {
  margin-bottom: 20px;
  padding-right: 28px;
}
.auth-modal-l6__title {
  margin: 0 0 10px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}
.auth-modal-l6__text {
  margin: 0;
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.55;
}
.auth-modal-l6__notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #fcd34d;
  background: #fffbeb;
  color: #92400e;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.auth-modal-l6__notice i {
  margin-top: 2px;
  flex-shrink: 0;
  color: #d97706;
}
.auth-modal-l6__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth-modal-l6__form--scroll {
  max-height: calc(90vh - 200px);
  overflow-y: auto;
  padding-right: 4px;
  margin-right: -4px;
}
.auth-modal-l6__field {
  display: block;
  margin: 0;
}
.auth-modal-l6__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
}
.auth-modal-l6__input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  font-size: 1.0625rem;
  font-family: inherit;
  color: #111827;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.auth-modal-l6__input:focus {
  border-color: #d1d5db;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.06);
}
.auth-modal-l6__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  background: var(--auth-btn-bg, #222929);
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.22s ease;
}
.auth-modal-l6__submit:hover {
  background: var(--auth-btn-hover, #e85d04);
}
.auth-modal-l6--success {
  text-align: center;
  padding: 32px 28px 28px;
}
.auth-modal-l6__success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  font-size: 1.5rem;
}
.auth-modal-l6--success .auth-modal-l6__title {
  margin-bottom: 12px;
}
.auth-modal-l6--success .auth-modal-l6__text {
  margin-bottom: 24px;
  max-width: none;
}

/* Minha conta — documentos em análise (layout 6) */
.doc-analise-l6 {
  max-width: 520px;
  margin: 0 auto 28px;
  text-align: center;
  padding: 0 8px;
}
.doc-analise-l6__status {
  margin: 0 0 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111827;
  line-height: 1.35;
}
.doc-analise-l6__img {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}
.doc-analise-l6__title {
  margin: 0 0 12px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #65a30d;
  line-height: 1.3;
}
.doc-analise-l6__text {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.55;
  color: #374151;
}
.doc-analise-l6__text strong {
  color: #111827;
}
.doc-analise-l6__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none !important;
  border: none;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
  transition: background-color 0.22s ease, box-shadow 0.22s ease;
}
.doc-analise-l6__btn:hover {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.22);
}
.doc-analise-l6__wrap-table {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 0 8px;
}
.doc-analise-l6__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
  background: #fff;
}
.doc-analise-l6__table thead th {
  padding: 14px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  color: #fff;
  background: linear-gradient(135deg, #4b5563 0%, #1f2937 55%, #111827 100%);
  border: none;
}
.doc-analise-l6__table thead th:last-child {
  text-align: center;
}
.doc-analise-l6__table tbody td {
  padding: 14px 16px;
  font-size: 0.9375rem;
  color: #374151;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
}
.doc-analise-l6__table tbody tr:nth-child(even) td {
  background: #f9fafb;
}
.doc-analise-l6__table tbody tr:last-child td {
  border-bottom: none;
}
.doc-analise-l6__table tbody td:last-child {
  text-align: center;
}
.doc-analise-l6__table a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}
.doc-analise-l6__table a:hover {
  text-decoration: underline;
}
.doc-analise-l6__table-empty td {
  text-align: center !important;
  color: #6b7280;
  padding: 20px 16px !important;
}
.doc-analise-l6__alert-ok {
  max-width: 640px;
  margin: 0 auto 20px;
  padding: 14px 18px;
  text-align: center;
  border-radius: 10px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  font-size: 0.9375rem;
  line-height: 1.5;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.12);
}

/* Banner L6 — espaço reservado (evita CLS) */
.banner--l6 .banner__wrapper--reserved {
  background-color: #e8eaef;
  aspect-ratio: 1920 / 500;
  min-height: clamp(120px, 26vw, 500px);
}
@media (max-width: 768px) {
  .banner--l6 .banner__wrapper--reserved {
    aspect-ratio: 39 / 20;
    min-height: clamp(100px, 42vw, 420px);
  }
}
.banner--l6 .banner__slide.active {
  min-height: 1px;
}
.banner--l6 .banner__slide img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* Home — cards "Ver todos" (calendário e destaques) */
.carousel__card--ver-todos {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.carousel__card--ver-todos:hover {
  border-color: #ced4da;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}
.carousel__card--ver-todos .date {
  font-size: 32px;
  line-height: 1.15;
  margin: 16px 0 12px;
}
/* Home — card "Ver todos" no carrossel de destaques (refinado) */
.auction-carousel__item--ver-todos {
  border: 1px solid #e2e6ea;
  box-sizing: border-box;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.auction-carousel__item--ver-todos:hover {
  transform: translateY(-2px);
  border-color: #d0d7de;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}
.home6-lote-ver-todos {
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.home6-lote-ver-todos__tag {
  background: var(--lote-ver-todos-bg, var(--color-menu, #222929)) !important;
  color: #fff !important;
  border-color: transparent !important;
  font-size: 10px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px !important;
}
.home6-lote-ver-todos__visual {
  border: none !important;
  background: linear-gradient(
    160deg,
    #ffffff 0%,
    #f6f7f9 42%,
    color-mix(in srgb, var(--lote-ver-todos-bg, #222929) 6%, #f0f2f5) 100%
  ) !important;
  position: relative;
  overflow: hidden;
}
.home6-lote-ver-todos__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(255, 255, 255, 0.95) 0%, transparent 62%);
  pointer-events: none;
}
.home6-lote-ver-todos__visual::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  bottom: -50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--lote-ver-todos-accent, #e85d04) 12%, transparent);
  pointer-events: none;
}
.home6-lote-ver-todos__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 14px 12px;
  box-sizing: border-box;
  gap: 6px;
}
.home6-lote-ver-todos__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lote-ver-todos-bg, var(--color-menu, #222929));
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--lote-ver-todos-bg, #222929) 35%, transparent);
  margin-bottom: 4px;
}
.home6-lote-ver-todos__title {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  color: #111827;
  letter-spacing: -0.02em;
}
.home6-lote-ver-todos__subtitle {
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #6b7280;
  max-width: 11em;
}
.home6-lote-ver-todos__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 11px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  background: var(--lote-ver-todos-accent, var(--color-hover, #e85d04));
  box-shadow: 0 4px 12px color-mix(in srgb, var(--lote-ver-todos-accent, #e85d04) 35%, transparent);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.auction-carousel__item--ver-todos:hover .home6-lote-ver-todos__cta {
  transform: translateX(2px);
}
.home6-lote-ver-todos__cta i {
  font-size: 0.7rem;
}
.home6-lote-ver-todos__footer {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 4.75rem;
  padding: 8px 10px 10px;
  gap: 6px;
  box-sizing: border-box;
}
.home6-lote-ver-todos__price {
  text-align: center;
  margin: 0 !important;
}
.home6-lote-ver-todos__details {
  margin: 0 !important;
  width: 100%;
}
.home6-lote-ver-todos__price .LL_lance_atual b {
  color: var(--lote-ver-todos-bg, var(--color-menu, #222929)) !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
}
.home6-lote-ver-todos__foot {
  text-align: center;
  font-size: 12px !important;
  line-height: 1.35 !important;
  color: #6b7280 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@supports not (color: color-mix(in srgb, red, blue)) {
  .home6-lote-ver-todos__visual {
    background: linear-gradient(160deg, #ffffff 0%, #f3f4f6 100%) !important;
  }
  .home6-lote-ver-todos__icon-wrap {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  .home6-lote-ver-todos__cta {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
}









/* Cadastro layout 6 — wizard (reusa .auth-login-l6) */
#cadastro.auth-login-l6.auth-register-l6 {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: max(10px, env(safe-area-inset-top, 0px)) 16px 32px;
  box-sizing: border-box;
  background: #f3f4f6;
}
body.pg-auth-minimal #cadastro.auth-login-l6 {
  padding: max(10px, env(safe-area-inset-top, 0px)) 16px 32px;
  min-height: 100dvh;
  justify-content: flex-start;
}
.auth-register-l6 .auth-login-l6__brand {
  margin-bottom: 0;
}
.auth-register-l6__macro-progress {
  display: flex;
  gap: 10px;
  margin: 22px auto 0;
  width: 100%;
  max-width: 240px;
}
.auth-register-l6__macro-progress span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: background-color 0.25s ease;
}
.auth-register-l6__macro-progress span.is-active,
.auth-register-l6__macro-progress span.is-done {
  background: var(--auth-accent, #e85d04);
}
.auth-register-l6__step-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
  line-height: 1.45;
  box-sizing: border-box;
}
.auth-register-l6__step-error[hidden] {
  display: none !important;
}
.auth-register-l6__step-error-icon {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.45;
  color: #dc2626;
}
.auth-register-l6__step-error-text {
  margin: 0;
  flex: 1;
}
.auth-register-l6__step.is-active > .auth-login-l6__google,
.auth-register-l6__step.is-active > .auth-login-l6__divider {
  margin-top: 0;
}
.auth-register-l6__step.is-active > .auth-login-l6__google {
  margin-top: 4px;
}
/* Menos espaço entre "ou cadastre-se com e-mail" e o 1º input */
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__divider {
  margin: 8px 0 0;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-register-l6__step.is-active {
  gap: 14px;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__divider + .auth-login-l6__field {
  margin-top: 2px;
}
.auth-register-l6[data-current-step]:not([data-current-step="1"]) .auth-register-l6__home-link {
  display: none;
}
.auth-register-l6__progress {
  display: flex;
  gap: 8px;
  margin: 0 0 28px;
}
.auth-register-l6__progress span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: background-color 0.25s ease;
}
.auth-register-l6__progress span.is-active,
.auth-register-l6__progress span.is-done {
  background: var(--auth-accent, #e85d04);
}
.auth-register-l6__step {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.auth-register-l6__step.is-active {
  display: flex;
  gap: 20px;
}
.auth-register-l6__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 400px) {
  .auth-register-l6__row {
    grid-template-columns: 1fr;
  }
}
.auth-register-l6__row--cep-num {
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.75fr);
}
@media (max-width: 400px) {
  .auth-register-l6__row--cep-num {
    grid-template-columns: 1fr 0.85fr;
  }
}
.auth-register-l6__recaptcha {
  display: flex;
  justify-content: center;
  margin: 4px 0 8px;
  overflow: hidden;
}
.auth-register-l6__recaptcha .g-recaptcha {
  transform-origin: center top;
}
@media (max-width: 380px) {
  .auth-register-l6__recaptcha .g-recaptcha {
    transform: scale(0.92);
  }
}
.auth-register-l6__privacy {
  margin: 8px 0 0;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #9ca3af;
}
@media (min-width: 480px) {
  .auth-register-l6__privacy {
    font-size: 0.875rem;
  }
}
.auth-register-l6__step-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.auth-register-l6__back-step {
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px;
  font-family: inherit;
}
.auth-register-l6__back-step:hover {
  color: #374151;
}
.auth-login-l6__field input.is-invalid {
  border-color: #ef4444;
  background: #fef2f2;
}
.auth-register-l6__submit-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#cadastro.auth-login-l6 .auth-login-l6__card {
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

/* Campos alinhados como Parque dos Leilões */
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__field {
  position: relative !important;
  display: block !important;
  margin: 0 !important;
  height: 48px !important;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__field input {
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  padding: 0 16px 0 40px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  background: #f8fafc !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  color: #1e293b !important;
  line-height: 48px !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  margin: 0 !important;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__field input[type="password"] {
  padding-right: 44px !important;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__field input::placeholder,
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__field input::-webkit-input-placeholder,
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__field input::-moz-placeholder {
  color: #94a3b8 !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 48px !important;
  opacity: 1 !important;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__field input:focus {
  border-color: #f97316 !important;
  background: #fff !important;
  box-shadow: none !important;
}
/* Ícone leading: caixa 18x18 centrada no campo 48px (igual Parque) */
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__field-icon {
  position: absolute !important;
  left: 14px !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateY(calc(-50% + 1px)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #94a3b8 !important;
  font-size: 16px !important;
  line-height: 0 !important;
  pointer-events: none !important;
  z-index: 2 !important;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__field-icon i {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  line-height: 1 !important;
  transform: none !important;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__field-icon i::before {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  line-height: 16px !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__toggle-pw {
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  width: 30px !important;
  height: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  background: transparent !important;
  color: #94a3b8 !important;
  font-size: 16px !important;
  line-height: 0 !important;
  z-index: 3 !important;
  cursor: pointer !important;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__toggle-pw i {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 16px !important;
  line-height: 1 !important;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__toggle-pw i::before {
  display: block !important;
  line-height: 16px !important;
  width: 16px !important;
  height: 16px !important;
  text-align: center !important;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__submit.is-loading {
  pointer-events: none;
  opacity: 0.88;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-login-l6__submit.is-loading .fa-spinner {
  font-size: 1.125rem;
}
#cadastro.auth-login-l6.auth-register-l6 .auth-register-l6__field--num input {
  padding-left: 16px !important;
  text-align: left;
}
body.pg-auth-minimal .carregando {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
