/* =========================================================
   MSDEV — Tema Neon Store para Loja Integrada
   Arquivo: tema-teste.css
   Versão: 3.0.0
   Atualização: 2026-07-21
   ========================================================= */

:root {
  --ms3-accent: #a6ff00;
  --ms3-accent-strong: #7ee600;
  --ms3-purple: #7a35ff;
  --ms3-bg: #070b10;
  --ms3-bg-2: #0b1118;
  --ms3-surface: #111924;
  --ms3-surface-2: #172230;
  --ms3-text: #f4f7fb;
  --ms3-muted: #9aa7b5;
  --ms3-border: rgba(255, 255, 255, .09);
  --ms3-border-accent: rgba(166, 255, 0, .28);
  --ms3-danger: #ff5477;
  --ms3-warning: #ffc44d;
  --ms3-sidebar: 212px;
  --ms3-container: 1480px;
  --ms3-header: 76px;
  --ms3-radius-xs: 8px;
  --ms3-radius-sm: 12px;
  --ms3-radius-md: 18px;
  --ms3-radius-lg: 26px;
  --ms3-shadow: 0 22px 70px rgba(0, 0, 0, .38);
  --ms3-shadow-soft: 0 12px 36px rgba(0, 0, 0, .22);
  --ms3-ease: 180ms cubic-bezier(.2, .8, .2, 1);
}

html.msdev-v3,
html.msdev-v3-preload {
  color-scheme: dark;
  background: var(--ms3-bg);
}

html.msdev-v3 *,
html.msdev-v3 *::before,
html.msdev-v3 *::after,
html.msdev-v3-preload *,
html.msdev-v3-preload *::before,
html.msdev-v3-preload *::after {
  box-sizing: border-box;
}

html.msdev-v3 body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ms3-text);
  background:
    radial-gradient(circle at 88% -8%, rgba(122, 53, 255, .18), transparent 32rem),
    radial-gradient(circle at 8% 45%, rgba(166, 255, 0, .05), transparent 32rem),
    linear-gradient(180deg, #070b10 0%, #080d13 44%, #06090e 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html.msdev-v3 body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

html.msdev-v3 body.ms3-has-sidebar {
  padding-left: var(--ms3-sidebar);
}

html.msdev-v3 a {
  color: inherit;
  text-decoration: none;
}

html.msdev-v3 img {
  max-width: 100%;
}

html.msdev-v3 button,
html.msdev-v3 input,
html.msdev-v3 select,
html.msdev-v3 textarea {
  font: inherit;
}

html.msdev-v3 button,
html.msdev-v3 a {
  -webkit-tap-highlight-color: transparent;
}

html.msdev-v3 ::selection {
  color: #061000;
  background: var(--ms3-accent);
}

html.msdev-v3 :focus-visible {
  outline: 3px solid rgba(166, 255, 0, .64) !important;
  outline-offset: 3px;
}

/* Evita a piscada e remove o cabeçalho antigo sem apagar sua lógica. */
html.msdev-v3-preload .barra-inicial,
html.msdev-v3-preload #cabecalho,
html.msdev-v3-preload .barraTopo,
html.msdev-v3 .barra-inicial,
html.msdev-v3 #cabecalho,
html.msdev-v3 .barraTopo {
  display: none !important;
}

html.msdev-v3 .conteiner-principal {
  min-height: 100vh;
  padding-top: var(--ms3-header);
  background: transparent !important;
}

html.msdev-v3 .conteiner,
html.msdev-v3 .container {
  width: min(calc(100% - 40px), var(--ms3-container)) !important;
  max-width: var(--ms3-container) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

html.msdev-v3 #corpo,
html.msdev-v3 #corpo .conteiner,
html.msdev-v3 .corpo,
html.msdev-v3 .conteudo,
html.msdev-v3 .pagina-conteudo {
  color: var(--ms3-text);
  background: transparent !important;
}

html.msdev-v3 #corpo .conteiner {
  padding-top: 34px;
  padding-bottom: 68px;
}

html.msdev-v3 h1,
html.msdev-v3 h2,
html.msdev-v3 h3,
html.msdev-v3 h4,
html.msdev-v3 h5,
html.msdev-v3 h6 {
  color: var(--ms3-text);
  font-family: inherit;
  letter-spacing: -.025em;
}

html.msdev-v3 p,
html.msdev-v3 .muted,
html.msdev-v3 small {
  color: var(--ms3-muted);
}

/* =========================================================
   MENU LATERAL
   ========================================================= */
.ms3-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 10020;
  width: var(--ms3-sidebar);
  height: 100dvh;
  overflow: hidden;
  color: var(--ms3-text);
  background:
    radial-gradient(circle at 35% 94%, rgba(166, 255, 0, .22), transparent 13rem),
    linear-gradient(180deg, #0b1118 0%, #091017 55%, #0a1510 100%);
  border-right: 1px solid rgba(166, 255, 0, .13);
  box-shadow: 18px 0 60px rgba(0, 0, 0, .3);
}

.ms3-sidebar::after {
  content: "";
  position: absolute;
  inset: auto -60px -100px -60px;
  height: 240px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(166, 255, 0, .22), transparent 66%);
  filter: blur(8px);
}

.ms3-sidebar__inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 17px 13px 14px;
}

.ms3-sidebar__brand {
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 0 8px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.ms3-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--ms3-text) !important;
}

.ms3-brand__image {
  display: block;
  width: 142px;
  max-width: 142px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 17px rgba(166, 255, 0, .12));
}

.ms3-brand__text {
  display: none;
  min-width: 0;
  flex-direction: column;
}

.ms3-brand.is-text .ms3-brand__text,
.ms3-brand:not(:has(.ms3-brand__image)) .ms3-brand__text {
  display: flex;
}

.ms3-brand__text strong {
  overflow: hidden;
  max-width: 150px;
  color: var(--ms3-text);
  font-size: 15px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ms3-brand__text small {
  margin-top: 2px;
  color: var(--ms3-muted);
  font-size: 10px;
  letter-spacing: .02em;
}

.ms3-brand--compact .ms3-brand__image {
  width: 118px;
  max-width: 118px;
  height: 38px;
}

.ms3-brand--compact .ms3-brand__text small {
  display: none;
}

.ms3-nav {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 5px;
  overflow: hidden auto;
  padding: 15px 2px 16px;
  scrollbar-color: rgba(166, 255, 0, .28) transparent;
  scrollbar-width: thin;
}

.ms3-nav__group {
  display: flex;
  flex-direction: column;
}

.ms3-nav__link {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 47px;
  align-items: center;
  padding: 8px 10px;
  gap: 11px;
  color: #c9d1db !important;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: color var(--ms3-ease), background var(--ms3-ease), border-color var(--ms3-ease), transform var(--ms3-ease);
}

.ms3-nav__link:hover,
.ms3-nav__link:focus-visible,
.ms3-nav__link.is-active,
.ms3-nav__group.is-open > .ms3-nav__link {
  color: #fff !important;
  background: linear-gradient(90deg, rgba(166, 255, 0, .14), rgba(122, 53, 255, .07));
  border-color: rgba(166, 255, 0, .16);
  transform: translateX(2px);
}

.ms3-nav__link.is-active::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -4px;
  width: 3px;
  background: var(--ms3-accent);
  border-radius: 99px;
  box-shadow: 0 0 13px rgba(166, 255, 0, .72);
}

.ms3-nav__icon {
  display: grid;
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--ms3-accent);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 10px;
}

.ms3-nav__icon svg {
  width: 16px;
  height: 16px;
}

.ms3-nav__label {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  font-size: 12.5px;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ms3-nav__toggle {
  appearance: none;
}

.ms3-nav__chevron {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #75808e;
  transition: transform var(--ms3-ease);
}

.ms3-nav__chevron svg {
  width: 14px;
  height: 14px;
}

.ms3-nav__group.is-open .ms3-nav__chevron {
  transform: rotate(90deg);
}

.ms3-nav__submenu {
  display: grid;
  max-height: 0;
  overflow: hidden;
  padding-left: 42px;
  opacity: 0;
  transition: max-height 240ms ease, opacity 180ms ease, padding 180ms ease;
}

.ms3-nav__group.is-open .ms3-nav__submenu {
  max-height: 680px;
  padding-top: 5px;
  padding-bottom: 8px;
  opacity: 1;
}

.ms3-nav__sublink {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 7px 8px 7px 13px;
  color: #8f9aa8 !important;
  border-left: 1px solid rgba(255, 255, 255, .08);
  font-size: 11.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color var(--ms3-ease), border-color var(--ms3-ease), padding-left var(--ms3-ease);
}

.ms3-nav__sublink:hover,
.ms3-nav__sublink.is-active {
  padding-left: 17px;
  color: var(--ms3-accent) !important;
  border-color: var(--ms3-accent);
}

.ms3-nav__sublink--all {
  color: #d9e2ec !important;
  font-weight: 750;
}

.ms3-sidebar__foot {
  display: flex;
  flex-direction: column;
  padding: 13px 8px 2px;
  gap: 7px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.ms3-sidebar__support {
  color: #dbe4ec !important;
  font-size: 12px;
  font-weight: 700;
}

.ms3-sidebar__support:hover {
  color: var(--ms3-accent) !important;
}

.ms3-sidebar__version {
  color: #687482;
  font-size: 9px;
  letter-spacing: .02em;
}

/* =========================================================
   CABEÇALHO NOVO
   ========================================================= */
.ms3-appbar,
.ms3-checkoutbar {
  position: fixed;
  inset: 0 0 auto var(--ms3-sidebar);
  z-index: 10010;
  height: var(--ms3-header);
  background: rgba(8, 13, 20, .91);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px) saturate(130%);
}

.ms3-checkoutbar {
  left: 0;
}

.ms3-appbar__inner,
.ms3-checkoutbar__inner {
  display: flex;
  width: min(calc(100% - 38px), var(--ms3-container));
  height: 100%;
  align-items: center;
  margin: 0 auto;
  gap: 20px;
}

.ms3-appbar .ms3-brand {
  display: none;
}

.ms3-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ms3-text);
  background: var(--ms3-surface);
  border: 1px solid var(--ms3-border);
  border-radius: 12px;
  cursor: pointer;
}

.ms3-menu-button svg {
  width: 20px;
  height: 20px;
}

.ms3-search {
  position: relative;
  display: flex;
  min-width: 240px;
  max-width: 620px;
  height: 45px;
  flex: 1;
  align-items: center;
  overflow: hidden;
  color: var(--ms3-text);
  background: #111923;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  transition: border-color var(--ms3-ease), box-shadow var(--ms3-ease), background var(--ms3-ease);
}

.ms3-search:focus-within {
  background: #131d28;
  border-color: rgba(166, 255, 0, .35);
  box-shadow: 0 0 0 4px rgba(166, 255, 0, .06);
}

.ms3-search__icon {
  display: grid;
  flex: 0 0 45px;
  place-items: center;
  color: #7f8b99;
}

.ms3-search__icon svg {
  width: 18px;
  height: 18px;
}

.ms3-search input {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 12px 0 0 !important;
  color: var(--ms3-text) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  font-size: 13px;
}

.ms3-search input::placeholder {
  color: #6f7a88;
}

.ms3-search button {
  display: grid;
  width: 46px;
  height: 100%;
  flex: 0 0 46px;
  place-items: center;
  color: #061000;
  background: var(--ms3-accent);
  border: 0;
  cursor: pointer;
  transition: background var(--ms3-ease), filter var(--ms3-ease);
}

.ms3-search button:hover {
  background: #b8ff34;
  filter: brightness(1.04);
}

.ms3-search button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.ms3-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ms3-actions__cta {
  display: flex;
  height: 43px;
  align-items: center;
  padding: 0 17px;
  gap: 8px;
  color: #061000 !important;
  background: linear-gradient(135deg, var(--ms3-accent), #c7ff54);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(166, 255, 0, .18);
  font-size: 12px;
  font-weight: 850;
  transition: transform var(--ms3-ease), box-shadow var(--ms3-ease), filter var(--ms3-ease);
}

.ms3-actions__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 28px rgba(166, 255, 0, .25);
  filter: brightness(1.04);
}

.ms3-actions__cta svg {
  width: 15px;
  height: 15px;
}

.ms3-action {
  position: relative;
  display: flex;
  min-width: 47px;
  height: 45px;
  align-items: center;
  padding: 0 10px;
  gap: 9px;
  color: #cbd4dd !important;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: color var(--ms3-ease), background var(--ms3-ease), border-color var(--ms3-ease);
}

.ms3-action:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, .045);
  border-color: rgba(255, 255, 255, .06);
}

.ms3-action > svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--ms3-accent);
}

.ms3-action__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  white-space: nowrap;
}

.ms3-action__copy small {
  color: #778392;
  font-size: 9px;
}

.ms3-action__copy strong {
  margin-top: 3px;
  color: #dce4ec;
  font-size: 11px;
  font-weight: 760;
}

.ms3-cart-count {
  position: absolute;
  top: 1px;
  right: 1px;
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  padding: 0 4px;
  color: #061000;
  background: var(--ms3-accent);
  border: 2px solid #09101a;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 900;
}

.ms3-cart-count.is-empty {
  display: none;
}

.ms3-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10015;
  display: none;
  padding: 0;
  background: rgba(0, 0, 0, .68);
  border: 0;
  opacity: 0;
  backdrop-filter: blur(4px);
}

/* Cabeçalho seguro do checkout */
.ms3-checkoutbar__inner {
  justify-content: space-between;
}

.ms3-checkoutbar__secure {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ms3-checkoutbar__secure-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ms3-accent);
  background: rgba(166, 255, 0, .08);
  border: 1px solid rgba(166, 255, 0, .18);
  border-radius: 12px;
}

.ms3-checkoutbar__secure-icon svg {
  width: 18px;
  height: 18px;
}

.ms3-checkoutbar__secure > span:last-child {
  display: flex;
  flex-direction: column;
}

.ms3-checkoutbar__secure strong {
  font-size: 12px;
}

.ms3-checkoutbar__secure small {
  margin-top: 2px;
  font-size: 9.5px;
}

.ms3-checkoutbar__back {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #b9c3cd !important;
  font-size: 11px;
  font-weight: 700;
}

.ms3-checkoutbar__back:hover {
  color: var(--ms3-accent) !important;
}

.ms3-checkoutbar__back svg {
  width: 17px;
  height: 17px;
}

/* =========================================================
   HERO / BANNERS
   ========================================================= */
html.msdev-v3 .secao-banners {
  padding: 26px 0 2px;
  background: transparent !important;
}

html.msdev-v3 .secao-banners .conteiner {
  width: min(calc(100% - 40px), var(--ms3-container)) !important;
}

html.msdev-v3 .secao-banners .banner.cheio,
html.msdev-v3 .secao-banners .span12,
html.msdev-v3 .secao-banners .flexslider {
  width: 100% !important;
  margin: 0 !important;
}

html.msdev-v3 .secao-banners .flexslider {
  position: relative;
  overflow: hidden;
  background: #090d13;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--ms3-radius-lg);
  box-shadow: var(--ms3-shadow);
}

html.msdev-v3 .secao-banners .flexslider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 7, 11, .42), transparent 42%),
    linear-gradient(0deg, rgba(4, 7, 11, .35), transparent 42%);
}

html.msdev-v3 .secao-banners .slides,
html.msdev-v3 .secao-banners .slides > li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html.msdev-v3 .secao-banners .slides img {
  display: block;
  width: 100% !important;
  min-height: 270px;
  max-height: 520px;
  aspect-ratio: 16 / 5;
  object-fit: cover;
}

html.msdev-v3 .secao-banners .info-banner {
  position: absolute;
  right: auto;
  bottom: 24px;
  left: 25px;
  z-index: 4;
  display: inline-flex;
  width: auto;
  margin: 0;
  padding: 8px 13px;
  color: #071000 !important;
  background: var(--ms3-accent);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .28);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .02em;
  opacity: 1;
}

html.msdev-v3 .secao-banners .flex-direction-nav a {
  display: grid !important;
  width: 42px !important;
  height: 42px !important;
  place-items: center;
  overflow: hidden;
  color: transparent !important;
  background: rgba(10, 15, 22, .82) !important;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  opacity: 1 !important;
  text-shadow: none !important;
}

html.msdev-v3 .secao-banners .flex-direction-nav a::before {
  color: var(--ms3-accent);
  font-size: 20px;
}

html.msdev-v3 .secao-banners .flex-control-nav {
  bottom: 14px;
  z-index: 5;
}

html.msdev-v3 .secao-banners .flex-control-paging li a {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, .34);
  box-shadow: none;
}

html.msdev-v3 .secao-banners .flex-control-paging li a.flex-active {
  width: 22px;
  background: var(--ms3-accent);
  border-radius: 99px;
}

/* =========================================================
   VITRINES E CARDS DE PRODUTOS
   ========================================================= */
html.msdev-v3 .listagem {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

html.msdev-v3 .listagem .titulo-categoria {
  display: flex;
  min-height: 48px;
  align-items: center;
  margin: 42px 0 18px !important;
  padding: 0 !important;
  gap: 10px;
  color: var(--ms3-text) !important;
  background: transparent !important;
  border: 0 !important;
}

html.msdev-v3 .listagem .titulo-categoria::after {
  content: "";
  height: 1px;
  flex: 1;
  margin-left: 8px;
  background: linear-gradient(90deg, rgba(166, 255, 0, .24), rgba(255, 255, 255, .04), transparent);
}

html.msdev-v3 .listagem .titulo-categoria strong {
  color: var(--ms3-text) !important;
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 850;
  letter-spacing: -.03em;
}

.ms3-section-icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  color: var(--ms3-accent);
  background: rgba(166, 255, 0, .08);
  border: 1px solid rgba(166, 255, 0, .17);
  border-radius: 11px;
  box-shadow: inset 0 0 18px rgba(166, 255, 0, .04);
}

.ms3-section-icon svg {
  width: 16px;
  height: 16px;
}

html.msdev-v3 .listagem > ul {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 !important;
  padding: 0 !important;
  gap: 17px;
  list-style: none !important;
}

html.msdev-v3 .listagem > ul > .listagem-linha {
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

html.msdev-v3 .listagem > ul > .listagem-linha > ul {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 !important;
  padding: 0 !important;
  gap: 17px;
  list-style: none !important;
}

html.msdev-v3 .listagem > ul > .listagem-linha > ul::before,
html.msdev-v3 .listagem > ul > .listagem-linha > ul::after {
  display: none !important;
  content: none !important;
}

html.msdev-v3 .listagem > ul > .listagem-linha > ul > li,
html.msdev-v3 .listagem > ul > .listagem-linha > ul > li[class*="span"] {
  display: block !important;
  float: none !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

html.msdev-v3 .listagem-item {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 420px;
  flex-direction: column;
  overflow: hidden;
  color: var(--ms3-text);
  background:
    linear-gradient(180deg, rgba(20, 29, 41, .98), rgba(13, 19, 28, .98));
  border: 1px solid rgba(255, 255, 255, .075) !important;
  border-radius: 17px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
  transition: transform var(--ms3-ease), border-color var(--ms3-ease), box-shadow var(--ms3-ease);
}

html.msdev-v3 .listagem-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 50% 100%, rgba(122, 53, 255, .2), transparent 45%);
  transition: opacity var(--ms3-ease);
}

html.msdev-v3 .listagem-item:hover {
  z-index: 3;
  border-color: rgba(166, 255, 0, .32) !important;
  box-shadow: 0 21px 48px rgba(0, 0, 0, .34), 0 0 0 1px rgba(166, 255, 0, .06);
  transform: translateY(-6px);
}

html.msdev-v3 .listagem-item:hover::before {
  opacity: 1;
}

html.msdev-v3 .listagem-item > * {
  position: relative;
  z-index: 1;
}

html.msdev-v3 .listagem-item .produto-sobrepor {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
}

html.msdev-v3 .listagem-item .imagem-produto {
  position: relative;
  display: grid;
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 4.6;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 30%, rgba(122, 53, 255, .12), transparent 46%),
    #0a1018;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
  border-radius: 0 !important;
}

html.msdev-v3 .listagem-item .imagem-produto::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 70px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(12, 18, 27, .78));
}

html.msdev-v3 .listagem-item .imagem-produto img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 260ms ease, filter 260ms ease;
}

html.msdev-v3 .listagem-item:hover .imagem-produto img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.02);
}

html.msdev-v3 .listagem-item.ms3-card--placeholder .imagem-produto img {
  width: 70% !important;
  height: 70% !important;
  opacity: .68;
  filter: grayscale(1) brightness(.72);
}

html.msdev-v3 .listagem-item .info-produto {
  display: flex;
  min-height: 132px;
  flex: 1;
  flex-direction: column;
  padding: 15px 15px 10px !important;
  background: linear-gradient(180deg, rgba(22, 30, 43, .92), rgba(17, 25, 36, .98));
}

html.msdev-v3 .listagem-item .nome-produto {
  display: -webkit-box;
  min-height: 38px;
  overflow: hidden;
  color: #f0f4f7 !important;
  font-size: 12.5px;
  font-weight: 760;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

html.msdev-v3 .listagem-item .preco-produto {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 9px;
}

.ms3-price-kicker {
  display: block;
  margin-bottom: 2px;
  color: #758190;
  font-size: 8.5px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}

html.msdev-v3 .listagem-item .preco-promocional,
html.msdev-v3 .listagem-item .preco-venda,
html.msdev-v3 .listagem-item .preco-produto .titulo {
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 850 !important;
  letter-spacing: -.03em;
}

html.msdev-v3 .listagem-item .desconto-a-vista {
  display: block;
  margin-top: 2px;
  color: #8491a0 !important;
  font-size: 9.5px;
  line-height: 1.35;
}

html.msdev-v3 .listagem-item .desconto-a-vista strong {
  color: var(--ms3-accent) !important;
  font-weight: 850;
}

html.msdev-v3 .listagem-item .acoes-produto,
html.msdev-v3 .listagem-item .acoes-produto-responsiva {
  position: relative !important;
  z-index: 4 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 15px 15px !important;
  background: #111924;
  opacity: 1 !important;
  transform: none !important;
}

html.msdev-v3 .listagem-item .acoes-produto {
  display: block !important;
}

html.msdev-v3 .listagem-item .acoes-produto-responsiva {
  display: none !important;
}

html.msdev-v3 .listagem-item .acoes-produto .botao,
html.msdev-v3 .listagem-item .acoes-produto-responsiva .tag-comprar {
  display: flex !important;
  width: 100% !important;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 9px 12px !important;
  gap: 7px;
  color: #061000 !important;
  background: linear-gradient(135deg, var(--ms3-accent), #c7ff54) !important;
  border: 0 !important;
  border-radius: 11px !important;
  box-shadow: 0 7px 22px rgba(166, 255, 0, .13);
  font-size: 11px !important;
  font-weight: 850 !important;
  text-shadow: none !important;
  transition: filter var(--ms3-ease), transform var(--ms3-ease), box-shadow var(--ms3-ease);
}

html.msdev-v3 .listagem-item .acoes-produto .botao:hover,
html.msdev-v3 .listagem-item .acoes-produto-responsiva .tag-comprar:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 10px 27px rgba(166, 255, 0, .2);
}

html.msdev-v3 .listagem-item .acoes-produto .botao i,
html.msdev-v3 .listagem-item .acoes-produto-responsiva .tag-comprar i {
  color: inherit !important;
}

html.msdev-v3 .listagem .bandeiras-produto,
html.msdev-v3 .listagem .bandeira-promocao,
html.msdev-v3 .listagem .bandeira-frete-gratis {
  z-index: 5;
}

html.msdev-v3 .listagem .bandeira-promocao,
html.msdev-v3 .listagem .bandeira-frete-gratis,
html.msdev-v3 .listagem .bandeira-destaque {
  color: #061000 !important;
  background: var(--ms3-accent) !important;
  border-radius: 7px !important;
  text-shadow: none !important;
}

/* Paginação e filtros */
html.msdev-v3 .ordenar-listagem,
html.msdev-v3 .pagina-categoria .coluna,
html.msdev-v3 .pagina-busca .coluna,
html.msdev-v3 .filtro-coluna,
html.msdev-v3 .menu.lateral {
  color: var(--ms3-text);
  background: var(--ms3-surface) !important;
  border: 1px solid var(--ms3-border) !important;
  border-radius: var(--ms3-radius-md);
  box-shadow: var(--ms3-shadow-soft);
}

html.msdev-v3 .paginacao ul > li > a,
html.msdev-v3 .paginacao ul > li > span {
  color: #c8d1da !important;
  background: var(--ms3-surface) !important;
  border-color: var(--ms3-border) !important;
}

html.msdev-v3 .paginacao ul > li.active > a,
html.msdev-v3 .paginacao ul > li.active > span {
  color: #061000 !important;
  background: var(--ms3-accent) !important;
}

/* =========================================================
   PÁGINA DE PRODUTO
   ========================================================= */
html.msdev-v3 .ms3-product-layout {
  width: 100% !important;
  margin: 0 !important;
}

html.msdev-v3 .ms3-product-layout > .row-fluid:first-child {
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  align-items: start;
  gap: 26px;
}

html.msdev-v3 .ms3-product-layout > .row-fluid:first-child::before,
html.msdev-v3 .ms3-product-layout > .row-fluid:first-child::after {
  display: none !important;
  content: none !important;
}

html.msdev-v3 .ms3-product-layout > .row-fluid:first-child > [class*="span"] {
  float: none !important;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
}

html.msdev-v3 .produto .conteiner-imagem {
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 35%, rgba(122, 53, 255, .14), transparent 46%),
    var(--ms3-surface);
  border: 1px solid var(--ms3-border);
  border-radius: var(--ms3-radius-lg);
  box-shadow: var(--ms3-shadow-soft);
}

html.msdev-v3 .produto .conteiner-imagem > div {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

html.msdev-v3 .produto #imagemProduto {
  display: block;
  width: 100% !important;
  max-width: 650px;
  height: 100% !important;
  max-height: 650px;
  object-fit: contain;
  border-radius: 17px;
}

html.msdev-v3 .produto .produto-thumbs {
  margin-top: 12px;
  padding: 10px;
  background: var(--ms3-surface);
  border: 1px solid var(--ms3-border);
  border-radius: 14px;
}

html.msdev-v3 .produto .produto-thumbs .miniaturas li a {
  overflow: hidden;
  border: 1px solid var(--ms3-border) !important;
  border-radius: 10px;
}

html.msdev-v3 .produto .produto-thumbs .miniaturas li.flex-active-slide a,
html.msdev-v3 .produto .produto-thumbs .miniaturas li a:hover {
  border-color: var(--ms3-accent) !important;
}

html.msdev-v3 .produto .produto-compartilhar {
  margin-top: 12px;
}

html.msdev-v3 .produto .lista-favoritos {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  gap: 6px;
  color: #c9d2dc !important;
  background: var(--ms3-surface) !important;
  border: 1px solid var(--ms3-border) !important;
  border-radius: 10px;
}

html.msdev-v3 .produto .principal {
  position: sticky;
  top: calc(var(--ms3-header) + 20px);
  padding: 26px;
  color: var(--ms3-text);
  background:
    linear-gradient(180deg, rgba(19, 28, 40, .98), rgba(13, 20, 29, .98));
  border: 1px solid var(--ms3-border);
  border-radius: var(--ms3-radius-lg);
  box-shadow: var(--ms3-shadow-soft);
}

html.msdev-v3 .produto .nome-produto {
  margin: 0 0 13px !important;
  color: #fff !important;
  font-size: clamp(23px, 2.1vw, 34px) !important;
  font-weight: 880 !important;
  line-height: 1.16 !important;
  letter-spacing: -.045em;
}

html.msdev-v3 .produto .codigo-produto {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 15px;
  gap: 8px;
  color: #8793a1;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: 10px;
}

html.msdev-v3 .produto .codigo-produto .cor-secundaria,
html.msdev-v3 .produto .codigo-produto a {
  color: #aab4bf !important;
}

html.msdev-v3 .produto .acoes-produto {
  padding: 18px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 17px;
}

html.msdev-v3 .produto .preco-produto {
  margin-bottom: 17px;
}

html.msdev-v3 .produto .preco-promocional,
html.msdev-v3 .produto .preco-venda {
  color: #fff !important;
  font-size: clamp(30px, 3vw, 43px) !important;
  font-weight: 900 !important;
  letter-spacing: -.055em;
}

html.msdev-v3 .produto .desconto-a-vista {
  display: block;
  margin-top: 4px;
  color: #8793a0 !important;
  font-size: 11px;
}

html.msdev-v3 .produto .desconto-a-vista strong {
  color: var(--ms3-accent) !important;
  font-weight: 850;
}

html.msdev-v3 .produto .comprar {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: end;
  gap: 10px;
}

html.msdev-v3 .produto .qtde-adicionar-carrinho {
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  gap: 5px;
}

html.msdev-v3 .produto .qtde-carrinho-title {
  color: #7f8b98;
  font-size: 9px;
  font-weight: 700;
}

html.msdev-v3 .produto .qtde-carrinho {
  width: 100% !important;
  height: 49px !important;
  margin: 0 !important;
  color: #fff !important;
  background: #0b121a !important;
  border: 1px solid var(--ms3-border) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  text-align: center;
}

html.msdev-v3 .produto .botao-comprar.grande {
  display: flex !important;
  width: 100% !important;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 12px 18px !important;
  gap: 8px;
  color: #061000 !important;
  background: linear-gradient(135deg, var(--ms3-accent), #c7ff54) !important;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 32px rgba(166, 255, 0, .19) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

html.msdev-v3 .produto .botao-comprar.grande:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

html.msdev-v3 .produto .disponibilidade-produto {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: #8995a2 !important;
  font-size: 10px;
}

html.msdev-v3 .produto .disponibilidade-produto b {
  color: var(--ms3-accent) !important;
}

html.msdev-v3 .produto .parcelas-produto,
html.msdev-v3 .produto .principal > .cep {
  margin-top: 14px;
  padding: 15px;
  background: #0d141d;
  border: 1px solid var(--ms3-border) !important;
  border-radius: 14px;
}

html.msdev-v3 .produto .cep label {
  display: block;
  margin-bottom: 7px;
  color: #cbd4dc;
  font-size: 10px;
  font-weight: 750;
}

html.msdev-v3 .produto .cep .input-append {
  display: flex;
  width: 100%;
}

html.msdev-v3 .produto .cep .input-cep {
  width: 100% !important;
  height: 41px !important;
  margin: 0 !important;
  color: #fff !important;
  background: #0a1017 !important;
  border: 1px solid var(--ms3-border) !important;
  border-radius: 10px 0 0 10px !important;
  box-shadow: none !important;
}

html.msdev-v3 .produto .cep .btn {
  height: 41px;
  color: #061000 !important;
  background: var(--ms3-accent) !important;
  border: 0 !important;
  border-radius: 0 10px 10px 0 !important;
  font-weight: 850;
}

html.msdev-v3 .produto .abas-custom,
html.msdev-v3 .produto #descricao > .tab-pane,
html.msdev-v3 .produto .tab-content {
  color: #c4ced8;
  background: transparent !important;
  border: 0 !important;
}

html.msdev-v3 .produto .abas-custom {
  margin-top: 30px;
  padding: clamp(20px, 3vw, 38px);
  background: linear-gradient(180deg, rgba(17, 25, 36, .98), rgba(10, 16, 24, .98)) !important;
  border: 1px solid var(--ms3-border) !important;
  border-radius: var(--ms3-radius-lg);
  box-shadow: var(--ms3-shadow-soft);
}

html.msdev-v3 .produto #descricao {
  color: #c7d0d9 !important;
  font-size: 14px;
  line-height: 1.75;
}

html.msdev-v3 .produto #descricao p,
html.msdev-v3 .produto #descricao li {
  color: #bcc6d0 !important;
}

html.msdev-v3 .produto #descricao img {
  height: auto !important;
  margin: 14px auto;
  border-radius: 15px;
}

html.msdev-v3 .produto #descricao .titulo-com-fundo {
  margin: 30px 0 16px !important;
  padding: 14px 18px !important;
  color: #fff !important;
  background:
    linear-gradient(90deg, rgba(166, 255, 0, .12), rgba(122, 53, 255, .11), rgba(255, 255, 255, .025)) !important;
  border: 1px solid rgba(166, 255, 0, .13);
  border-radius: 13px;
  font-size: clamp(18px, 2vw, 25px) !important;
  text-align: left !important;
}

html.msdev-v3 .produto #descricao ul {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding: 0 !important;
}

html.msdev-v3 .produto #descricao li {
  position: relative;
  padding: 10px 12px 10px 38px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 10px;
  list-style: none !important;
}

html.msdev-v3 .produto #descricao li::before {
  content: "✓";
  position: absolute;
  top: 9px;
  left: 13px;
  color: var(--ms3-accent);
  font-weight: 900;
}

/* =========================================================
   CARRINHO
   ========================================================= */
html.msdev-v3 .ms3-cart-layout {
  max-width: 1180px;
  margin: 0 auto;
}

html.msdev-v3 .cabecalho-interno {
  margin-bottom: 20px;
}

html.msdev-v3 .cabecalho-interno h1 {
  color: #fff !important;
  font-size: clamp(25px, 2.6vw, 36px) !important;
  font-weight: 880 !important;
  letter-spacing: -.045em;
}

html.msdev-v3 .cabecalho-interno h1 small {
  display: block;
  margin-top: 7px;
  color: var(--ms3-muted) !important;
  font-size: 11px !important;
  font-weight: 500;
  letter-spacing: 0;
}

html.msdev-v3 .finalizar-compra > .caixa-sombreada,
html.msdev-v3 .resumo-compra.caixa-sombreada {
  overflow: hidden;
  padding: 0;
  background: var(--ms3-surface) !important;
  border: 1px solid var(--ms3-border) !important;
  border-radius: var(--ms3-radius-lg);
  box-shadow: var(--ms3-shadow-soft) !important;
}

html.msdev-v3 .tabela-carrinho {
  width: 100%;
  margin: 0 !important;
  color: #c9d2db;
  background: transparent !important;
  border: 0 !important;
  border-collapse: collapse;
}

html.msdev-v3 .tabela-carrinho thead,
html.msdev-v3 .tabela-carrinho thead tr,
html.msdev-v3 .tabela-carrinho thead th {
  color: #9ba7b4 !important;
  background: #0d141d !important;
  border-color: rgba(255, 255, 255, .07) !important;
}

html.msdev-v3 .tabela-carrinho th {
  padding: 14px 16px !important;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

html.msdev-v3 .tabela-carrinho td {
  padding: 16px !important;
  color: #cbd4dc !important;
  background: transparent !important;
  border-color: rgba(255, 255, 255, .065) !important;
  vertical-align: middle;
}

html.msdev-v3 .tabela-carrinho tr:hover td {
  background: rgba(255, 255, 255, .018) !important;
}

html.msdev-v3 .tabela-carrinho .produto-info,
html.msdev-v3 .tabela-carrinho .produto-info a {
  color: #eef3f7 !important;
  font-size: 12px;
  font-weight: 750;
}

html.msdev-v3 .tabela-carrinho .produto-info li,
html.msdev-v3 .tabela-carrinho .produto-info span {
  color: #7f8b98 !important;
  font-size: 9.5px;
}

html.msdev-v3 .tabela-carrinho .produto-info strong {
  color: #aab5c0;
}

html.msdev-v3 .tabela-carrinho .preco-promocional,
html.msdev-v3 .tabela-carrinho .subtotal strong,
html.msdev-v3 .tabela-carrinho .total strong,
html.msdev-v3 .tabela-carrinho .preco-carrinho-total {
  color: var(--ms3-accent) !important;
  font-size: 16px;
  font-weight: 880;
}

html.msdev-v3 .tabela-carrinho input,
html.msdev-v3 .tabela-carrinho select {
  color: #fff !important;
  background: #0a1119 !important;
  border: 1px solid var(--ms3-border) !important;
  border-radius: 9px !important;
  box-shadow: none !important;
}

html.msdev-v3 .tabela-carrinho .bg-dark td {
  background: #0c131c !important;
}

html.msdev-v3 .acao-editar::before,
html.msdev-v3 .acao-editar::after,
html.msdev-v3 .acao-editar .span12::before,
html.msdev-v3 .acao-editar .span12::after {
  display: none !important;
  content: none !important;
}

html.msdev-v3 .acao-editar {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  margin: 0 !important;
  padding: 16px !important;
  background: #0c131c;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

html.msdev-v3 .acao-editar .span12 {
  display: flex;
  width: 100% !important;
  justify-content: space-between;
  margin: 0 !important;
  gap: 10px;
}

html.msdev-v3 .botao,
html.msdev-v3 button.btn,
html.msdev-v3 a.btn {
  border-radius: 10px;
  text-shadow: none !important;
}

html.msdev-v3 .acao-editar .botao.principal,
html.msdev-v3 .finalizar-compra .botao.principal,
html.msdev-v3 .checkout-conteudo .botao.principal,
html.msdev-v3 .campos-pedido .botao.principal {
  color: #061000 !important;
  background: linear-gradient(135deg, var(--ms3-accent), #c7ff54) !important;
  border: 0 !important;
  box-shadow: 0 8px 24px rgba(166, 255, 0, .16) !important;
  font-weight: 850 !important;
}

html.msdev-v3 .acao-editar .botao.secundario,
html.msdev-v3 .finalizar-compra .botao.secundario {
  color: #ccd5dd !important;
  background: var(--ms3-surface-2) !important;
  border: 1px solid var(--ms3-border) !important;
}

/* CEP e cupom do carrinho */
html.msdev-v3 .finalizar-compra .accordion,
html.msdev-v3 .finalizar-compra .caixa-destaque,
html.msdev-v3 .finalizar-compra .cupom-codigo,
html.msdev-v3 .finalizar-compra .frete-calcular {
  color: #c6d0d9;
  background: #0e161f !important;
  border-color: var(--ms3-border) !important;
  border-radius: 12px;
}

html.msdev-v3 .finalizar-compra input[type="text"],
html.msdev-v3 .finalizar-compra input[type="tel"] {
  height: 42px;
  color: #fff !important;
  background: #091018 !important;
  border: 1px solid var(--ms3-border) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

/* =========================================================
   CHECKOUT
   ========================================================= */
html.msdev-v3 body.ms3-page-checkout {
  padding-left: 0;
}

html.msdev-v3 body.ms3-page-checkout .conteiner-principal {
  padding-top: var(--ms3-header);
}

html.msdev-v3 body.ms3-page-checkout #corpo .conteiner {
  width: min(calc(100% - 36px), 1220px) !important;
  padding-top: 30px;
}

html.msdev-v3 .ms3-checkout-layout {
  max-width: 1180px;
  margin: 0 auto;
}

html.msdev-v3 #login-content .identificacao {
  margin: 0 !important;
}

html.msdev-v3 #login-content .identificacao-inner {
  padding: clamp(20px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(166, 255, 0, .055), rgba(122, 53, 255, .045)),
    var(--ms3-surface);
  border: 1px solid var(--ms3-border);
  border-radius: var(--ms3-radius-lg);
  box-shadow: var(--ms3-shadow-soft);
}

html.msdev-v3 #login-content .identificacao-title {
  margin-bottom: 18px;
  color: #fff !important;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 850;
}

html.msdev-v3 #formularioLogin .control-group {
  display: flex;
  align-items: stretch;
  margin: 0;
  gap: 10px;
}

html.msdev-v3 #formularioLogin .email-box,
html.msdev-v3 #formularioLogin .senha-box {
  flex: 1;
}

html.msdev-v3 #formularioLogin input,
html.msdev-v3 #formularioCheckout input,
html.msdev-v3 #formularioCheckout select,
html.msdev-v3 #formularioCheckout textarea {
  width: 100% !important;
  min-height: 43px;
  margin: 0 !important;
  color: #f4f7fa !important;
  background: #0b121a !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  transition: border-color var(--ms3-ease), box-shadow var(--ms3-ease), background var(--ms3-ease);
}

html.msdev-v3 #formularioLogin input:focus,
html.msdev-v3 #formularioCheckout input:focus,
html.msdev-v3 #formularioCheckout select:focus,
html.msdev-v3 #formularioCheckout textarea:focus {
  background: #0e1721 !important;
  border-color: rgba(166, 255, 0, .4) !important;
  box-shadow: 0 0 0 4px rgba(166, 255, 0, .055) !important;
}

html.msdev-v3 #formularioLogin .submit-email {
  display: flex;
  min-width: 150px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
}

html.msdev-v3 .checkout-alerta-seguro {
  position: relative;
  margin: 15px 0 22px !important;
  padding: 18px 66px 18px 20px;
  overflow: hidden;
  background: rgba(166, 255, 0, .045) !important;
  border: 1px solid rgba(166, 255, 0, .14) !important;
  border-radius: 16px;
}

html.msdev-v3 .checkout-alerta-seguro-tit {
  margin-bottom: 10px;
  color: #e9f2f7 !important;
  font-size: 12px;
  font-weight: 800;
}

html.msdev-v3 .checkout-alerta-seguro-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 6px 15px;
}

html.msdev-v3 .checkout-alerta-seguro-item {
  color: #9eabb7;
  font-size: 9.5px;
  list-style: none;
}

html.msdev-v3 .checkout-alerta-seguro-item i {
  color: var(--ms3-accent);
}

html.msdev-v3 .checkout-alerta-seguro-icon {
  position: absolute;
  right: 22px;
  bottom: 19px;
  color: rgba(166, 255, 0, .28);
  font-size: 35px;
}

html.msdev-v3 #formularioCheckout > .row-fluid:not(.hide) {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

html.msdev-v3 #formularioCheckout > .row-fluid:not(.hide)::before,
html.msdev-v3 #formularioCheckout > .row-fluid:not(.hide)::after {
  display: none !important;
  content: none !important;
}

html.msdev-v3 #formularioCheckout > .row-fluid:not(.hide) > [class*="span"] {
  float: none !important;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
}

html.msdev-v3 #formularioCheckout .caixa-sombreada,
html.msdev-v3 #formularioCheckout fieldset,
html.msdev-v3 #formularioCheckout > .row-fluid > [class*="span"] > div {
  color: #c4ced7;
  background: var(--ms3-surface) !important;
  border-color: var(--ms3-border) !important;
  border-radius: 17px;
  box-shadow: none !important;
}

html.msdev-v3 #formularioCheckout fieldset {
  min-width: 0;
  margin: 0;
  padding: 17px;
  border: 1px solid var(--ms3-border);
}

html.msdev-v3 #formularioCheckout legend {
  display: flex;
  width: 100%;
  align-items: center;
  margin: 0 0 15px;
  padding: 0 0 12px;
  gap: 7px;
  color: #fff !important;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: 13px;
  font-weight: 850;
}

html.msdev-v3 #formularioCheckout .control-group {
  margin-bottom: 12px;
}

html.msdev-v3 #formularioCheckout label {
  margin-bottom: 5px;
  color: #9da9b5 !important;
  font-size: 9.5px;
  font-weight: 700;
}

html.msdev-v3 #formularioCheckout .help-block {
  color: var(--ms3-danger) !important;
  font-size: 8.5px;
}

html.msdev-v3 #formularioCheckout .control-group.error input,
html.msdev-v3 #formularioCheckout .control-group.error select {
  border-color: rgba(255, 84, 119, .66) !important;
}

html.msdev-v3 #formas-envio-wrapper,
html.msdev-v3 #formas-pagamento-wrapper,
html.msdev-v3 .formas.envio,
html.msdev-v3 .formas.pagamento {
  color: #c7d0d9;
  background: #0b121a !important;
  border-color: var(--ms3-border) !important;
  border-radius: 12px;
}

html.msdev-v3 .formas .accordion-group,
html.msdev-v3 .formas .accordion-heading,
html.msdev-v3 .formas .accordion-inner {
  color: #c7d0d9;
  background: transparent !important;
  border-color: rgba(255, 255, 255, .06) !important;
}

html.msdev-v3 .alert {
  color: #dce5ed;
  background: #131c27;
  border: 1px solid var(--ms3-border);
  border-radius: 11px;
  text-shadow: none;
}

html.msdev-v3 .alert-error,
html.msdev-v3 .alert-danger,
html.msdev-v3 .alert-errors {
  color: #ffd5de;
  background: rgba(255, 84, 119, .09) !important;
  border-color: rgba(255, 84, 119, .22) !important;
}

html.msdev-v3 .alert-success {
  color: #dfffc0;
  background: rgba(166, 255, 0, .07) !important;
  border-color: rgba(166, 255, 0, .2) !important;
}

/* =========================================================
   RODAPÉ
   ========================================================= */
html.msdev-v3 #rodape {
  color: #9aa6b2;
  background: #070b10 !important;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

html.msdev-v3 #rodape .institucional,
html.msdev-v3 #rodape .pagamento-selos,
html.msdev-v3 #rodape .links-rodape,
html.msdev-v3 #rodape .conteiner {
  color: #9aa6b2;
  background: transparent !important;
}

html.msdev-v3 #rodape .titulo,
html.msdev-v3 #rodape h4,
html.msdev-v3 #rodape h5,
html.msdev-v3 #rodape h6 {
  color: #e5ebf0 !important;
}

html.msdev-v3 #rodape a {
  color: #8f9ba7 !important;
}

html.msdev-v3 #rodape a:hover {
  color: var(--ms3-accent) !important;
}

/* =========================================================
   VOLTAR AO TOPO
   ========================================================= */
.ms3-backtop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9995;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: #061000;
  background: var(--ms3-accent);
  border: 0;
  border-radius: 13px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .32), 0 0 24px rgba(166, 255, 0, .18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--ms3-ease), transform var(--ms3-ease), filter var(--ms3-ease);
}

.ms3-backtop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ms3-backtop:hover {
  filter: brightness(1.07);
}

.ms3-backtop svg {
  width: 18px;
  height: 18px;
}

/* =========================================================
   RESPONSIVIDADE
   ========================================================= */
@media (max-width: 1280px) {
  .ms3-action--orders .ms3-action__copy,
  .ms3-action--account .ms3-action__copy {
    display: none;
  }

  .ms3-action {
    padding: 0 12px;
  }

}

@media (max-width: 1050px) and (min-width: 992px) {
  :root {
    --ms3-sidebar: 190px;
  }

  .ms3-actions__cta span {
    display: none;
  }

  .ms3-actions__cta {
    width: 43px;
    justify-content: center;
    padding: 0;
  }
}

@media (max-width: 991.98px) {
  :root {
    --ms3-header: 112px;
  }

  html.msdev-v3 body.ms3-has-sidebar {
    padding-left: 0;
  }

  html.msdev-v3 .conteiner-principal {
    padding-top: var(--ms3-header);
  }

  .ms3-sidebar {
    width: min(84vw, 290px);
    transform: translateX(-105%);
    transition: transform 220ms cubic-bezier(.2, .8, .2, 1);
  }

  body.ms3-drawer-open .ms3-sidebar {
    transform: translateX(0);
  }

  body.ms3-drawer-open {
    overflow: hidden;
  }

  body.ms3-drawer-open .ms3-drawer-backdrop {
    display: block;
    opacity: 1;
  }

  .ms3-appbar {
    left: 0;
    height: var(--ms3-header);
  }

  .ms3-appbar__inner {
    display: grid;
    width: calc(100% - 24px);
    grid-template-columns: 42px minmax(0, 1fr) auto;
    grid-template-rows: 54px 46px;
    align-content: center;
    gap: 0 10px;
  }

  .ms3-menu-button {
    display: flex;
    grid-column: 1;
    grid-row: 1;
  }

  .ms3-appbar .ms3-brand {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .ms3-appbar .ms3-brand__image {
    width: 106px;
    max-width: 106px;
  }

  .ms3-search {
    width: 100%;
    max-width: none;
    height: 42px;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .ms3-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .ms3-actions__cta,
  .ms3-action--orders,
  .ms3-action--account {
    display: none;
  }

  .ms3-action--cart {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    background: var(--ms3-surface);
    border-color: var(--ms3-border);
  }

  .ms3-action--cart .ms3-action__copy {
    display: none;
  }

  html.msdev-v3 .conteiner,
  html.msdev-v3 .container,
  html.msdev-v3 .secao-banners .conteiner {
    width: calc(100% - 24px) !important;
  }

  html.msdev-v3 .secao-banners {
    padding-top: 16px;
  }

  html.msdev-v3 .secao-banners .slides img {
    min-height: 220px;
    aspect-ratio: 16 / 8;
  }

  html.msdev-v3 .listagem > ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  html.msdev-v3 .listagem > ul > .listagem-linha > ul {
    gap: 12px;
  }

  html.msdev-v3 .listagem-item {
    min-height: 0;
  }

  html.msdev-v3 .ms3-product-layout > .row-fluid:first-child {
    grid-template-columns: 1fr;
  }

  html.msdev-v3 .produto .principal {
    position: relative;
    top: auto;
  }

  html.msdev-v3 #formularioCheckout > .row-fluid:not(.hide) {
    grid-template-columns: 1fr;
  }

  html.msdev-v3 .checkout-alerta-seguro-list {
    grid-template-columns: 1fr;
  }

  .ms3-checkoutbar__secure small,
  .ms3-checkoutbar__back span {
    display: none;
  }
}

@media (max-width: 600px) {
  html.msdev-v3 #corpo .conteiner {
    padding-top: 22px;
    padding-bottom: 48px;
  }

  html.msdev-v3 .secao-banners .flexslider {
    border-radius: 17px;
  }

  html.msdev-v3 .secao-banners .slides img {
    min-height: 176px;
    max-height: 250px;
    aspect-ratio: 16 / 9;
  }

  html.msdev-v3 .secao-banners .info-banner {
    bottom: 13px;
    left: 13px;
    padding: 6px 10px;
    font-size: 9px;
  }

  html.msdev-v3 .listagem .titulo-categoria {
    min-height: 40px;
    margin-top: 30px !important;
    margin-bottom: 12px !important;
  }

  .ms3-section-icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  html.msdev-v3 .listagem .titulo-categoria strong {
    font-size: 17px;
  }

  html.msdev-v3 .listagem > ul,
  html.msdev-v3 .listagem > ul > .listagem-linha > ul {
    gap: 9px;
  }

  html.msdev-v3 .listagem-item {
    border-radius: 13px;
  }

  html.msdev-v3 .listagem-item:hover {
    transform: none;
  }

  html.msdev-v3 .listagem-item .imagem-produto {
    padding: 7px;
    aspect-ratio: 1 / 1.18;
  }

  html.msdev-v3 .listagem-item .info-produto {
    min-height: 116px;
    padding: 11px 10px 8px !important;
  }

  html.msdev-v3 .listagem-item .nome-produto {
    min-height: 34px;
    font-size: 10.5px;
    line-height: 1.4;
  }

  html.msdev-v3 .listagem-item .preco-promocional,
  html.msdev-v3 .listagem-item .preco-venda,
  html.msdev-v3 .listagem-item .preco-produto .titulo {
    font-size: 14px !important;
  }

  html.msdev-v3 .listagem-item .desconto-a-vista {
    font-size: 8px;
  }

  html.msdev-v3 .listagem-item .acoes-produto {
    display: none !important;
  }

  html.msdev-v3 .listagem-item .acoes-produto-responsiva {
    display: block !important;
  }

  html.msdev-v3 .listagem-item .acoes-produto,
  html.msdev-v3 .listagem-item .acoes-produto-responsiva {
    padding: 0 10px 10px !important;
  }

  html.msdev-v3 .listagem-item .acoes-produto .botao,
  html.msdev-v3 .listagem-item .acoes-produto-responsiva .tag-comprar {
    min-height: 35px;
    padding: 8px 7px !important;
    font-size: 9.5px !important;
  }

  html.msdev-v3 .produto .conteiner-imagem {
    min-height: 330px;
    padding: 14px;
    border-radius: 17px;
  }

  html.msdev-v3 .produto .principal,
  html.msdev-v3 .produto .abas-custom {
    padding: 18px;
    border-radius: 17px;
  }

  html.msdev-v3 .produto .nome-produto {
    font-size: 24px !important;
  }

  html.msdev-v3 .produto .comprar {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  html.msdev-v3 .produto #descricao .titulo-com-fundo {
    font-size: 17px !important;
  }

  html.msdev-v3 .tabela-carrinho thead {
    display: none;
  }

  html.msdev-v3 .tabela-carrinho,
  html.msdev-v3 .tabela-carrinho tbody,
  html.msdev-v3 .tabela-carrinho tr,
  html.msdev-v3 .tabela-carrinho td {
    display: block;
    width: 100% !important;
  }

  html.msdev-v3 .tabela-carrinho tr {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  html.msdev-v3 .tabela-carrinho td {
    padding: 8px !important;
    border: 0 !important;
  }

  html.msdev-v3 .acao-editar .span12 {
    flex-direction: column-reverse;
  }

  html.msdev-v3 .acao-editar .botao {
    width: 100%;
    text-align: center;
  }

  html.msdev-v3 #formularioLogin .control-group {
    flex-direction: column;
  }

  html.msdev-v3 #formularioLogin .submit-email {
    width: 100%;
    min-height: 43px;
  }

  html.msdev-v3 .checkout-alerta-seguro {
    padding: 17px;
  }

  html.msdev-v3 .checkout-alerta-seguro-icon {
    display: none;
  }

  .ms3-checkoutbar__inner {
    width: calc(100% - 24px);
    gap: 8px;
  }

  .ms3-checkoutbar .ms3-brand__image {
    width: 92px;
  }

  .ms3-checkoutbar__secure > span:last-child {
    display: none;
  }

  .ms3-checkoutbar__back {
    font-size: 0;
  }

  .ms3-checkoutbar__back svg {
    width: 20px;
    height: 20px;
  }

  .ms3-backtop {
    right: 13px;
    bottom: 13px;
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.msdev-v3 *,
  html.msdev-v3 *::before,
  html.msdev-v3 *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Idiomas movidos para o rodapé do menu lateral */
html.msdev-v3 .ms3-language {
  position: static !important;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 3px !important;
  padding: 7px !important;
  gap: 5px;
  background: rgba(255, 255, 255, .035) !important;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  box-shadow: none !important;
  transform: none !important;
}

html.msdev-v3 .ms3-language img {
  width: 19px !important;
  height: auto !important;
  margin: 0 !important;
  opacity: .75;
  transition: opacity var(--ms3-ease), transform var(--ms3-ease);
}

html.msdev-v3 .ms3-language img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Ajustes finais do carrinho e do rodapé nativo */
html.msdev-v3 .tabela-carrinho td.conteiner-imagem {
  width: 150px !important;
  max-width: 150px !important;
}

html.msdev-v3 .tabela-carrinho td.conteiner-imagem .imagem {
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  overflow: hidden;
  background: #0a1119;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
}

html.msdev-v3 .tabela-carrinho td.conteiner-imagem .imagem img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

html.msdev-v3 .tabela-carrinho .quantidade {
  display: flex;
  max-width: 230px;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

html.msdev-v3 .tabela-carrinho .quantidade input.input-mini {
  width: 58px !important;
  height: 38px !important;
  text-align: center;
}

html.msdev-v3 .tabela-carrinho .atualizar-quantidade {
  width: auto !important;
  margin: 0 !important;
  padding: 8px 11px !important;
  font-size: 9px !important;
}

html.msdev-v3 #rodape > div[style*="background-color"] {
  color: #7f8b97 !important;
  background: #070b10 !important;
  border-top-color: rgba(255, 255, 255, .07) !important;
}

html.msdev-v3 #rodape > div[style*="background-color"] p {
  color: #7f8b97 !important;
}

html.msdev-v3 #rodape a[title*="Loja Integrada"] img {
  width: auto !important;
  max-width: 160px !important;
  height: auto !important;
  max-height: 24px !important;
  object-fit: contain !important;
}

@media (max-width: 600px) {
  html.msdev-v3 .tabela-carrinho td.conteiner-imagem {
    width: 100% !important;
    max-width: none !important;
  }

  html.msdev-v3 .tabela-carrinho td.conteiner-imagem .imagem {
    width: 100%;
    height: 190px;
  }
}
