/*
 * Design tokens compartilhados entre site público e painel.
 * Bootstrap 5 continua responsável por grid/utilitários; estes tokens cuidam da identidade visual.
 */
:root {
  --ga-color-primary: #073673;
  --ga-color-primary-strong: #0d4fa4;
  --ga-color-accent: #ff7a00;
  --ga-color-success: #22c55e;
  --ga-color-text: #0f172a;
  --ga-color-muted: #64748b;
  --ga-color-surface: #ffffff;
  --ga-color-surface-soft: #f5f8fc;
  --ga-color-border: #e5e7eb;
  --ga-radius-sm: .75rem;
  --ga-radius-md: 1rem;
  --ga-radius-lg: 1.25rem;
  --ga-shadow-sm: 0 8px 22px rgba(15, 23, 42, .05);
  --ga-shadow-md: 0 15px 45px rgba(15, 23, 42, .08);
  --ga-transition: 180ms ease;
  --ga-font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
:root {
  --primary: var(--ga-color-primary);
  --primary-2: var(--ga-color-primary-strong);
  --accent: var(--ga-color-accent);
  --whatsapp: var(--ga-color-success);
  --dark: #061a35;
  --muted: var(--ga-color-muted);
  --soft: var(--ga-color-surface-soft);
  --border: var(--ga-color-border);
  --radius: var(--ga-radius-lg);
}
* {
  box-sizing: border-box;
}
body {
  font-family: var(--ga-font-sans);
  color: #0f172a;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button, a, input, select, textarea {
  transition-duration: var(--ga-transition);
}
:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary) 70%, white);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  z-index: 9999;
  background: #fff;
  color: #111;
  padding: .6rem .9rem;
  border-radius: .5rem;
}
.topbar {
  background: var(--primary);
  color: #fff;
}
.topbar a {
  color: rgba(255,255,255,.85);
}
.topbar a:hover {
  color: #fff;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg,var(--primary),var(--primary-2));
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: 0 10px 30px rgba(7,54,115,.18);
}
.brand-text {
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.03em;
}
.navbar .container {
  gap: .75rem;
}
.navbar .navbar-nav {
  gap: clamp(.15rem,.45vw,.55rem);
}
.navbar .nav-link {
  color: #1e293b;
  font-size: clamp(.78rem,.78vw,.95rem);
  font-weight: 750;
  line-height: 1.15;
  max-width: 126px;
  overflow-wrap: normal;
  padding-inline: clamp(.35rem,.55vw,.75rem);
  text-align: center;
}
.navbar .nav-link:hover {
  color: var(--primary);
}
.btn {
  border-radius: 999px;
  font-weight: 700;
  padding-inline: 1.15rem;
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-2);
  border-color: var(--primary-2);
}
.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: #e86900;
  border-color: #e86900;
  color: #fff;
}
.btn-whatsapp {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.section {
  padding: 4.5rem 0;
}
.section-soft {
  background: var(--soft);
}
.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.hero {
  background: radial-gradient(circle at 15% 20%,rgba(255,122,0,.25),transparent 24%),linear-gradient(135deg,#052c62 0%,#074a9a 55%,#0b66c3 100%);
  color: #fff;
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(2.3rem,6vw,4.7rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .98;
}
.hero p {
  color: rgba(255,255,255,.84);
  font-size: 1.12rem;
}
.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.hero-product {
  background: #fff;
  color: #0f172a;
  border-radius: 1.5rem;
  padding: 1rem;
  transform: rotate(-2deg);
}
.hero-product:nth-child(2) {
  transform: rotate(2deg);
}
.product-thumb,.category-icon {
  background: linear-gradient(135deg,#eaf2ff,#fff4e8);
  display: grid;
  place-items: center;
  color: var(--primary);
}
.product-thumb {
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-card,.product-card,.benefit-card,.testimonial-card,.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 15px 45px rgba(15,23,42,.06);
  transition: transform .2s ease,box-shadow .2s ease;
}
.category-card:hover,.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(15,23,42,.1);
}
.category-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 1.7rem;
}
.product-card .price {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
}
.badge-soft {
  color: var(--primary);
  background: #e8f1ff;
  border: 1px solid #cfe1ff;
}
.cta-band {
  background: linear-gradient(135deg,var(--primary),#021a3a);
  color: #fff;
  border-radius: 2rem;
  overflow: hidden;
}
.service-pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: .85rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  color: #1e293b;
  box-shadow: 0 8px 22px rgba(15,23,42,.05);
}
.product-gallery-main {
  border-radius: 1.5rem;
  min-height: 420px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,#eaf2ff,#fff4e8);
  color: var(--primary);
}
.option-box {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
}
.total-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.footer {
  background: var(--dark);
  color: #fff;
}
.footer a {
  color: rgba(255,255,255,.78);
}
.footer a:hover {
  color: #fff;
}
.footer-links li {
  margin-bottom: .6rem;
}
.footer-brand {
  background: rgba(255,255,255,.12);
}
.map-placeholder {
  height: 120px;
  border-radius: 1rem;
  background: linear-gradient(135deg,rgba(255,255,255,.10),rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.55);
}
.site-chat-toggle {
  position: fixed;
  right: max(1rem,env(safe-area-inset-right));
  bottom: max(1rem,env(safe-area-inset-bottom));
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: .65rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg,#073673,var(--chat-color,#0d6efd));
  color: #fff;
  padding: .72rem 1rem .72rem .72rem;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(7,54,115,.34);
  transition: transform .18s ease,box-shadow .18s ease;
  animation: chatPulse 2.8s ease-in-out infinite;
  max-width: calc(100vw - 2rem);
}
.site-chat-toggle.chat-pos-left {
  left: 1.1rem;
  right: auto;
}
.site-chat-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(7,54,115,.42);
}
.site-chat-toggle img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.8);
}
.site-chat-toggle i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  font-size: 1.2rem;
}
@keyframes chatPulse {
  0%,100% {
    box-shadow: 0 18px 42px rgba(7,54,115,.34);
  }
  50% {
    box-shadow: 0 18px 42px rgba(13,110,253,.55);
  }
}
.site-chat-box {
  position: fixed;
  right: max(1rem,env(safe-area-inset-right));
  bottom: calc(max(1rem,env(safe-area-inset-bottom)) + 4.65rem);
  z-index: 1002;
  width: min(380px,calc(100vw - 2rem));
  max-height: min(620px,calc(100dvh - 6.5rem));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(15,23,42,.24);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.site-chat-box[hidden] {
  display: none;
}
.site-chat-box.chat-pos-left {
  left: 1.1rem;
  right: auto;
}
.site-chat-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: linear-gradient(135deg,#073673,var(--chat-color,#0d6efd));
  color: #fff;
  padding: 1rem;
}
.site-chat-head img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
}
.site-chat-head small {
  display: block;
  color: rgba(255,255,255,.74);
}
.site-chat-head button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}
.site-chat-body {
  padding: 1rem;
  min-height: 0;
  overflow: auto;
}
.site-chat-body h3 {
  font-size: 1rem;
  font-weight: 900;
  margin: 0 0 .35rem;
}
.site-chat-conversation {
  display: grid;
  gap: .8rem;
}
.site-chat-conversation[hidden] {
  display: none;
}
.site-chat-new {
  justify-self: end;
  border: 0;
  background: transparent;
  color: var(--chat-color,#0d6efd);
  font-size: .78rem;
  font-weight: 900;
  padding: 0;
}
.site-chat-new:hover {
  text-decoration: underline;
}
.site-chat-online {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #f8fafc;
}
.site-chat-online img,.site-chat-online span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  object-fit: cover;
  background: var(--chat-color,#0d6efd);
  color: #fff;
  font-weight: 900;
  border: 2px solid #fff;
  margin-left: -.55rem;
}
.site-chat-online img:first-child,.site-chat-online span:first-child {
  margin-left: 0;
}
.site-chat-online small {
  margin-left: .25rem;
  color: #64748b;
  font-weight: 800;
}
.site-chat-attendants {
  display: grid;
  gap: .45rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: #f8fafc;
  padding: .65rem;
  max-height: 190px;
  overflow: auto;
}
.site-chat-attendants>strong {
  font-size: .82rem;
  color: #334155;
}
.site-chat-attendant {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem;
  border: 1px solid transparent;
  border-radius: .85rem;
  background: #fff;
  cursor: pointer;
  transition: .18s ease;
}
.site-chat-attendant:has(input:checked) {
  border-color: var(--chat-color,#0d6efd);
  box-shadow: 0 8px 20px rgba(13,110,253,.10);
}
.site-chat-attendant input {
  accent-color: var(--chat-color,#0d6efd);
}
.site-chat-attendant img,.site-chat-attendant span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  display: grid;
  place-items: center;
  background: var(--chat-color,#0d6efd);
  color: #fff;
  font-weight: 900;
  flex: 0 0 auto;
}
.site-chat-attendant em {
  display: grid;
  font-style: normal;
  line-height: 1.1;
}
.site-chat-attendant b {
  font-size: .88rem;
}
.site-chat-attendant small {
  color: #64748b;
  font-size: .75rem;
}
.site-chat-thread {
  height: min(300px,42dvh);
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: .25rem .15rem .25rem 0;
}
.site-chat-message {
  max-width: 86%;
  border-radius: 1rem;
  padding: .65rem .8rem;
  font-size: .9rem;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}
.site-chat-message img {
  display: block;
  max-width: 180px;
  max-height: 150px;
  border-radius: .75rem;
  margin-top: .45rem;
  object-fit: cover;
}
.site-chat-message small {
  display: block;
  margin-top: .25rem;
  opacity: .65;
  font-size: .72rem;
}
.site-chat-message.is-client {
  align-self: flex-end;
  background: linear-gradient(135deg,#073673,var(--chat-color,#0d6efd));
  color: #fff;
  border-bottom-right-radius: .28rem;
}
.site-chat-message.is-admin {
  align-self: flex-start;
  background: #f1f5f9;
  color: #0f172a;
  border-bottom-left-radius: .28rem;
}
.site-chat-reply {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto auto;
  gap: .5rem;
  align-items: end;
  border-top: 1px solid var(--border);
  padding-top: .75rem;
}
.site-chat-reply textarea {
  resize: none;
}
.site-chat-reply .btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
}
.site-chat-reply:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.upload-drop {
  border: 2px dashed #cbd5e1;
  background: #f8fafc;
  border-radius: 1.25rem;
  padding: 1.5rem;
  text-align: center;
}
.upload-drop.drag {
  border-color: var(--primary);
  background: #eef6ff;
}
.breadcrumb {
  --bs-breadcrumb-divider-color: #94a3b8;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  background: var(--whatsapp);
}
@media (max-width:767px) {
  .section {
    padding: 3rem 0;
  }
  .hero {
    text-align: center;
  }
  .site-chat-toggle span {
    display: none;
  }
  .site-chat-toggle {
    width: 60px;
    height: 60px;
    justify-content: center;
    padding: .45rem;
  }
  .site-chat-box {
    left: 1rem !important;
    right: 1rem !important;
    bottom: 5.15rem;
    width: auto;
    max-height: calc(100dvh - 6.25rem);
    border-radius: 18px;
  }
  .site-chat-thread {
    height: min(280px,38dvh);
  }
  .product-gallery-main {
    min-height: 280px;
  }
}
@media (max-width:420px) {
  .site-chat-body {
    padding: .85rem;
  }
  .site-chat-reply {
    grid-template-columns: 1fr auto auto;
  }
  .site-chat-attendant {
    gap: .45rem;
  }
}
.site-brand {
  min-width: 0;
}
.site-logo-img {
  max-width: 172px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.site-logo-footer {
  max-width: 180px;
  max-height: 64px;
  filter: brightness(0) invert(1);
}
.footer-brand-wrap strong {
  line-height: 1.15;
}
@media (max-width:575px) {
  .site-logo-img {
    max-width: 132px;
    max-height: 48px;
  }
  .brand-text {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.pickup-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 15px 45px rgba(15,23,42,.06);
  transition: transform .2s ease,box-shadow .2s ease;
}
.pickup-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(15,23,42,.10);
}
.pickup-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,#eaf2ff,#fff4e8);
  color: var(--primary);
  font-size: 1.5rem;
}
.pickup-meta {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: .85rem 1rem;
  color: #334155;
  font-size: .92rem;
}
.nav-pills .nav-link {
  border-radius: 999px;
  font-weight: 700;
  color: #1e293b;
}
.nav-pills .nav-link.active {
  background: var(--primary);
  color: #fff;
}
.fw-black {
  font-weight: 900;
  letter-spacing: -.035em;
}
.product-config-hero {
  background: #e9e9e9;
  border-top: 6px solid var(--primary);
}
.product-config-section {
  background: #e9e9e9;
}
.config-card {
  background: #f7f7f7;
  border: 1px solid #d9d9d9;
  border-radius: .35rem;
  box-shadow: 0 12px 35px rgba(15,23,42,.05);
}
.config-label {
  font-size: 1rem;
  color: #4b5563;
  font-weight: 700;
}
.config-select {
  background-color: #ddd;
  border: 1px solid #c8c8c8;
  color: #1f2937;
  min-height: 42px;
  border-radius: .35rem;
}
.config-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .2rem rgba(7,54,115,.15);
}
.config-help {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #0b6fae;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 900;
  line-height: 1;
  cursor: help;
}
.quantity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1rem;
}
.quantity-option {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: .45rem;
  cursor: pointer;
  font-size: .92rem;
  color: #334155;
  min-height: 34px;
}
.quantity-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.quantity-check {
  width: 18px;
  height: 18px;
  border: 2px solid #ef6b73;
  border-radius: 999px;
  display: inline-block;
  position: relative;
  background: #fff;
}
.quantity-option input:checked + .quantity-check {
  border-color: #0b5fa5;
}
.quantity-option input:checked + .quantity-check::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #ef233c;
  border-radius: 999px;
}
.quantity-option.is-active .quantity-name,.quantity-option:has(input:checked) .quantity-name {
  font-weight: 800;
  color: #0f172a;
}
.quantity-line {
  height: 1px;
  background: #cbd5e1;
  min-width: 22px;
}
.quantity-option strong {
  color: #416383;
  white-space: nowrap;
  font-size: .92rem;
}
.addon-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .65rem;
  align-items: center;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: .55rem;
  padding: .7rem .85rem;
  font-size: .92rem;
  color: #263443;
  cursor: pointer;
}
.addon-option strong {
  color: #334155;
  white-space: nowrap;
  font-size: .9rem;
  text-align: right;
}
.addon-option .form-check-input {
  margin: 0;
  width: 1.15rem;
  height: 1.15rem;
}
.addon-option.is-disabled {
  opacity: .55;
  pointer-events: none;
}
.addon-rule-note {
  grid-column: 2 / -1;
  margin-top: -.25rem;
  color: #64748b;
  font-weight: 750;
  font-size: .76rem;
}
.service-banner {
  background: #dedede;
}
.product-preview-box {
  min-height: 295px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: .25rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.product-preview-box img {
  width: 100%;
  height: 100%;
  max-height: 295px;
  object-fit: contain;
  padding: 1rem;
}
.price-preview {
  color: #dc111e;
  font-size: clamp(1.85rem,3.5vw,2.65rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.qty-step {
  width: 42px;
  height: 42px;
  border-radius: .35rem;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 0;
}
.order-count {
  width: 58px;
  max-width: 58px;
  height: 42px;
  border-radius: .35rem;
  font-weight: 800;
}
.total-resumo {
  background: #fff;
  border: 1px solid #d8e1eb;
}
.related-products-section {
  border-top: 1px solid #d7d7d7;
  padding-top: 2rem;
}
.section-kicker {
  display: block;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
  margin-bottom: .25rem;
}
.related-products-controls {
  display: flex;
  gap: .5rem;
}
.related-products-controls .btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
}
.related-product-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: .65rem;
  padding: .85rem;
  color: #0f172a;
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
  transition: transform .16s ease,box-shadow .16s ease,border-color .16s ease;
}
.related-product-card:hover {
  transform: translateY(-3px);
  border-color: #9ec5fe;
  box-shadow: 0 18px 42px rgba(15,23,42,.12);
}
.related-product-image {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  background: #f1f1f1;
  border-radius: .35rem;
  overflow: hidden;
  color: var(--primary);
  font-size: 2rem;
}
.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .35rem;
}
.related-product-card small {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .72rem;
  margin-top: .25rem;
}
.related-product-card strong {
  font-size: .95rem;
  line-height: 1.2;
  min-height: 2.3em;
}
.related-product-card span {
  color: #475569;
  font-size: .86rem;
}
.related-product-card b {
  color: #dc111e;
  font-size: 1.3rem;
  line-height: 1;
}
@media (max-width:1399px) {
  .quantity-grid {
    grid-template-columns: 1fr;
  }
  .quantity-option {
    grid-template-columns: auto auto minmax(0,1fr) auto;
  }
  .quantity-name {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}
@media (max-width:991px) {
  .quantity-grid {
    grid-template-columns: 1fr;
  }
  .config-card.sticky-lg-top {
    position: static !important;
  }
}
@media (max-width:575px) {
  .product-config-hero .breadcrumb {
    font-size: .78rem;
  }
  .config-card {
    padding: 1rem !important;
  }
  .quantity-option {
    grid-template-columns: auto auto 1fr;
  }
  .quantity-option strong {
    grid-column: 2 / -1;
  }
  .addon-option {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
  .addon-option strong {
    grid-column: 2 / -1;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .price-preview {
    font-size: clamp(1.7rem,12vw,2.25rem);
  }
  .total-resumo strong {
    overflow-wrap: anywhere;
  }
}
.small-preview {
  min-height: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.small-preview img {
  max-height: 110px;
  object-fit: contain;
}
.option-card {
  display: block;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 1rem;
  padding: 1rem;
  background: #fff;
  cursor: pointer;
  transition: .2s;
}
.option-card:hover {
  border-color: #0f4c81;
  box-shadow: 0 12px 32px rgba(15,23,42,.08);
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}
.compact-upload {
  padding: 1rem;
  text-align: center;
}
.addon-option.is-active {
  border-color: #0f4c81;
  background: #f8fbff;
}
.quantity-option.is-disabled {
  opacity: .5;
  pointer-events: none;
}
.checkout-badge {
  font-size: .75rem;
  border-radius: 999px;
  padding: .25rem .55rem;
}
.payment-status-confirmado_admin,.production-status-pago {
  background: #dcfce7;
  color: #166534;
}
.payment-status-aguardando_pix,.production-status-aguardando_pagamento {
  background: #fef3c7;
  color: #92400e;
}
.home-market-hero,.home-store-section,.category-page {
  background: #edf3f1;
}
.home-market-hero {
  padding: 0;
  overflow: hidden;
}
.home-market-hero>.container {
  max-width: 100%;
  padding-inline: 0;
}
.home-hero-carousel {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.home-hero-carousel .carousel-inner,.home-hero-carousel .carousel-item {
  min-height: clamp(280px,26.04vw,500px);
}
.home-hero-banner {
  position: relative;
  min-height: clamp(280px,26.04vw,500px);
  aspect-ratio: 1920 / 500;
  border-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  align-items: center;
  padding: clamp(1.4rem,2.2vw,2.4rem) max(1.2rem,calc((100vw - 1120px) / 2));
  color: #fff;
  background: #05245a;
  isolation: isolate;
}
.home-hero-picture,.home-hero-media,.home-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-hero-picture {
  z-index: -3;
  display: block;
  background: #05245a;
}
.home-hero-media {
  display: block;
  object-fit: contain;
  object-position: center;
}
.home-hero-shade {
  z-index: -2;
  background: linear-gradient(90deg,rgba(1,18,50,.84) 0%,rgba(1,18,50,.62) 34%,rgba(1,18,50,.16) 70%,rgba(1,18,50,.04) 100%);
  pointer-events: none;
}
.home-hero-banner-fallback {
  background: radial-gradient(circle at 76% 30%,rgba(40,220,90,.24),transparent 25%),linear-gradient(135deg,#06245a,#0a7d34);
}
.home-hero-carousel .home-hero-banner {
  border-radius: 0;
  box-shadow: none;
}
.home-hero-copy {
  width: min(500px,92vw);
  text-shadow: 0 2px 18px rgba(0,0,0,.38);
}
.home-hero-carousel .carousel-control-prev,.home-hero-carousel .carousel-control-next {
  width: clamp(2.5rem,5vw,4.5rem);
  opacity: .78;
}
.home-hero-carousel .carousel-control-prev-icon,.home-hero-carousel .carousel-control-next-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background-color: rgba(2,12,32,.42);
  background-size: 58%;
}
.home-hero-carousel .carousel-indicators {
  bottom: 1rem;
  margin-bottom: 0;
  gap: .35rem;
}
.home-hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255,255,255,.72);
  opacity: 1;
}
.home-hero-carousel .carousel-indicators .active {
  background-color: var(--primary-2);
}
.home-hero-copy h1 {
  max-width: 520px;
  font-size: clamp(1.75rem,3.2vw,3.15rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.045em;
  margin: .5rem 0 1rem;
}
.home-hero-copy p {
  max-width: 480px;
  color: rgba(255,255,255,.86);
  font-size: clamp(.92rem,1.2vw,1.05rem);
}
.home-store-section {
  padding: 2.25rem 0;
}
.store-panel,.store-banner-column {
  background: #fff;
  border: 1px solid #dce5e4;
  border-radius: 7px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
}
.store-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}
.store-panel-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}
.store-card-grid,.category-grid {
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  gap: .85rem;
}
.store-product-card {
  background: #f8fbfa;
  border: 1px solid #d7dfde;
  border-radius: 5px;
  min-height: 225px;
  padding: .65rem;
  display: flex;
  flex-direction: column;
  color: #1f2937;
  transition: transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.store-product-card:hover {
  transform: translateY(-3px);
  border-color: #b5c5c3;
  box-shadow: 0 12px 24px rgba(15,23,42,.12);
}
.store-thumb {
  height: 100px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 4px;
  margin-bottom: .55rem;
  overflow: hidden;
}
.store-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .35rem;
}
.store-thumb i {
  color: var(--primary);
  font-size: 2.2rem;
}
.store-product-card h3 {
  font-size: .95rem;
  line-height: 1.12;
  min-height: 2.15em;
  margin: 0 0 .45rem;
  font-weight: 650;
  border-bottom: 1px solid #d8dfde;
  padding-bottom: .4rem;
}
.store-product-card span {
  color: #334155;
  font-size: .9rem;
}
.store-product-card strong {
  color: #d80b1f;
  font-size: 1.38rem;
  line-height: 1;
  font-weight: 900;
}
.store-product-card small {
  color: #111827;
  font-weight: 700;
  font-size: .72rem;
}
.segment-banner,.event-banner {
  min-height: 118px;
  border-radius: 6px;
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-size: clamp(1.35rem,3vw,2rem);
  font-weight: 900;
  color: #0b2852;
  background: linear-gradient(135deg,#fff,#e8f3ff);
  border: 1px solid #dde6ef;
}
.segment-banner:nth-of-type(2) {
  background: linear-gradient(135deg,#080808,#2b2618);
  color: #f4cf68;
}
.segment-banner:nth-of-type(3) {
  background: linear-gradient(135deg,#ffbf22,#fff0b0);
  color: #0b2852;
}
.segment-banner:nth-of-type(4) {
  background: linear-gradient(135deg,#fff7db,#fb923c);
  color: #5b2105;
}
.event-green {
  background: linear-gradient(135deg,#0f7a22,#9be15d);
  color: #fff;
}
.event-blue {
  background: linear-gradient(135deg,#0f4aa0,#a7d4ff);
  color: #fff;
}
.event-yellow {
  background: linear-gradient(135deg,#ffe39a,#ffb703);
  color: #5a3000;
}
.event-color {
  background: linear-gradient(135deg,#67e8f9,#f0abfc);
  color: #0f2945;
}
.managed-home-banner {
  position: relative;
  flex-direction: column;
  gap: .25rem;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 1200 / 320;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #eef4fb;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  transition: transform .18s ease,box-shadow .18s ease,filter .18s ease;
}
.managed-home-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.34));
}
.managed-home-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15,23,42,.13);
  filter: saturate(1.04);
}
.managed-home-banner span {
  display: block;
  max-width: 92%;
  line-height: 1.08;
  text-shadow: 0 2px 16px rgba(255,255,255,.28);
}
.managed-home-banner small {
  display: block;
  max-width: 88%;
  font-size: clamp(.82rem,1.4vw,1rem);
  font-weight: 750;
  line-height: 1.25;
  opacity: .9;
}
.store-banner-column .managed-home-banner:nth-of-type(2) {
  background-color: #eef6ff;
}
.store-banner-column .managed-home-banner:nth-of-type(3) {
  background-color: #11100b;
  color: #ffd65a;
}
.store-banner-column .managed-home-banner:nth-of-type(4) {
  background-color: #ffe08a;
}
.store-banner-column .managed-home-banner:nth-of-type(5) {
  background-color: #ffd2a4;
}
.category-page {
  padding: 1.4rem 0 4rem;
}
.category-hero-strip {
  min-height: 128px;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #fff;
  background: radial-gradient(circle at 85% 20%,rgba(255,255,255,.35),transparent 24%),linear-gradient(110deg,#05070b 0%,#111827 46%,#e5eff0 100%);
}
.category-hero-strip span {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.70);
  font-size: .85rem;
}
.category-hero-strip h1 {
  margin: .2rem 0 0;
  font-weight: 900;
  font-size: clamp(1.8rem,4vw,2.8rem);
  letter-spacing: -.035em;
}
.category-hero-icons {
  display: flex;
  gap: .75rem;
}
.category-hero-icons div {
  width: 86px;
  height: 66px;
  border-radius: 6px;
  background: rgba(255,255,255,.92);
  display: grid;
  place-items: center;
  color: var(--primary);
  overflow: hidden;
}
.category-hero-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .25rem;
}
.category-breadcrumb {
  display: flex;
  gap: .45rem;
  align-items: center;
  margin: 1.2rem 0;
  font-size: .86rem;
  color: #334155;
}
.category-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid #d3dddc;
  padding-bottom: .8rem;
  margin-bottom: 1rem;
}
.category-toolbar h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  gap: .45rem;
  align-items: center;
}
.category-actions {
  display: flex;
  gap: .45rem;
  align-items: center;
}
.category-actions .form-control {
  width: 180px;
}
.category-actions .form-select {
  width: 160px;
}
.category-content {
  display: grid;
  grid-template-columns: 210px minmax(0,1fr);
  gap: 1rem;
}
.category-sidebar {
  background: #fff;
  border: 1px solid #dce5e4;
  border-radius: 6px;
  padding: .8rem;
  align-self: start;
  position: sticky;
  top: 96px;
}
.category-sidebar h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .6rem;
}
.category-sidebar a {
  display: block;
  padding: .55rem .65rem;
  border-radius: 5px;
  color: #243447;
  font-weight: 650;
  font-size: .9rem;
}
.category-sidebar a:hover,.category-sidebar a.active {
  background: #e8f1ff;
  color: var(--primary);
}
.category-filter-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #d8e2e1;
}
.category-filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .8rem;
}
.category-filter-title strong {
  color: #0f2945;
  font-size: .95rem;
}
.category-filter-title a {
  padding: 0;
  background: transparent;
  color: var(--primary);
  font-size: .78rem;
}
.category-filter-title a:hover {
  background: transparent;
  text-decoration: underline;
}
.category-filter-group {
  display: block;
  margin-bottom: .75rem;
}
.category-filter-group span {
  display: block;
  margin-bottom: .28rem;
  color: #334155;
  font-size: .82rem;
  font-weight: 800;
}
.category-product-card {
  min-height: 238px;
}
@media (max-width:1199px) {
  .store-card-grid,.category-grid {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }
}
@media (max-width:991px) {
  .home-hero-carousel .carousel-inner,.home-hero-carousel .carousel-item,.home-hero-banner {
    min-height: clamp(320px,50vw,600px);
  }
  .home-hero-banner {
    aspect-ratio: 2 / 1;
    padding-inline: 1.25rem;
  }
  .home-hero-shade {
    background: linear-gradient(90deg,rgba(1,18,50,.82) 0%,rgba(1,18,50,.56) 48%,rgba(1,18,50,.18) 100%);
  }
  .category-content {
    grid-template-columns: 1fr;
  }
  .category-sidebar {
    position: static;
  }
}
@media (max-width:767px) {
  .store-card-grid,.category-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .category-toolbar,.category-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .category-actions .form-control,.category-actions .form-select {
    width: 100%;
  }
  .category-hero-strip {
    align-items: flex-start;
    flex-direction: column;
  }
  .category-hero-icons {
    flex-wrap: wrap;
  }
}
@media (max-width:575px) {
  .home-hero-carousel .carousel-inner,.home-hero-carousel .carousel-item,.home-hero-banner {
    min-height: min(120vw,560px);
  }
  .home-hero-banner {
    aspect-ratio: 5 / 6;
    padding: 1.25rem 1rem 1.5rem;
    align-items: end;
  }
  .home-hero-media {
    object-position: center top;
  }
  .home-hero-shade {
    background: linear-gradient(180deg,rgba(1,18,50,.04) 0%,rgba(1,18,50,.16) 42%,rgba(1,18,50,.88) 76%,rgba(1,18,50,.96) 100%);
  }
  .home-hero-copy {
    width: 100%;
    text-align: center;
  }
  .home-hero-copy .d-flex {
    justify-content: center;
  }
  .home-hero-copy h1 {
    font-size: clamp(1.65rem,9.5vw,2.65rem);
  }
  .home-hero-copy p {
    font-size: .9rem;
  }
}
.client-auth-section,.client-dashboard-section {
  background: radial-gradient(circle at 18% 12%,rgba(13,110,253,.14),transparent 26%),linear-gradient(180deg,#f5f9ff 0%,#eef6f5 100%);
  min-height: 72vh;
  padding: 3.5rem 0;
}
.client-auth-card {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr);
  gap: 1.25rem;
  align-items: stretch;
  max-width: 1060px;
  margin: 0 auto;
}
.client-auth-copy,.client-auth-form,.client-panel,.client-metric {
  border: 1px solid rgba(13,48,92,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 20px 60px rgba(15,41,69,.10);
}
.client-auth-copy {
  padding: clamp(2rem,5vw,4rem);
  color: #fff;
  background: linear-gradient(135deg,rgba(5,30,65,.96),rgba(12,97,169,.88));
  overflow: hidden;
  position: relative;
}
.client-auth-copy::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
}
.client-auth-copy span,.client-hero span {
  color: #ffd447;
  display: inline-block;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: .75rem;
  text-transform: uppercase;
}
.client-auth-copy h1 {
  font-size: clamp(2.25rem,5vw,4.25rem);
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: .96;
  max-width: 680px;
}
.client-auth-copy p {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 520px;
}
.client-auth-form {
  padding: clamp(1.5rem,3vw,2.25rem);
}
.client-auth-form h2,.client-panel h2 {
  color: #061b3a;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.client-auth-form .form-control,.client-auth-form .form-select {
  min-height: 46px;
  border-radius: 12px;
}
.client-nav {
  background: #fff;
  border: 1px solid rgba(13,48,92,.08);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(15,41,69,.08);
  display: grid;
  gap: .55rem;
  grid-template-columns: repeat(5,minmax(0,1fr));
  margin-bottom: 1.25rem;
  padding: .75rem;
}
.client-nav a {
  align-items: center;
  border-radius: 999px;
  color: #12345f;
  display: flex;
  font-size: clamp(.8rem,.95vw,.98rem);
  font-weight: 850;
  gap: .35rem;
  justify-content: center;
  line-height: 1.15;
  min-height: 44px;
  overflow-wrap: anywhere;
  padding: .62rem clamp(.55rem,1vw,1rem);
  text-align: center;
}
.client-nav a:hover,.client-nav a.active {
  background: #0d6efd;
  color: #fff;
}
.client-hero {
  align-items: center;
  background: linear-gradient(135deg,#08234d,#0d6efd);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(13,110,253,.24);
  color: #fff;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: clamp(1.5rem,4vw,2.5rem);
}
.client-hero h1 {
  font-size: clamp(1.8rem,4vw,3rem);
  font-weight: 950;
  line-height: 1;
  margin: 0;
}
.client-hero p {
  color: rgba(255,255,255,.80);
  margin: .75rem 0 0;
}
.client-metric {
  min-height: 132px;
  padding: 1.2rem;
}
.client-metric span {
  color: #64748b;
  display: block;
  font-size: .84rem;
  font-weight: 800;
  margin-bottom: .75rem;
}
.client-metric strong {
  color: #061b3a;
  display: block;
  font-size: clamp(1.7rem,3vw,2.5rem);
  font-weight: 950;
  line-height: 1;
}
.client-panel {
  padding: clamp(1.25rem,3vw,2rem);
}
.client-panel .table {
  margin-bottom: 0;
  vertical-align: middle;
}
.client-panel .table th {
  color: #64748b;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.client-panel .table td,.client-panel .table th {
  padding: .95rem .75rem;
}
@media (max-width:991px) {
  .client-auth-card {
    grid-template-columns: 1fr;
  }
  .client-hero {
    align-items: flex-start;
    flex-direction: column;
  }
  .client-nav {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}
@media (max-width:575px) {
  .client-auth-section,.client-dashboard-section {
    padding: 2rem 0;
  }
  .client-nav {
    border-radius: 14px;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .client-nav a {
    font-size: .82rem;
    min-height: 42px;
    padding-inline: .45rem;
  }
}
.prepress-page {
  background: linear-gradient(180deg,#edf6ff 0%,#f7fbfa 100%);
  min-height: 74vh;
  padding: 3rem 0;
}
.prepress-heading {
  margin-bottom: 1.5rem;
  max-width: 820px;
}
.prepress-heading span {
  color: #0d6efd;
  display: inline-flex;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: .65rem;
  text-transform: uppercase;
}
.prepress-heading h1 {
  color: #061b3a;
  font-size: clamp(2rem,4vw,3.4rem);
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: .98;
  margin-bottom: .6rem;
}
.prepress-heading p {
  color: #64748b;
  font-size: 1rem;
}
.prepress-card {
  background: #fff;
  border: 1px solid rgba(13,48,92,.10);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(15,41,69,.10);
  padding: clamp(1rem,2.4vw,1.5rem);
}
.prepress-card-head {
  align-items: flex-start;
  border-bottom: 1px solid #e5edf5;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
}
.prepress-card-head h2 {
  color: #061b3a;
  font-size: clamp(1.25rem,2vw,1.7rem);
  font-weight: 900;
  margin: .55rem 0 .2rem;
}
.prepress-card-head p {
  color: #64748b;
  font-size: clamp(.8rem,.92vw,.96rem);
  line-height: 1.35;
  margin: 0;
  max-width: 820px;
  overflow-wrap: anywhere;
}
.prepress-card-body {
  display: grid;
  gap: 1rem;
}
.prepress-summary-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(auto-fit,minmax(190px,1fr));
}
.prepress-summary-item {
  align-items: center;
  background: #f8fbff;
  border: 1px solid #e2eaf3;
  border-radius: 14px;
  display: flex;
  gap: .7rem;
  min-width: 0;
  padding: .8rem;
}
.prepress-summary-item i {
  color: #94a3b8;
  font-size: 1.35rem;
}
.prepress-summary-item.is-ok i {
  color: #047857;
}
.prepress-summary-item strong,.prepress-summary-item span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepress-summary-item strong {
  color: #12345f;
  font-size: .88rem;
}
.prepress-summary-item span {
  color: #64748b;
  font-size: .78rem;
}
.prepress-status {
  background: #fff3cd;
  border-radius: 999px;
  color: #7a4f00;
  font-size: .82rem;
  font-weight: 900;
  padding: .45rem .85rem;
}
.prepress-status.is-ok {
  background: #d1fae5;
  color: #047857;
}
.prepress-step {
  background: #f8fbff;
  border: 1px solid #e2eaf3;
  border-radius: 16px;
  height: 100%;
  padding: 1rem;
}
.prepress-step.is-disabled {
  opacity: .64;
}
.prepress-step h3 {
  color: #061b3a;
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: .4rem;
}
.prepress-step p {
  color: #64748b;
  font-size: .88rem;
  margin-bottom: 1rem;
}
.prepress-upload {
  background: #fff;
  border: 1px dashed #b9c8dc;
  border-radius: 14px;
  margin-bottom: .9rem;
  padding: .85rem;
}
.prepress-upload-context {
  background: #f8fbff;
  border: 1px solid #e2eaf3;
  border-radius: 14px;
  padding: .9rem 1rem;
}
.prepress-upload-context strong,.prepress-upload-context span {
  display: block;
}
.prepress-upload-context strong {
  color: #061b3a;
  font-size: 1.05rem;
  font-weight: 900;
}
.prepress-upload-context span {
  color: #64748b;
  font-size: .86rem;
  line-height: 1.35;
  margin-top: .25rem;
  overflow-wrap: anywhere;
}
.prepress-upload-buttons,[data-upload-fields] {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
}
[data-upload-fields] {
  justify-content: center;
  margin-inline: auto;
  max-width: 760px;
  width: 100%;
}
[data-upload-fields][data-upload-layout="single"] {
  grid-template-columns: minmax(240px,360px);
}
[data-upload-fields][data-upload-layout="front-back"],[data-upload-fields][data-upload-layout="with-masks"] {
  grid-template-columns: repeat(2,minmax(240px,1fr));
}
[data-upload-fields][data-upload-layout="front-mask"] {
  grid-template-columns: minmax(240px,380px);
}
[data-upload-fields][data-upload-layout="with-masks"] {
  grid-template-areas: "front back" "mask-front mask-back";
}
[data-upload-fields][data-upload-layout="front-mask"] {
  grid-template-areas: "front" "mask-front";
}
[data-upload-fields][data-upload-layout="with-masks"] .is-front,[data-upload-fields][data-upload-layout="front-mask"] .is-front {
  grid-area: front;
}
[data-upload-fields][data-upload-layout="with-masks"] .is-back {
  grid-area: back;
}
[data-upload-fields][data-upload-layout="with-masks"] .is-mask-front,[data-upload-fields][data-upload-layout="front-mask"] .is-mask-front {
  grid-area: mask-front;
}
[data-upload-fields][data-upload-layout="with-masks"] .is-mask-back {
  grid-area: mask-back;
}
[data-upload-fields] .is-extra {
  justify-self: center;
}
.prepress-upload-button {
  align-items: center;
  background: #fff;
  border: 2px dashed #b9c8dc;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  gap: .85rem;
  min-height: 94px;
  width: 100%;
  padding: 1rem;
  transition: border-color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.prepress-upload-button:hover,.prepress-upload-button.is-selected {
  border-color: #0d6efd;
  box-shadow: 0 12px 28px rgba(13,110,253,.13);
  transform: translateY(-1px);
}
.prepress-upload-button input {
  height: 1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 1px;
}
.prepress-upload-icon {
  background: #eaf2ff;
  border-radius: 14px;
  color: #0d6efd;
  display: grid;
  flex: 0 0 48px;
  font-size: 1.45rem;
  height: 48px;
  place-items: center;
}
.prepress-upload-text {
  min-width: 0;
}
.prepress-upload-text strong {
  color: #061b3a;
  display: block;
  font-size: .98rem;
  font-weight: 900;
}
.prepress-upload-text small {
  color: #64748b;
  display: block;
  font-size: .78rem;
  line-height: 1.25;
  margin-top: .25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepress-file-ok {
  color: #047857;
  font-size: .84rem;
  font-weight: 800;
  margin-top: .5rem;
}
.orientation-grid {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(2,minmax(0,1fr));
}
.orientation-option {
  background: #fff;
  border: 2px solid #e2eaf3;
  border-radius: 14px;
  cursor: pointer;
  display: grid;
  gap: .55rem;
  padding: .8rem;
  place-items: center;
  text-align: center;
}
.orientation-option input {
  position: absolute;
  opacity: 0;
}
.orientation-option:has(input:checked) {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13,110,253,.12);
}
.orientation-option .paper {
  background: #eef2f7;
  border: 1px solid #d9e2ee;
  color: #12345f;
  display: grid;
  place-items: center;
}
.orientation-option .landscape {
  height: 54px;
  width: 86px;
}
.orientation-option .portrait {
  height: 86px;
  width: 54px;
}
.orientation-option strong {
  color: #12345f;
  font-size: .9rem;
}
.prepress-preview {
  background-color: #fff;
  background-image: linear-gradient(45deg,#e5e7eb 25%,transparent 25%),linear-gradient(-45deg,#e5e7eb 25%,transparent 25%),linear-gradient(45deg,transparent 75%,#e5e7eb 75%),linear-gradient(-45deg,transparent 75%,#e5e7eb 75%);
  background-position: 0 0,0 12px,12px -12px,-12px 0;
  background-size: 24px 24px;
  border: 1px solid #e2eaf3;
  border-radius: 16px;
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2,minmax(0,1fr));
  margin-bottom: 1rem;
  min-height: 150px;
  padding: 1rem;
}
.preview-tile {
  align-items: center;
  background: rgba(255,255,255,.90);
  border: 1px solid #dbe5ef;
  border-radius: 12px;
  color: #12345f;
  display: grid;
  font-weight: 900;
  gap: .35rem;
  justify-items: center;
  padding: .85rem;
}
.preview-tile i {
  color: #d80b1f;
  font-size: 2rem;
}
.prepress-footer-actions {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
.prepress-modal {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 35px 90px rgba(2,14,34,.32);
  overflow: hidden;
}
.prepress-modal .modal-header {
  background: #061b3a;
  color: #fff;
}
.prepress-modal .btn-close {
  filter: invert(1) grayscale(100%);
}
.prepress-modal-kicker {
  color: #ffd447;
  display: block;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.prepress-progress {
  height: 16px;
  border-radius: 999px;
}
.prepress-progress .progress-bar {
  background: linear-gradient(90deg,#0d6efd,#14b8a6);
  font-size: .72rem;
  font-weight: 900;
}
.prepress-preview-modal-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 360px;
  max-height: calc(100dvh - 12rem);
  min-height: 0;
  overflow: hidden;
}
.prepress-pdf-preview {
  align-content: start;
  background-color: #fff;
  background-image: linear-gradient(45deg,#e5e7eb 25%,transparent 25%),linear-gradient(-45deg,#e5e7eb 25%,transparent 25%),linear-gradient(45deg,transparent 75%,#e5e7eb 75%),linear-gradient(-45deg,transparent 75%,#e5e7eb 75%);
  background-position: 0 0,0 12px,12px -12px,-12px 0;
  background-size: 24px 24px;
  min-height: 0;
  overflow: auto;
  padding: clamp(.75rem,1.8vw,1.25rem);
  padding-bottom: clamp(2rem,4vw,3rem);
}
.prepress-pdf-preview iframe {
  aspect-ratio: var(--pdf-aspect,1.78);
  background: #242424;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15,41,69,.16);
  display: block;
  height: auto;
  max-height: 360px;
  min-height: 0;
  width: 100%;
}
.prepress-preview-files {
  align-content: start;
  display: grid;
  gap: 1rem;
  height: auto;
  margin-inline: auto;
  max-width: 860px;
}
.prepress-preview-files.has-multiple {
  grid-template-columns: repeat(2,minmax(0,1fr));
  padding-bottom: 1rem;
}
.prepress-preview-file {
  background: #242424;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin: 0;
  min-width: 0;
  padding: .65rem;
}
.prepress-preview-file figcaption {
  align-self: center;
  background: #061b3a;
  border-radius: 999px;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  padding: .35rem .85rem;
  text-transform: uppercase;
}
.prepress-preview-file iframe {
  flex: 0 0 auto;
}
.prepress-preview-files.has-multiple .prepress-preview-file iframe {
  max-height: 260px;
}
.prepress-alert-panel {
  background: #f8fafc;
  border-left: 1px solid #e2e8f0;
  max-height: calc(100dvh - 12rem);
  overflow: auto;
  padding: 1.5rem;
}
.prepress-alert-panel h3 {
  color: #d80b1f;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.prepress-alert-panel ul {
  margin-bottom: 0;
  padding-left: 1.1rem;
}
.preview-empty {
  align-items: center;
  background: rgba(255,255,255,.86);
  border-radius: 12px;
  color: #64748b;
  display: grid;
  font-weight: 800;
  height: 100%;
  min-height: 420px;
  place-items: center;
}
@media (max-width:767px) {
  .prepress-card-head,.prepress-footer-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .prepress-footer-actions .btn {
    width: 100%;
  }
  .prepress-summary-grid {
    grid-template-columns: 1fr;
  }
  .prepress-preview-modal-grid {
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 9rem);
    overflow: auto;
  }
  .prepress-preview-files.has-multiple {
    grid-template-columns: 1fr;
  }
  .prepress-alert-panel {
    border-left: 0;
    border-top: 1px solid #e2e8f0;
    max-height: none;
  }
  .prepress-pdf-preview {
    min-height: 0;
  }
  .prepress-pdf-preview iframe {
    max-height: 300px;
    min-height: 0;
  }
  [data-upload-fields],[data-upload-fields][data-upload-layout="single"],[data-upload-fields][data-upload-layout="front-mask"],[data-upload-fields][data-upload-layout="front-back"],[data-upload-fields][data-upload-layout="with-masks"] {
    grid-template-areas: none;
    grid-template-columns: minmax(0,1fr);
    max-width: 420px;
  }
  [data-upload-fields] .is-front,[data-upload-fields] .is-back,[data-upload-fields] .is-mask-front,[data-upload-fields] .is-mask-back {
    grid-area: auto;
  }
}
@media (max-width:420px) {
  .orientation-grid,.prepress-preview {
    grid-template-columns: 1fr;
  }
}
.pickup-type-options {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.pickup-type-options .btn {
  border-radius: 999px;
  font-weight: 800;
  padding: .7rem 1rem;
}
.pickup-card .badge.text-bg-warning {
  color: #5f3700 !important;
  background: #fff3cd !important;
  border: 1px solid #ffe08a;
}
.pickup-card .badge.text-bg-success {
  background: #dcfce7 !important;
  color: #166534 !important;
  border: 1px solid #86efac;
}
.pickup-type-options {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: .65rem;
  width: 100%;
}
.pickup-type-options .btn {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  white-space: normal;
  line-height: 1.15;
  text-align: center;
  border-radius: 999px;
  font-weight: 800;
  padding: .72rem .9rem;
}
.pickup-type-options .btn-warning {
  color: #5f3700;
}
@media (max-width:767.98px) {
  .pickup-type-options {
    grid-template-columns: 1fr;
  }
  .pickup-type-options .btn {
    justify-content: flex-start;
    border-radius: 16px;
    padding: .85rem 1rem;
  }
  .form-card .nav-pills {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .form-card .nav-pills .nav-item,.form-card .nav-pills .nav-link {
    width: 100%;
  }
}
@media (min-width:768px) and (max-width:1199.98px) {
  .pickup-type-options {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .pickup-type-options .btn:first-child {
    grid-column: 1 / -1;
  }
}
.pickup-filter-form .pickup-type-options {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: .65rem;
  width: 100%;
}
.pickup-filter-form .pickup-type-options .btn {
  width: 100%;
  min-height: 54px;
  padding: .65rem .7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
}
.pickup-filter-form .pickup-type-options .btn i {
  flex: 0 0 auto;
}
@media (max-width:575.98px) {
  .pickup-filter-form .pickup-type-options {
    grid-template-columns: 1fr;
  }
  .pickup-filter-form .pickup-type-options .btn {
    min-height: 48px;
    justify-content: center;
    border-radius: 16px;
    white-space: normal;
  }
}
@media (min-width:576px) and (max-width:991.98px) {
  .pickup-filter-form .pickup-type-options {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
  .pickup-filter-form .pickup-type-options .btn {
    font-size: .9rem;
    padding-left: .45rem;
    padding-right: .45rem;
  }
}
.pickup-filter-form .pickup-type-options {
  display: grid !important;
  grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  gap: .65rem !important;
  width: 100% !important;
}
.pickup-filter-form .pickup-type-options .btn {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 50px !important;
  padding: .65rem .65rem !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .25rem !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  text-align: center !important;
  white-space: nowrap !important;
}
.pickup-filter-form .pickup-type-options .btn i {
  flex: 0 0 auto !important;
  margin-right: .15rem !important;
}
@media (max-width:420px) {
  .pickup-filter-form .pickup-type-options {
    grid-template-columns: 1fr !important;
  }
  .pickup-filter-form .pickup-type-options .btn {
    border-radius: 16px !important;
    white-space: normal !important;
    min-height: 46px !important;
  }
}
@media (min-width:421px) and (max-width:767.98px) {
  .pickup-filter-form .pickup-type-options {
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  }
  .pickup-filter-form .pickup-type-options .btn {
    font-size: .82rem !important;
    padding-left: .35rem !important;
    padding-right: .35rem !important;
  }
  .pickup-filter-form .pickup-type-options .btn i {
    display: none !important;
  }
}
.checkout-delivery-card .delivery-selected-box {
  border-style: dashed !important;
}
.delivery-modal .modal-dialog {
  max-width: 980px;
}
.delivery-tabs {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: .75rem;
  background: #f8fbff;
}
.delivery-tab {
  border: 1px solid #d7e3f5;
  background: #fff;
  border-radius: 18px;
  padding: .9rem .75rem;
  font-weight: 900;
  color: #0a346d;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .45rem;
}
.delivery-tab.active {
  background: #073f86;
  color: #fff;
  border-color: #073f86;
  box-shadow: 0 10px 24px rgba(7,63,134,.18);
}
.delivery-pane {
  display: none;
}
.delivery-pane.active {
  display: block;
}
.delivery-option-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: .85rem;
}
.delivery-option-grid.two-cols {
  grid-template-columns: repeat(2,minmax(0,1fr));
}
.delivery-choice {
  width: 100%;
  border: 1px solid #d7e3f5;
  background: #fff;
  border-radius: 18px;
  padding: 1rem;
  text-align: left;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  transition: .18s ease;
}
.delivery-choice:hover,.delivery-choice.selected {
  border-color: #073f86;
  box-shadow: 0 14px 32px rgba(7,63,134,.14);
  transform: translateY(-1px);
}
.choice-title {
  font-weight: 950;
  color: #031637;
}
.choice-meta {
  color: #68758a;
  font-size: .88rem;
  line-height: 1.35;
}
.choice-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: #68758a;
}
.choice-footer strong {
  color: #073f86;
  white-space: nowrap;
}
.delivery-integration-card {
  border: 1px solid #d7e3f5;
  border-radius: 22px;
  padding: 1.25rem;
  background: linear-gradient(135deg,#fff,#f8fbff);
}
@media (max-width:767.98px) {
  .delivery-tabs {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .delivery-tab {
    padding: .8rem .55rem;
    font-size: .9rem;
    border-radius: 14px;
  }
  .delivery-option-grid,.delivery-option-grid.two-cols {
    grid-template-columns: 1fr;
  }
  .delivery-choice {
    min-height: auto;
  }
}
@media (max-width:390px) {
  .delivery-tabs {
    grid-template-columns: 1fr;
  }
}
.pickup-modal-search {
  border: 1px solid #d7e3f5;
  border-radius: 18px;
  background: linear-gradient(135deg,#ffffff,#f8fbff);
  padding: .9rem;
}
.pickup-modal-search .input-group-text {
  background: #fff;
  border-color: #d7e3f5;
  color: #073f86;
}
.pickup-modal-search .form-control,.pickup-modal-search .btn {
  border-color: #d7e3f5;
}
.pickup-modal-search .form-control:focus {
  border-color: #073f86;
  box-shadow: 0 0 0 .2rem rgba(7,63,134,.10);
}
.pickup-empty-state {
  border: 1px dashed #b8c9e3;
  border-radius: 18px;
  padding: 1.25rem;
  text-align: center;
  color: #68758a;
  background: #f8fbff;
  margin-top: .85rem;
}
.pickup-empty-state i {
  display: block;
  font-size: 1.75rem;
  color: #073f86;
  margin-bottom: .35rem;
}
.pickup-empty-state strong,.pickup-empty-state span {
  display: block;
}
@media (max-width:575.98px) {
  .pickup-modal-search .input-group.input-group-lg {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .pickup-modal-search .input-group-text {
    border-radius: .75rem 0 0 .75rem !important;
  }
  .pickup-modal-search .form-control {
    border-radius: 0 .75rem .75rem 0 !important;
  }
  .pickup-modal-search .btn {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: .5rem;
    border-radius: .75rem !important;
  }
}
.pickup-modal-search {
  padding: .65rem;
  border-radius: 15px;
}
.pickup-modal-search .pickup-search-group {
  align-items: stretch;
  border: 1px solid #d7e3f5;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.pickup-modal-search .pickup-search-group .input-group-text,.pickup-modal-search .pickup-search-group .form-control,.pickup-modal-search .pickup-search-group .pickup-search-clear {
  border: 0 !important;
  min-height: 42px;
}
.pickup-modal-search .pickup-search-group .input-group-text {
  width: 44px;
  justify-content: center;
  background: #fff;
  color: #073f86;
}
.pickup-modal-search .pickup-search-group .form-control {
  font-size: .95rem;
  box-shadow: none !important;
}
.pickup-modal-search .pickup-search-clear {
  background: #f4f7fb;
  color: #526173;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
  padding: .35rem .7rem;
  transition: .16s ease;
}
.pickup-modal-search .pickup-search-clear:hover,.pickup-modal-search .pickup-search-clear:focus {
  background: #eaf1fb;
  color: #073f86;
}
@media (max-width:575.98px) {
  .pickup-modal-search {
    padding: .55rem;
  }
  .pickup-modal-search .pickup-search-group {
    display: grid !important;
    grid-template-columns: 40px 1fr auto;
    border-radius: 12px;
  }
  .pickup-modal-search .pickup-search-group .input-group-text,.pickup-modal-search .pickup-search-group .form-control,.pickup-modal-search .pickup-search-group .pickup-search-clear {
    min-height: 40px;
    border-radius: 0 !important;
  }
  .pickup-modal-search .pickup-search-clear {
    width: auto;
    margin: 0;
    padding-inline: .55rem;
    font-size: .78rem;
  }
  .pickup-modal-search .small {
    font-size: .76rem;
  }
}
@media (max-width:380px) {
  .pickup-modal-search .pickup-search-group {
    grid-template-columns: 38px 1fr;
  }
  .pickup-modal-search .pickup-search-clear {
    grid-column: 1 / -1;
    border-top: 1px solid #edf2f7 !important;
  }
}
.catalog-home-panel .store-panel-header,.catalog-toolbar {
  align-items: flex-start;
}
.home-category-grid,.catalog-category-grid,.subcategory-grid {
  display: grid;
  gap: .75rem;
}
.home-category-grid {
  grid-template-columns: repeat(4,minmax(0,1fr));
}
.catalog-category-grid {
  grid-template-columns: repeat(6,minmax(0,1fr));
}
.subcategory-grid {
  grid-template-columns: repeat(4,minmax(0,1fr));
}
.home-category-card,.catalog-category-card,.subcategory-panel {
  background: #fff;
  border: 1px solid #dce5e4;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(15,23,42,.055);
}
.home-category-card,.catalog-category-card {
  overflow: hidden;
  min-width: 0;
}
.home-category-media,.catalog-category-cover {
  min-height: 120px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,#eff6ff,#f8fafc);
  color: var(--primary);
  font-size: 2rem;
  overflow: hidden;
}
.catalog-category-cover {
  min-height: 128px;
}
.home-category-media img,.catalog-category-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .55rem;
}
.home-category-body,.catalog-category-body {
  padding: .72rem .78rem .82rem;
}
.home-category-body h3,.catalog-category-body h3 {
  font-size: .95rem;
  font-weight: 850;
  margin: 0 0 .35rem;
  line-height: 1.15;
  min-height: 2.2em;
}
.home-category-body h3 a,.catalog-category-body h3 a {
  color: #07172f;
}
.home-category-body>span,.catalog-count {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .2rem .55rem;
  background: #eef6ff;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}
.catalog-category-body p {
  color: #64748b;
  font-size: .9rem;
  margin: .7rem 0;
}
.category-card-price {
  display: grid;
  gap: .1rem;
  margin: .45rem 0;
}
.category-card-price small {
  color: #64748b;
  font-size: .76rem;
  font-weight: 750;
}
.category-card-price strong {
  color: #e30613;
  font-size: clamp(1.02rem,1.35vw,1.28rem);
  line-height: 1;
  font-weight: 950;
}
.home-subcategory-pills,.catalog-subcategory-list {
  display: flex;
  flex-wrap: wrap;
  gap: .38rem;
  margin-top: .75rem;
}
.home-subcategory-pills a,.catalog-subcategory-list a {
  border: 1px solid #d6e4f5;
  border-radius: 999px;
  padding: .28rem .6rem;
  color: #0b4a8b;
  background: #f8fbff;
  font-size: .78rem;
  font-weight: 750;
}
.subcategory-panel {
  padding: 1rem;
}
.subcategory-card-grid {
  grid-template-columns: repeat(4,minmax(0,1fr));
}
.subcategory-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-height: 92px;
  border: 1px solid #d7e4ef;
  border-radius: 14px;
  padding: .85rem;
  background: linear-gradient(180deg,#fff,#f8fbff);
  color: #0f2945;
  transition: .18s ease;
}
.subcategory-card:hover,.subcategory-card.active {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(13,110,253,.12);
}
.subcategory-card span {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  font-weight: 850;
  line-height: 1.15;
}
.subcategory-card small {
  color: #64748b;
  font-weight: 750;
}
.catalog-parent-link {
  font-weight: 900 !important;
}
.catalog-child-link {
  padding-left: 1.05rem !important;
  font-size: .84rem !important;
  color: #475569 !important;
}
.catalog-child-link.active {
  color: var(--primary) !important;
}
.catalog-result-header {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: center;
  margin-bottom: .85rem;
  padding: .7rem .9rem;
  border: 1px solid #dce5e4;
  border-radius: 12px;
  background: #fff;
}
.catalog-result-header strong {
  color: #07172f;
}
.catalog-result-header span {
  color: #64748b;
  font-size: .9rem;
}
@media (max-width:1199px) {
  .home-category-grid,.subcategory-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
  .catalog-category-grid {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }
}
@media (max-width:991px) {
  .catalog-category-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}
@media (max-width:767px) {
  .home-category-grid,.catalog-category-grid,.subcategory-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .catalog-result-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width:575px) {
  .home-category-grid,.catalog-category-grid,.subcategory-grid {
    grid-template-columns: 1fr;
  }
  .home-category-media,.catalog-category-cover {
    min-height: 105px;
  }
  .catalog-category-body h3 {
    min-height: auto;
  }
}
.catalog-home-panel {
  padding: clamp(1rem,2vw,1.35rem);
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 55px rgba(15,23,42,.06);
}
.catalog-home-panel .store-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.catalog-home-panel .store-panel-header h2 {
  margin: 0;
  font-size: clamp(1.12rem,2.2vw,1.45rem);
  line-height: 1.15;
  letter-spacing: -.03em;
}
.catalog-home-panel .store-panel-header .btn {
  border-radius: 999px;
  padding: .55rem .95rem;
  font-weight: 850;
  white-space: nowrap;
}
.home-category-row {
  align-items: stretch;
}
.home-category-card-compact {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dbe7f3;
  border-radius: 18px;
  background: linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  box-shadow: 0 10px 26px rgba(15,23,42,.055);
  transition: transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.home-category-card-compact:hover {
  transform: translateY(-3px);
  border-color: rgba(13,110,253,.35);
  box-shadow: 0 16px 34px rgba(13,110,253,.12);
}
.home-category-card-compact .home-category-media {
  min-height: 0;
  height: 92px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top left,#eef6ff,#ffffff 55%,#f7fafc);
  color: var(--primary);
  font-size: 1.8rem;
  border-bottom: 1px solid #edf2f7;
}
.home-category-card-compact .home-category-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .55rem;
}
.home-category-card-compact .home-category-body {
  padding: .78rem .82rem .85rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1 1 auto;
}
.home-category-card-compact .home-category-body h3 {
  font-size: .94rem;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -.02em;
  min-height: 2.08em;
}
.home-category-card-compact .home-category-body h3 a {
  color: #061934;
  text-decoration: none;
}
.home-category-card-compact .home-category-body>span {
  width: fit-content;
  padding: .16rem .48rem;
  font-size: .7rem;
  line-height: 1.25;
  border-radius: 999px;
  background: #eef6ff;
  color: #0d4c8f;
  font-weight: 850;
}
.home-subcategory-mini {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-top: auto;
}
.home-subcategory-mini a {
  max-width: 100%;
  border: 1px solid #e2ebf5;
  border-radius: 999px;
  padding: .18rem .46rem;
  background: #fff;
  color: #486179;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-subcategory-mini a:hover,.home-subcategory-mini .home-subcategory-more {
  color: var(--primary);
  border-color: rgba(13,110,253,.35);
  background: #f3f8ff;
}
@media (max-width:767px) {
  .catalog-home-panel .store-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .catalog-home-panel .store-panel-header .btn {
    width: 100%;
    text-align: center;
  }
  .home-category-card-compact .home-category-media {
    height: 84px;
  }
  .home-category-card-compact .home-category-body {
    padding: .68rem;
  }
  .home-category-card-compact .home-category-body h3 {
    font-size: .88rem;
  }
}
@media (max-width:380px) {
  .home-category-card-compact .home-category-media {
    height: 76px;
  }
  .home-category-card-compact .home-category-body h3 {
    min-height: auto;
  }
  .home-subcategory-mini {
    display: none;
  }
}


/* =========================================================
   APP-LIKE MOBILE EXPERIENCE — 2026
   Header, offcanvas, bottom navigation and touch targets.
   ========================================================= */
.site-main-navbar{
  min-height:76px;
  border-bottom:1px solid rgba(15,23,42,.06);
  box-shadow:0 8px 28px rgba(15,23,42,.055);
}
.site-main-navbar .container{max-width:1320px}
.site-main-navbar .nav-link{position:relative;padding-top:.75rem;padding-bottom:.75rem}
.site-main-navbar .nav-link::after{
  content:"";
  position:absolute;
  left:50%;
  right:50%;
  bottom:.35rem;
  height:2px;
  border-radius:999px;
  background:var(--primary);
  transition:left .18s ease,right .18s ease;
}
.site-main-navbar .nav-link:hover::after,.site-main-navbar .nav-link:focus-visible::after{left:.55rem;right:.55rem}
.site-mobile-header-actions{gap:.35rem}
.site-mobile-header-action,.site-mobile-menu-trigger{
  position:relative;
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  padding:0;
  border:0;
  border-radius:14px;
  background:#f3f7fb;
  color:#0b2e5f;
  font-size:1.25rem;
}
.site-mobile-menu-trigger{background:var(--primary);color:#fff}
.site-mobile-cart-badge{
  position:absolute;
  top:3px;
  right:2px;
  display:grid;
  place-items:center;
  min-width:18px;
  height:18px;
  padding:0 4px;
  border:2px solid #fff;
  border-radius:999px;
  background:#ef4444;
  color:#fff;
  font-size:.62rem;
  font-weight:900;
}
.site-mobile-offcanvas{
  --bs-offcanvas-width:min(91vw,380px);
  border-left:0;
  border-radius:24px 0 0 24px;
  box-shadow:-24px 0 70px rgba(15,23,42,.18);
}
.site-mobile-offcanvas .offcanvas-header{padding:1.35rem 1.25rem 1rem;border-bottom:1px solid #edf2f7}
.site-mobile-offcanvas .offcanvas-title{margin:.12rem 0 0;color:#0b2443;font-size:1.2rem;font-weight:900;letter-spacing:-.03em}
.site-mobile-menu-kicker{color:var(--accent);font-size:.68rem;font-weight:900;letter-spacing:.09em;text-transform:uppercase}
.site-mobile-offcanvas .offcanvas-body{display:flex;flex-direction:column;gap:1.1rem;padding:1rem 1.25rem 1.5rem;background:linear-gradient(180deg,#fff 0%,#f8fbff 100%)}
.site-mobile-menu-primary{display:grid;gap:.45rem}
.site-mobile-menu-primary>a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:56px;
  padding:.7rem .85rem;
  border:1px solid #e5edf6;
  border-radius:16px;
  background:#fff;
  color:#16324f;
  font-weight:800;
  box-shadow:0 6px 18px rgba(15,23,42,.035);
}
.site-mobile-menu-primary>a>span:first-child{display:flex;align-items:center;gap:.75rem}
.site-mobile-menu-primary>a i:first-child{display:grid;place-items:center;width:34px;height:34px;border-radius:11px;background:#edf5ff;color:var(--primary);font-size:1rem}
.site-mobile-menu-count{display:grid;place-items:center;min-width:28px;height:28px;border-radius:999px;background:#eef3f8;color:var(--primary);font-size:.75rem}
.site-mobile-menu-secondary{display:grid;grid-template-columns:1fr 1fr;gap:.55rem}
.site-mobile-menu-secondary a{display:flex;align-items:center;gap:.55rem;min-height:46px;padding:.6rem .7rem;border-radius:13px;background:#eff5fb;color:#334b66;font-size:.78rem;font-weight:750}
.site-mobile-whatsapp{min-height:50px;display:flex;align-items:center;justify-content:center}
.site-mobile-menu-help{margin:0;color:#7b8899;font-size:.75rem;line-height:1.45;text-align:center}
.site-mobile-bottom-nav{display:none}

@media (max-width:991.98px){
  html{scroll-padding-top:74px}
  body.site-app{padding-bottom:calc(78px + env(safe-area-inset-bottom))}
  .site-header{z-index:1035}
  .site-main-navbar{min-height:68px;background:rgba(255,255,255,.94)!important;-webkit-backdrop-filter:saturate(170%) blur(14px);backdrop-filter:saturate(170%) blur(14px)}
  .site-main-navbar .container{min-height:68px;padding-left:max(.9rem,env(safe-area-inset-left));padding-right:max(.9rem,env(safe-area-inset-right))}
  .site-logo-img{max-width:138px;max-height:46px}
  .site-mobile-bottom-nav{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:1032;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    align-items:end;
    height:calc(70px + env(safe-area-inset-bottom));
    padding:7px max(8px,env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(8px,env(safe-area-inset-left));
    border-top:1px solid rgba(15,23,42,.09);
    background:rgba(255,255,255,.96);
    -webkit-backdrop-filter:saturate(180%) blur(18px);
    backdrop-filter:saturate(180%) blur(18px);
    box-shadow:0 -12px 34px rgba(15,23,42,.09);
  }
  .site-mobile-bottom-nav>a{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;min-width:0;min-height:54px;color:#718096;font-size:.61rem;font-weight:800;line-height:1;text-align:center}
  .site-mobile-bottom-nav>a>i,.site-mobile-bottom-nav__icon-wrap>i{font-size:1.24rem;line-height:1}
  .site-mobile-bottom-nav>a.is-active{color:var(--primary)}
  .site-mobile-bottom-nav>a.is-active::before{content:"";position:absolute;top:0;width:20px;height:3px;border-radius:999px;background:var(--primary)}
  .site-mobile-bottom-nav__main{transform:translateY(-9px);color:#0d7b43!important}
  .site-mobile-bottom-nav__main-icon{display:grid;place-items:center;width:50px;height:50px;margin-bottom:1px;border:4px solid #fff;border-radius:18px;background:linear-gradient(145deg,#24c66f,#0fa958);color:#fff;box-shadow:0 9px 22px rgba(16,185,129,.3)}
  .site-mobile-bottom-nav__main-icon i{font-size:1.35rem}
  .site-mobile-bottom-nav__icon-wrap{position:relative;display:grid;place-items:center}
  .site-mobile-bottom-nav__icon-wrap em{position:absolute;top:-7px;right:-10px;display:grid;place-items:center;min-width:17px;height:17px;padding:0 4px;border-radius:999px;background:#ef4444;color:#fff;font-size:.58rem;font-style:normal;font-weight:900}
  .site-chat-toggle{right:12px;bottom:calc(82px + env(safe-area-inset-bottom));width:48px;height:48px;padding:.3rem;animation:none;box-shadow:0 10px 28px rgba(7,54,115,.27)}
  .site-chat-toggle img,.site-chat-toggle i{width:38px;height:38px}
  .site-chat-box{bottom:calc(136px + env(safe-area-inset-bottom));max-height:calc(100dvh - 220px)}
  .footer{padding-bottom:1rem}
}
@media (max-width:575.98px){
  .site-main-navbar{min-height:64px}
  .site-main-navbar .container{min-height:64px}
  .site-logo-img{max-width:126px;max-height:42px}
  .site-mobile-header-action,.site-mobile-menu-trigger{width:41px;height:41px;border-radius:13px}
  .site-mobile-offcanvas{--bs-offcanvas-width:94vw}
  .site-mobile-menu-secondary{grid-template-columns:1fr}
  .footer .container{padding-top:2.5rem!important;padding-bottom:1.75rem!important}
  .footer .row{--bs-gutter-y:1.6rem}
  .footer .col-6{width:50%}
  .footer h6{font-size:.82rem}
  .footer-links li{margin-bottom:.45rem}
  .footer-links a,.footer .text-white-50{font-size:.78rem}
}
@media (prefers-reduced-motion:reduce){
  .site-main-navbar .nav-link::after,.site-mobile-bottom-nav__main{transition:none;transform:none}
}
@media (min-width:992px){
  /* Desktop header must keep a constant geometry while scrolling.
     Changing navbar/logo height on scroll caused a sticky-header feedback loop
     near the trigger threshold, producing visible jitter and scroll lock. */
  .site-header{contain:layout paint style}
  .site-main-navbar{min-height:76px}
  .site-logo-img{max-height:58px}
}
/* Pix Banco Inter */
.pix-qr-box {
  width: 262px;
  min-height: 262px;
  padding: 16px;
  border: 1px solid #dce4ef;
  border-radius: 24px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 48px rgba(7,54,115,.10);
}
.pix-qr-box img,.pix-qr-box canvas {
  max-width: 100%;
  height: auto !important;
}
.payment-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid #edf1f6;
}
.payment-summary-row.total {
  font-size: 1.15rem;
  border-bottom: 0;
}
.payment-result-section .success-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: #eaf8ef;
  color: #16864b;
  display: grid;
  place-items: center;
  font-size: 2rem;
}
@media (max-width:575.98px) {
  .pix-qr-box {
    width: 226px;
    min-height: 226px;
    padding: 12px;
  }
  .payment-result-section {
    padding-top: 2rem !important;
  }
  .payment-result-section .input-group {
    display: block;
  }
  .payment-result-section .input-group .form-control,.payment-result-section .input-group .btn {
    width: 100%;
    border-radius: 12px !important;
  }
  .payment-result-section .input-group .btn {
    margin-top: .75rem;
  }
}
/* Área do cliente moderna e perfis comerciais */
.client-nav-modern {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: .35rem;
  border: 1px solid #dce6f2;
  border-radius: 1rem;
  background: #fff;
  scrollbar-width: thin;
}
.client-nav-modern a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .65rem .9rem;
  border-radius: .75rem;
  color: #16345f;
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
}
.client-nav-modern a:hover {
  background: #edf5ff;
  color: #076cff;
}
.client-nav-modern .client-nav-logout {
  margin-left: auto;
  color: #b42318;
}
.client-hero-modern {
  border-radius: 1.35rem;
  padding: clamp(1.25rem,3vw,2.25rem);
  background: linear-gradient(135deg,#062b61,#096cff);
  box-shadow: 0 18px 40px rgba(4,47,103,.18);
}
.client-hero-modern h1 {
  font-size: clamp(1.65rem,4vw,2.5rem);
  margin: .6rem 0 .25rem;
}
.client-account-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .38rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.reseller-price-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid #a7e1c1;
  border-radius: 1rem;
  background: #ecfdf3;
  color: #075c36;
}
.reseller-price-banner>div {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: .55rem;
}
.reseller-price-banner i {
  font-size: 1.35rem;
}
.reseller-price-banner span:not(.badge) {
  color: #39715a;
  font-size: .88rem;
}
.client-metric-modern {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem;
  border: 1px solid #dce6f2;
  border-radius: 1rem;
  background: #fff;
}
.client-metric-modern i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: .8rem;
  background: #edf5ff;
  color: #076cff;
  font-size: 1.15rem;
}
.client-metric-modern div {
  display: flex;
  flex-direction: column;
}
.client-metric-modern span {
  font-size: .78rem;
  color: #64748b;
}
.client-metric-modern strong {
  font-size: 1.55rem;
}
.client-panel-modern {
  border: 1px solid #dce6f2;
  border-radius: 1.2rem;
  box-shadow: 0 14px 34px rgba(15,43,82,.06);
}
.client-action {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem;
  border: 1px solid #e2e8f0;
  border-radius: .9rem;
  text-decoration: none;
  color: #102a4c;
  background: #fff;
}
.client-action:hover {
  border-color: #9ec5ff;
  background: #f8fbff;
}
.client-action i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: .75rem;
  background: #edf5ff;
  color: #076cff;
}
.client-action span {
  display: flex;
  flex-direction: column;
}
.client-action small {
  color: #64748b;
}
@media (max-width:767.98px) {
  .client-nav-modern a {
    padding: .58rem .72rem;
    font-size: .82rem;
  }
  .reseller-price-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .reseller-price-banner>div {
    grid-template-columns: auto 1fr;
  }
  .reseller-price-banner span:not(.badge) {
    grid-column: 1/-1;
  }
}
/* Product configurator: stable stacking, compact typography and responsive columns */
:root {
  --public-header-offset: 112px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  isolation: isolate;
  background: #fff;
}
.site-header .topbar, .site-header .navbar {
  position: relative;
  z-index: 1;
}
.product-config-hero, .product-config-section {
  position: relative;
  z-index: auto;
}
.product-config-section .container, .product-config-section .row, .product-config-section [class*="col-"] {
  min-width: 0;
}
.product-config-sticky {
  top: var(--public-header-offset) !important;
  z-index: 10;
  max-height: calc(100dvh - var(--public-header-offset) - 1rem);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #b8c5d4 transparent;
}
.product-config-sticky::-webkit-scrollbar {
  width: 6px;
}
.product-config-sticky::-webkit-scrollbar-thumb {
  background: #b8c5d4;
  border-radius: 999px;
}
.product-config-sticky::-webkit-scrollbar-track {
  background: transparent;
}
.product-config-section .config-card {
  min-width: 0;
  overflow-wrap: anywhere;
}
.product-config-section .config-label {
  font-size: clamp(.8rem,.72rem + .18vw,.92rem);
  line-height: 1.25;
  margin-bottom: .35rem;
}
.product-config-section .config-select, .product-config-section .form-select, .product-config-section .form-control {
  min-height: 40px;
  font-size: clamp(.82rem,.76rem + .12vw,.9rem);
  line-height: 1.25;
  padding-top: .48rem;
  padding-bottom: .48rem;
}
.product-config-section .quantity-grid {
  gap: .58rem .78rem;
}
.product-config-section .quantity-option {
  min-width: 0;
  min-height: 30px;
  gap: .38rem;
  font-size: clamp(.8rem,.76rem + .1vw,.88rem);
}
.product-config-section .quantity-option strong {
  font-size: inherit;
}
.product-config-section .quantity-line {
  min-width: 12px;
}
.product-config-section h2.h5 {
  font-size: clamp(1rem,.92rem + .25vw,1.18rem);
}
.product-config-section .addon-option {
  font-size: clamp(.8rem,.76rem + .1vw,.88rem);
  gap: .5rem;
  padding: .62rem .72rem;
}
.product-config-section .price-preview {
  font-size: clamp(1.85rem,2.5vw,2.55rem);
}
.product-summary-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width:1200px) {
  :root {
    --public-header-offset: 116px;
  }
  .product-config-section .row.g-4 {
    --bs-gutter-x: 1.15rem;
  }
  .product-config-section .config-card {
    padding: 1.15rem !important;
  }
}
@media (min-width:992px) and (max-width:1199.98px) {
  :root {
    --public-header-offset: 112px;
  }
  .product-config-section .row.g-4 {
    --bs-gutter-x: .85rem;
  }
  .product-config-section .config-card {
    padding: .9rem !important;
  }
  .product-config-section .quantity-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width:991.98px) {
  :root {
    --public-header-offset: 72px;
  }
  .product-config-sticky {
    position: static !important;
    top: auto !important;
    z-index: auto;
    max-height: none;
    overflow: visible;
  }
  .product-config-section {
    padding-top: 1rem !important;
  }
  .product-config-section .config-card {
    border-radius: .75rem;
  }
}
@media (max-width:575.98px) {
  :root {
    --public-header-offset: 68px;
  }
  .product-config-hero {
    padding-block: 1rem !important;
  }
  .product-config-hero h1 {
    font-size: clamp(1.28rem,7vw,1.7rem);
  }
  .product-config-section .config-card {
    padding: .85rem !important;
  }
  .product-config-section .quantity-grid {
    gap: .42rem;
  }
  .product-config-section .quantity-option {
    grid-template-columns: auto minmax(0,auto) minmax(14px,1fr) auto;
  }
}
.prepress-upload-rules:empty {
  display: none;
}
.prepress-upload-rules .badge {
  color: #0f2945;
  font-size: .78rem;
  font-weight: 800;
}
.orientation-option.is-disabled {
  cursor: not-allowed;
  filter: grayscale(.25);
  opacity: .45;
}
.orientation-option.is-disabled * {
  pointer-events: none;
}
@media (prefers-reduced-motion:reduce) {
  .product-config-section * {
    scroll-behavior: auto !important;
  }
}
/* Product configurator: normal page scrolling, no internal scrollbars */
.product-config-hero {
  padding-block: clamp(.65rem,1.25vw,1rem) !important;
}
.product-config-section {
  padding-top: clamp(.7rem,1.5vw,1.2rem) !important;
}
.product-config-panel, .product-config-sticky, .product-summary-card {
  position: static !important;
  top: auto !important;
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
  overscroll-behavior: auto !important;
  scrollbar-width: none !important;
}
.product-config-panel::-webkit-scrollbar, .product-config-sticky::-webkit-scrollbar, .product-summary-card::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.product-config-section .config-card {
  width: 100%;
  min-width: 0;
}
.product-config-section .config-label {
  font-size: clamp(.79rem,.75rem + .12vw,.88rem);
  margin-bottom: .28rem;
}
.product-config-section .form-select, .product-config-section .form-control {
  min-height: 39px;
  font-size: clamp(.8rem,.76rem + .1vw,.88rem);
}
.product-config-section .quantity-option {
  font-size: clamp(.79rem,.75rem + .1vw,.87rem);
}
.product-summary-card .product-preview-box {
  margin-bottom: clamp(.85rem,1.5vw,1.25rem) !important;
}
@media (min-width:992px) {
  .product-config-section .row.g-4 {
    --bs-gutter-y: 1rem;
  }
}
@media (max-width:991.98px) {
  .product-config-hero {
    padding-block: .65rem !important;
  }
  .product-config-section {
    padding-top: .65rem !important;
  }
}
/* ==========================================================
   Product configurator — mobile-first responsive refinement
   Keeps labels, quantities and prices aligned without overflow
   ========================================================== */
.product-config-section, .product-config-section .container, .product-config-section .row, .product-config-section [class*="col-"], .product-config-section .config-card, .product-config-section .product-config-panel, .product-config-section .product-summary-card {
  min-width: 0;
  max-width: 100%;
}
.product-config-section .config-card {
  overflow: visible;
}
.product-config-section .config-label, .product-config-section .form-label {
  overflow-wrap: anywhere;
}
.product-config-section .form-select, .product-config-section .form-control {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  text-overflow: ellipsis;
}
.product-config-section .quantity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .42rem;
  width: 100%;
}
.product-config-section .quantity-option {
  display: grid;
  grid-template-columns: 1.05rem max-content minmax(1.25rem, 1fr) max-content;
  align-items: center;
  column-gap: .48rem;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: .44rem .1rem;
  line-height: 1.15;
}
.product-config-section .quantity-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.product-config-section .quantity-check {
  width: 1.05rem;
  height: 1.05rem;
  min-width: 1.05rem;
  margin: 0;
}
.product-config-section .quantity-name {
  min-width: 0;
  white-space: nowrap;
  font-size: clamp(.78rem, 2.8vw, .92rem);
  font-weight: 750;
}
.product-config-section .quantity-line {
  display: block;
  width: 100%;
  min-width: .75rem;
  border-top: 1px solid #cbd5e1;
  transform: none;
}
.product-config-section .quantity-option strong {
  justify-self: end;
  white-space: nowrap;
  font-size: clamp(.78rem, 2.9vw, .94rem);
  line-height: 1;
}
.product-summary-card .price-preview, .product-summary-card [data-total-price] {
  font-size: clamp(1.65rem, 8vw, 2.65rem) !important;
  line-height: 1 !important;
  overflow-wrap: normal;
  white-space: nowrap;
}
.product-summary-card img, .product-summary-card .product-preview-box img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 767.98px) {
  .product-config-hero {
    padding-block: .45rem !important;
  }
  .product-config-section {
    padding-block: .65rem 1.25rem !important;
  }
  .product-config-section .container {
    padding-inline: .7rem;
  }
  .product-config-section .row.g-4 {
    --bs-gutter-x: 0;
    --bs-gutter-y: .75rem;
  }
  .product-config-section .config-card {
    padding: .82rem !important;
    border-radius: .82rem;
  }
  .product-config-section .config-label, .product-config-section .form-label {
    margin-bottom: .3rem !important;
    font-size: clamp(.75rem, 3.2vw, .86rem);
    line-height: 1.2;
  }
  .product-config-section .form-select, .product-config-section .form-control {
    min-height: 2.55rem;
    padding: .48rem 2rem .48rem .7rem;
    border-radius: .55rem;
    font-size: clamp(.78rem, 3.2vw, .9rem);
    line-height: 1.2;
  }
  .product-config-section .mb-3 {
    margin-bottom: .72rem !important;
  }
  .product-config-section h2.h5, .product-config-section .h5 {
    margin-bottom: .65rem !important;
    font-size: clamp(.98rem, 4.4vw, 1.12rem);
  }
  .product-config-section .quantity-option {
    grid-template-columns: 1rem max-content minmax(.8rem, 1fr) max-content;
    column-gap: .38rem;
    padding-block: .5rem;
  }
  .product-config-section .quantity-check {
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
  }
  .product-config-section .quantity-name, .product-config-section .quantity-option strong {
    font-size: .82rem;
  }
  .product-config-section .addon-option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .45rem;
    padding: .7rem !important;
    font-size: .8rem;
  }
  .product-config-section .addon-option span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .product-config-section .addon-option strong {
    white-space: nowrap;
    font-size: .8rem;
  }
  .product-summary-card {
    text-align: center;
  }
  .product-summary-card .btn, .product-config-section .btn {
    min-height: 2.5rem;
    font-size: .8rem;
    padding: .5rem .75rem;
  }
}
@media (max-width: 374.98px) {
  .product-config-section .container {
    padding-inline: .5rem;
  }
  .product-config-section .config-card {
    padding: .68rem !important;
  }
  .product-config-section .quantity-option {
    grid-template-columns: .95rem max-content minmax(.4rem, 1fr) max-content;
    column-gap: .28rem;
  }
  .product-config-section .quantity-name, .product-config-section .quantity-option strong {
    font-size: .76rem;
  }
  .product-config-section .quantity-line {
    min-width: .35rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-config-section *, .product-config-section *::before, .product-config-section *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* ==========================================================
   Product configurator — centered, moderated commercial layout
   Avoids an overly wide/full-screen appearance on desktop
   ========================================================== */
.product-config-hero > .container, .product-config-section > .container {
  width: min(100% - 2rem, 1180px);
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 0;
}
.product-config-section {
  background: #f4f7fb;
}
.product-config-section .row.g-4 {
  --bs-gutter-x: clamp(.85rem, 1.4vw, 1.25rem);
  --bs-gutter-y: clamp(.85rem, 1.4vw, 1.25rem);
  justify-content: center;
}
.product-config-section .config-card, .product-config-section .product-summary-card {
  border: 1px solid #dfe7f1;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 43, 82, .055);
}
.product-config-section .config-card {
  padding: clamp(.95rem, 1.3vw, 1.2rem) !important;
}
.product-config-section .product-summary-card {
  padding: clamp(1rem, 1.5vw, 1.35rem) !important;
}
.product-config-section .form-select, .product-config-section .form-control {
  border-color: #d4dde8;
  background-color: #f8fafc;
  border-radius: .65rem;
}
.product-config-section .form-select:focus, .product-config-section .form-control:focus {
  border-color: #78aef8;
  box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .11);
  background-color: #fff;
}
.product-config-section .quantity-option {
  border-radius: .55rem;
  transition: background-color .18s ease;
}
.product-config-section .quantity-option:hover {
  background: #f6f9fd;
}
@media (min-width: 1200px) {
  .product-config-section > .container, .product-config-hero > .container {
    max-width: 1160px;
  }
  .product-config-section .row.g-4 > :nth-child(1) {
    flex: 0 0 31%;
    max-width: 31%;
  }
  .product-config-section .row.g-4 > :nth-child(2) {
    flex: 0 0 32%;
    max-width: 32%;
  }
  .product-config-section .row.g-4 > :nth-child(3) {
    flex: 0 0 37%;
    max-width: 37%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-config-hero > .container, .product-config-section > .container {
    width: min(100% - 1.5rem, 1040px);
  }
}
@media (max-width: 991.98px) {
  .product-config-hero > .container, .product-config-section > .container {
    width: min(100% - 1.25rem, 760px);
  }
  .product-config-section .config-card, .product-config-section .product-summary-card {
    border-radius: .9rem;
  }
}
@media (max-width: 575.98px) {
  .product-config-hero > .container, .product-config-section > .container {
    width: calc(100% - 1rem);
  }
  .product-config-section .row.g-4 {
    --bs-gutter-y: .75rem;
  }
  .product-config-section .config-card, .product-config-section .product-summary-card {
    padding: .85rem !important;
    border-radius: .8rem;
    box-shadow: 0 6px 18px rgba(15, 43, 82, .045);
  }
}
/* Detalhes técnicos herdados da categoria principal */
.product-option-details {
  background: #fff;
  border: 1px solid rgba(15, 59, 111, .10);
  border-radius: 1.15rem;
  padding: clamp(1rem, 2.2vw, 1.75rem);
  box-shadow: 0 14px 34px rgba(15, 42, 78, .06);
}
.product-option-details__intro {
  padding: .25rem 0;
}
.product-option-accordion {
  --bs-accordion-border-color: rgba(15, 59, 111, .10);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(13,110,253,.12);
  --bs-accordion-active-bg: #eef5ff;
  --bs-accordion-active-color: #0b3b75;
}
.product-option-accordion .accordion-item {
  border-radius: .85rem !important;
  overflow: hidden;
  margin-bottom: .65rem;
  border: 1px solid rgba(15, 59, 111, .10);
}
.product-option-accordion .accordion-button {
  min-height: 3.25rem;
  gap: .75rem;
  font-weight: 800;
  font-size: clamp(.92rem, 1.5vw, 1rem);
  padding: .8rem 1rem;
}
.product-option-accordion__icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .65rem;
  color: #0d6efd;
  background: #eaf3ff;
  flex: 0 0 auto;
}
.product-option-accordion .accordion-body {
  color: #53647a;
  line-height: 1.65;
  font-size: .94rem;
  padding: .9rem 1rem 1.1rem 3.75rem;
}
@media (max-width: 991.98px) {
  .product-option-details__intro {
    margin-bottom: .25rem;
  }
  .product-option-accordion .accordion-body {
    padding-left: 1rem;
  }
}
@media (max-width: 575.98px) {
  .product-option-details {
    border-radius: .9rem;
    padding: .85rem;
  }
  .product-option-accordion .accordion-button {
    min-height: 2.9rem;
    font-size: .9rem;
    padding: .7rem .8rem;
  }
  .product-option-accordion__icon {
    width: 1.75rem;
    height: 1.75rem;
  }
  .product-option-accordion .accordion-body {
    font-size: .88rem;
    line-height: 1.55;
    padding: .8rem;
  }
}
/* Detalhes técnicos — acordeão final, antes dos produtos relacionados */
.product-option-details {
  max-width: 100%;
}
.product-option-accordion--full {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}
.product-option-accordion--full .accordion-item {
  border: 1px solid #dbe4ef !important;
  border-radius: .85rem !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15,39,71,.05);
}
.product-option-accordion--full .accordion-button {
  font-size: .96rem;
  font-weight: 700;
  padding: .9rem 1rem;
  background: #fff;
  color: #0b2f5b;
  box-shadow: none;
}
.product-option-accordion--full .accordion-button:not(.collapsed) {
  background: #f4f8fd;
  color: #0b5ed7;
}
.product-option-accordion--full .accordion-body {
  font-size: .92rem;
  line-height: 1.65;
  color: #516071;
  padding: 1rem 1.15rem;
  background: #fff;
}
.product-option-accordion__icon {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: .6rem;
  background: #eaf3ff;
  color: #0d6efd;
  margin-right: .75rem;
  flex: 0 0 auto;
}
@media (min-width:992px) {
  .product-option-accordion--full {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .product-option-accordion--full .accordion-item:last-child:nth-child(odd) {
    grid-column: 1/-1;
  }
}
@media (max-width:575.98px) {
  .product-option-details .h4 {
    font-size: 1.15rem;
  }
  .product-option-accordion--full .accordion-button {
    font-size: .9rem;
    padding: .75rem;
  }
  .product-option-accordion--full .accordion-body {
    font-size: .86rem;
    padding: .85rem;
  }
}
/* ==========================================================
   Área do cliente — painel lateral e cabeçalho de conta
   ========================================================== */
.client-dashboard-section {
  padding: clamp(1.25rem,3vw,2.5rem) 0 4rem;
  background: #f3f7fc;
  min-height: 70vh;
}
.client-area-container {
  max-width: 1440px;
}
.client-layout {
  display: grid;
  grid-template-columns: 250px minmax(0,1fr);
  gap: clamp(1rem,2vw,1.5rem);
  align-items: start;
}
.client-main {
  min-width: 0;
}
.client-sidebar {
  position: sticky;
  top: calc(var(--public-header-offset,96px) + 1rem);
  min-height: calc(100dvh - var(--public-header-offset,96px) - 2rem);
  flex-direction: column;
  padding: 1rem;
  border-radius: 1.15rem;
  background: linear-gradient(180deg,#071a34 0%,#0a2447 100%);
  color: #fff;
  box-shadow: 0 18px 45px rgba(2,20,45,.18);
}
.client-sidebar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  padding: .35rem;
}
.client-sidebar-brand strong {
  display: block;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .92rem;
}
.client-sidebar-brand small {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: .74rem;
}
.client-sidebar-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: .8rem;
  background: linear-gradient(135deg,#1475ff,#24c2dc);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(19,116,255,.3);
}
.client-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: .28rem;
}
.client-sidebar-link {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-height: 44px;
  padding: .68rem .78rem;
  border-radius: .8rem;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 750;
  transition: background .18s ease,color .18s ease,transform .18s ease;
}
.client-sidebar-link i {
  width: 22px;
  text-align: center;
  font-size: 1rem;
}
.client-sidebar-link:hover,.client-sidebar-link:focus-visible {
  background: rgba(255,255,255,.1);
  color: #fff;
  transform: translateX(2px);
}
.client-sidebar-link.active {
  background: linear-gradient(135deg,#1475ff,#0964dd);
  color: #fff;
  box-shadow: 0 10px 24px rgba(9,100,221,.28);
}
.client-sidebar-separator {
  height: 1px;
  margin: .55rem .25rem;
  background: rgba(255,255,255,.12);
}
.client-sidebar-logout {
  color: #ffb9b9;
}
.client-sidebar-mobile-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  border: 1px solid #d8e4f2;
  background: #fff;
  color: #10345f;
  box-shadow: 0 8px 20px rgba(15,43,82,.07);
}
.client-sidebar-offcanvas {
  width: min(310px,88vw);
  background: linear-gradient(180deg,#071a34 0%,#0a2447 100%);
  color: #fff;
}
.client-sidebar-offcanvas .btn-close {
  filter: invert(1);
  opacity: .85;
}
.client-sidebar-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.client-account-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  padding: clamp(1.2rem,3vw,2rem);
  border-radius: 1.25rem;
  background: radial-gradient(circle at 15% 10%,rgba(255,255,255,.14),transparent 35%),linear-gradient(135deg,#073673 0%,#0d6efd 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(7,54,115,.22);
}
.client-account-kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #dbeafe;
}
.client-account-hero h1 {
  margin: .35rem 0 .25rem;
  font-size: clamp(1.45rem,3.2vw,2.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
}
.client-account-hero p {
  margin: 0;
  color: rgba(255,255,255,.78);
}
.client-account-balance-card {
  flex: 0 0 auto;
  min-width: 235px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.client-account-balance-card>span {
  display: block;
  font-size: .74rem;
  color: rgba(255,255,255,.72);
}
.client-account-balance-card>strong {
  display: block;
  margin: .15rem 0 .7rem;
  font-size: clamp(1.4rem,2.4vw,1.85rem);
}
.client-account-balance-card .btn {
  width: 100%;
  color: #073673;
}
.client-panel-eyebrow {
  display: block;
  margin-bottom: .15rem;
  color: #0d6efd;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.client-panel-modern {
  padding: clamp(1rem,2vw,1.4rem);
  background: #fff;
}
.client-panel-modern .table {
  margin-bottom: 0;
}
.client-panel-modern .table th {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #52657d;
  white-space: nowrap;
}
@media (max-width:991.98px) {
  .client-layout {
    display: block;
  }
  .client-account-hero {
    align-items: stretch;
    flex-direction: column;
  }
  .client-account-balance-card {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width:575.98px) {
  .client-dashboard-section {
    padding-top: 1rem;
  }
  .client-area-container {
    padding-inline: .75rem;
  }
  .client-account-hero {
    padding: 1rem;
    border-radius: 1rem;
  }
  .client-account-hero h1 {
    font-size: 1.35rem;
  }
  .client-account-hero p {
    font-size: .86rem;
  }
  .client-account-balance-card {
    padding: .85rem;
  }
  .client-metric-modern {
    padding: .78rem;
    gap: .6rem;
  }
  .client-metric-modern i {
    width: 36px;
    height: 36px;
  }
  .client-metric-modern strong {
    font-size: 1.25rem;
  }
  .client-panel-modern {
    padding: .9rem;
    border-radius: 1rem;
  }
}
@media (prefers-reduced-motion:reduce) {
  .client-sidebar-link {
    transition: none;
  }
}
.checkout-delivery-mode-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: .85rem;
}
.checkout-delivery-mode {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  width: 100%;
  min-height: 92px;
  padding: 1rem;
  border: 1px solid #d8e4f2;
  border-radius: 1rem;
  background: #fff;
  color: #0b1f3a;
  text-align: left;
  box-shadow: 0 10px 24px rgba(15,43,82,.06);
  transition: border-color .18s ease,box-shadow .18s ease,transform .18s ease,background .18s ease;
}
.checkout-delivery-mode:hover, .checkout-delivery-mode:focus-visible {
  border-color: #0d6efd;
  box-shadow: 0 16px 34px rgba(13,110,253,.13);
  transform: translateY(-1px);
}
.checkout-delivery-mode.active {
  border-color: #0d6efd;
  background: linear-gradient(180deg,#f8fbff 0%,#eef6ff 100%);
  box-shadow: inset 0 0 0 1px rgba(13,110,253,.25),0 14px 30px rgba(13,110,253,.12);
}
.checkout-delivery-mode .mode-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: .9rem;
  background: #eaf3ff;
  color: #0d6efd;
  font-size: 1.18rem;
}
.checkout-delivery-mode strong {
  display: block;
  font-size: .98rem;
  font-weight: 900;
}
.checkout-delivery-mode small {
  display: block;
  margin-top: .18rem;
  color: #61728a;
  line-height: 1.35;
}
.delivery-store-address {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem .75rem;
  border-radius: .8rem;
  background: #eef6ff;
  color: #073673;
  font-weight: 800;
  line-height: 1.35;
}
@media (max-width:767.98px) {
  .checkout-delivery-mode-grid {
    grid-template-columns: 1fr;
  }
  .checkout-delivery-mode {
    min-height: auto;
  }
}
/* Home: categorias e comentarios mais leves */
.catalog-home-panel .home-category-action {
  min-width: 112px;
  min-height: 34px;
  padding: .42rem .82rem;
  font-size: .78rem;
  line-height: 1;
  white-space: nowrap;
}

/* Sobre nos */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: radial-gradient(circle at 8% 18%, rgba(255, 122, 0, .11), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(13, 110, 253, .12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}
.about-hero h1 {
  max-width: 640px;
  margin: .55rem 0 1rem;
  color: #061934;
  font-size: clamp(2.2rem, 5.2vw, 4.7rem);
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.06em;
}
.about-lead {
  max-width: 640px;
  color: #475569;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}
.about-text {
  max-width: 620px;
  color: #64748b;
  line-height: 1.75;
}
.about-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}
.about-visual-main {
  position: relative;
  z-index: 2;
  width: min(420px, 88vw);
  min-height: 320px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: .75rem;
  padding: 2rem;
  border: 1px solid rgba(13, 110, 253, .18);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,.68)),
    radial-gradient(circle at 80% 20%, rgba(255,122,0,.18), transparent 30%);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .12);
  backdrop-filter: blur(12px);
  text-align: center;
}
.about-mark {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #0d6efd);
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -.08em;
  box-shadow: 0 18px 38px rgba(7, 54, 115, .24);
}
.about-visual-main strong {
  color: #061934;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 950;
}
.about-visual-main small {
  max-width: 300px;
  color: #64748b;
  font-size: .96rem;
  line-height: 1.55;
}
.about-floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: .15rem;
  min-width: 168px;
  padding: .95rem 1rem;
  border: 1px solid #dbe7f3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .12);
}
.about-floating-card i {
  color: var(--accent);
  font-size: 1.2rem;
}
.about-floating-card span {
  color: #64748b;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.about-floating-card strong {
  color: #061934;
  font-size: 1.08rem;
  font-weight: 950;
}
.about-floating-card-one {
  top: 28px;
  left: 0;
}
.about-floating-card-two {
  right: 0;
  bottom: 38px;
}
.about-pattern {
  position: absolute;
  inset: 8% 4%;
  border-radius: 40px;
  background-image: linear-gradient(rgba(13,110,253,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,110,253,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle, #000 0%, transparent 72%);
}
.about-stats {
  margin-top: -2rem;
  position: relative;
  z-index: 4;
}
.about-stat-card {
  height: 100%;
  padding: 1.15rem;
  border: 1px solid #dbe7f3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15,23,42,.075);
}
.about-stat-card strong {
  display: block;
  color: var(--primary);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 950;
  line-height: 1;
}
.about-stat-card span {
  display: block;
  margin-top: .45rem;
  color: #64748b;
  font-size: .86rem;
  font-weight: 780;
}
.about-story-section {
  background: #fff;
}
.about-founder-card, .about-timeline, .about-value-card {
  border: 1px solid #dbe7f3;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(15,23,42,.065);
}
.about-founder-card {
  padding: clamp(1.4rem, 3vw, 2rem);
}
.about-founder-avatar {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #e8f1ff, #fff4e8);
}
.about-founder-avatar span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #0d6efd);
  font-weight: 950;
  font-size: 1.45rem;
}
.about-founder-card h2, .about-value-card h2 {
  color: #061934;
  font-weight: 950;
  letter-spacing: -.035em;
}
.about-founder-card p, .about-value-card p, .about-timeline-item p {
  color: #64748b;
  line-height: 1.7;
}
.about-contact-list {
  display: grid;
  gap: .65rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}
.about-contact-list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  color: #334155;
  font-weight: 750;
}
.about-contact-list i {
  color: var(--primary);
}
.about-timeline {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.about-timeline-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e5edf7;
  border-radius: 18px;
  background: #fff;
}
.about-timeline-item > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--primary);
  font-weight: 950;
}
.about-timeline-item h3 {
  margin-bottom: .25rem;
  color: #061934;
  font-size: 1.05rem;
  font-weight: 950;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.about-value-card {
  padding: clamp(1.25rem, 3vw, 1.7rem);
  transition: transform .18s ease, box-shadow .18s ease;
}
.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(15,23,42,.10);
}
.about-value-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  color: var(--primary);
  background: #eef6ff;
  font-size: 1.35rem;
}
.about-cta {
  padding: 0 0 4rem;
  background: #fff;
}
.about-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 26px;
  color: #fff;
  background: radial-gradient(circle at 90% 20%, rgba(255,122,0,.24), transparent 26%),
    linear-gradient(135deg, var(--primary), #061934);
  box-shadow: 0 24px 70px rgba(7, 54, 115, .20);
}
.about-cta-box h2 {
  max-width: 720px;
  margin: .25rem 0 0;
  font-weight: 950;
  letter-spacing: -.035em;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 1.05rem;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.footer-social a:hover, .footer-social a:focus-visible {
  color: #fff;
  background: var(--primary-2);
  border-color: rgba(255,255,255,.34);
  transform: translateY(-2px);
}
.footer-address-line {
  display: flex;
  align-items: flex-start;
  gap: .15rem;
  line-height: 1.45;
}
.footer-address-line i {
  flex: 0 0 auto;
  margin-top: .15rem;
}
.footer-address-line span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.footer-address-line strong {
  color: rgba(255,255,255,.9);
}
@media (max-width: 991.98px) {
  .about-visual {
    min-height: 360px;
  }
  .about-floating-card-one {
    left: 1rem;
  }
  .about-floating-card-two {
    right: 1rem;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .about-visual {
    min-height: 420px;
  }
  .about-floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 260px;
  }
  .about-visual {
    gap: .75rem;
  }
  .about-visual-main {
    min-height: 240px;
    border-radius: 24px;
  }
  .about-timeline-item {
    grid-template-columns: 1fr;
  }
}

.product-trust-list {
  display: grid;
  gap: .55rem;
  padding: .9rem;
  border: 1px solid #dbe7f3;
  border-radius: .9rem;
  background: #f8fbff;
  color: #334155;
  font-size: .86rem;
  font-weight: 750;
}
.product-trust-list span {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.product-trust-list i {
  color: var(--primary);
  font-size: 1rem;
}
.campaign-hero {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: radial-gradient(circle at 78% 20%, rgba(13,110,253,.18), transparent 32%),
    linear-gradient(135deg, #071d3d 0%, #083f83 54%, #0f9f8d 100%);
  color: #fff;
}
.campaign-hero-card {
  max-width: 860px;
}
.campaign-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #ff8a00;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.campaign-hero h1 {
  max-width: 760px;
  margin: .75rem 0 1rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 950;
  line-height: .98;
}
.campaign-hero p {
  max-width: 680px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}
.campaign-actions, .campaign-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.25rem;
}
.campaign-metrics span {
  padding: .75rem 1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.86);
  font-size: .9rem;
}
.campaign-metrics strong {
  color: #fff;
}
.campaign-section, .campaign-proof {
  padding: clamp(2.25rem, 5vw, 4rem) 0;
  background: #f4f9fc;
}
.campaign-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.campaign-section-head h2 {
  margin: .25rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 950;
}
.campaign-section-head a {
  color: var(--primary);
  font-weight: 850;
  text-decoration: none;
}
.campaign-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.campaign-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: .8rem;
  border: 1px solid #dce8f4;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15,23,42,.07);
  color: var(--dark);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.campaign-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(13,110,253,.45);
  box-shadow: 0 20px 44px rgba(15,23,42,.11);
}
.campaign-product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  margin-bottom: .8rem;
  border-radius: .75rem;
  background: #f1f5f9;
  overflow: hidden;
}
.campaign-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.campaign-product-card strong {
  min-height: 2.4em;
  font-weight: 900;
  line-height: 1.18;
}
.campaign-product-card small {
  color: #64748b;
}
.campaign-product-card em {
  margin-top: .55rem;
  color: #dc0b1f;
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 950;
}
.campaign-empty, .campaign-proof-card, .campaign-faq-card, .success-growth-panel {
  border: 1px solid #dbe7f3;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15,23,42,.07);
}
.campaign-empty {
  padding: 2rem;
}
.campaign-proof-card {
  height: 100%;
  padding: 1.25rem;
}
.campaign-proof-card i, .success-step-card i {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: .75rem;
  border-radius: .8rem;
  background: #e8f1ff;
  color: var(--primary);
  font-size: 1.15rem;
}
.campaign-proof-card strong, .success-step-card strong {
  display: block;
  color: var(--dark);
  font-weight: 900;
}
.campaign-proof-card span, .success-step-card span {
  display: block;
  margin-top: .25rem;
  color: #64748b;
  font-size: .92rem;
}
.success-growth-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}
.success-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin: 1.25rem 0;
}
.success-step-card {
  padding: 1rem;
  border: 1px solid #e2eaf3;
  border-radius: 1rem;
  background: #f8fbff;
}
.campaign-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.campaign-faq-card {
  padding: 1.25rem;
}
.campaign-faq-card h3 {
  margin: 0 0 .55rem;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 950;
}
.campaign-faq-card p {
  margin: 0;
  color: #64748b;
}
.reseller-hero {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: radial-gradient(circle at 78% 28%, rgba(255,122,0,.28), transparent 30%),
    linear-gradient(135deg, #061a35 0%, #073673 58%, #0d6efd 100%);
  color: #fff;
}
.reseller-hero h1 {
  max-width: 780px;
  margin: .8rem 0 1rem;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  font-weight: 950;
  line-height: .98;
}
.reseller-hero p {
  max-width: 720px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}
.reseller-panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1.5rem;
  background: rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.reseller-panel > div {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.94);
  color: var(--dark);
}
.reseller-panel strong, .reseller-panel span {
  display: block;
}
.reseller-panel span {
  margin-top: .25rem;
  color: #64748b;
  font-size: .93rem;
}
.reseller-panel i {
  justify-self: center;
  color: #fff;
  font-size: 1.6rem;
}
@media (max-width: 991.98px) {
  .campaign-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .success-step-grid {
    grid-template-columns: 1fr;
  }
  .campaign-faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .campaign-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .campaign-products-grid {
    grid-template-columns: 1fr;
  }
  .campaign-actions .btn {
    width: 100%;
  }
}
.contact-page {
  padding: clamp(1.35rem, 3.5vw, 3rem) 0 clamp(2.25rem, 5vw, 4.75rem);
  background: radial-gradient(circle at 15% 0%, rgba(13, 110, 253, .10), transparent 34%), linear-gradient(180deg, #f4f9ff 0%, #fff 72%);
}
.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.contact-channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 102px;
  padding: .9rem .75rem;
  border: 1px solid #dbe7f3;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, #f8fbff);
  color: #46566b;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.contact-channel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 110, 253, .38);
  box-shadow: 0 18px 42px rgba(13, 110, 253, .11);
}
.contact-channel-card i {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eaf4ff;
  color: #0d6efd;
  font-size: 1.12rem;
  flex: 0 0 auto;
}
.contact-channel-card strong {
  display: block;
  color: #061934;
  font-weight: 950;
  margin-bottom: .12rem;
  font-size: .98rem;
}
.contact-channel-card span {
  min-width: 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
  width: 100%;
}
.contact-channel-card small {
  display: -webkit-box;
  color: #52647a;
  font-size: .86rem;
  line-height: 1.25;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}
.contact-hero-copy, .contact-info-card, .contact-smart-form, .contact-map-card {
  border: 1px solid #dbe7f3;
  background: rgba(255, 255, 255, .96);
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(15, 23, 42, .07);
}
.contact-hero-copy {
  padding: clamp(1.35rem, 3vw, 2.4rem);
}
.contact-hero-copy h1 {
  max-width: 720px;
  margin: .65rem 0 .9rem;
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: 1;
  font-size: clamp(2.15rem, 6vw, 4.2rem);
  color: #061934;
}
.contact-hero-copy p {
  max-width: 650px;
  color: #536277;
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  line-height: 1.65;
}
.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.35rem;
}
.contact-info-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-kicker {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #eef6ff;
  color: #0d4c8f;
  padding: .34rem .72rem;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.contact-info-list {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-info-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .85rem;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, #f8fbff);
}
.contact-info-list i {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #eaf4ff;
  color: #0d6efd;
  font-size: 1.1rem;
  flex: 0 0 auto;
}
.contact-info-list strong {
  display: block;
  color: #061934;
  font-weight: 900;
}
.contact-info-list span {
  min-width: 0;
  color: #46566b;
  overflow-wrap: anywhere;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 1.5rem;
  align-items: start;
}
.contact-smart-form, .contact-map-card {
  padding: clamp(1.15rem, 2vw, 1.5rem);
}
.contact-form-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0d6efd, #06b6d4);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 14px 30px rgba(13, 110, 253, .22);
  flex: 0 0 auto;
}
.contact-form-head h2 {
  margin: 0 0 .25rem;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 950;
  color: #061934;
  letter-spacing: -.03em;
}
.contact-form-head p {
  margin: 0;
  color: #64748b;
  line-height: 1.5;
}
.contact-smart-form .form-label {
  font-weight: 850;
  color: #26364b;
  margin-bottom: .38rem;
}
.contact-smart-form .form-control, .contact-smart-form .form-select {
  min-height: 48px;
  border-radius: 14px;
  border-color: #d7e3f5;
  background: #fbfdff;
}
.contact-smart-form textarea.form-control {
  min-height: 132px;
  resize: vertical;
}
.contact-smart-form .form-control:focus, .contact-smart-form .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .12);
  background: #fff;
}
.contact-counter {
  text-align: right;
  color: #64748b;
  font-size: .78rem;
  margin-top: .3rem;
}
.contact-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #edf2f7;
}
.contact-form-note {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: #64748b;
  font-size: .9rem;
}
.contact-form-note i {
  color: #0d6efd;
}
.contact-map-card {
  position: sticky;
  top: 1rem;
}
.contact-map-visual {
  min-height: 290px;
  border-radius: 20px;
  background: linear-gradient(135deg, #073673, #0d6efd 55%, #00a8e8);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}
.contact-map-visual:before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 16px;
}
.contact-map-visual i {
  font-size: 3rem;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .24));
}
.contact-map-visual strong {
  display: block;
  max-width: 240px;
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -.02em;
}
.contact-map-body {
  padding-top: 1rem;
}
.contact-map-body p {
  color: #64748b;
  line-height: 1.6;
}
.contact-map-list {
  display: grid;
  gap: .9rem;
}
.contact-location-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: .9rem;
  align-items: stretch;
  padding: .85rem;
  border: 1px solid #dbe7f3;
  border-radius: 18px;
  background: #fff;
}
.contact-location-card strong {
  display: block;
  color: #061934;
  font-weight: 950;
  margin-bottom: .25rem;
}
.contact-location-card p {
  color: #64748b;
  font-size: .92rem;
  line-height: 1.35;
  margin-bottom: .65rem;
}
.contact-map-visual--small {
  min-height: 100%;
  border-radius: 14px;
}
.contact-map-visual--small i {
  font-size: 1.7rem;
}
.contact-map-visual--small:before, .contact-map-visual--small strong {
  display: none;
}
@media (max-width: 991.98px) {
  .contact-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-hero, .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-card {
    position: static;
  }
  .contact-map-visual {
    min-height: 220px;
  }
  .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .contact-form-footer .btn {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .contact-page {
    padding-top: 1.5rem;
  }
  .contact-channel-grid {
    grid-template-columns: 1fr;
  }
  .contact-channel-card {
    min-height: 82px;
    border-radius: 16px;
  }
  .contact-hero-copy, .contact-info-card, .contact-smart-form, .contact-map-card {
    border-radius: 18px;
  }
  .contact-quick-actions .btn {
    width: 100%;
  }
  .contact-form-head {
    flex-direction: column;
  }
  .contact-info-list li {
    padding: .72rem;
  }
  .contact-map-visual {
    min-height: 190px;
  }
  .contact-location-card {
    grid-template-columns: 1fr;
  }
  .contact-map-visual--small {
    min-height: 96px;
  }
}
/* Envio de arte: botao de video alinhado ao status do PDF */
.prepress-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .65rem;
  flex-wrap: wrap;
  min-width: 0;
}
.prepress-card-actions .prepress-video-btn, .prepress-card-actions .prepress-status {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  white-space: nowrap;
}
.prepress-video-btn {
  padding-inline: .9rem;
  font-weight: 850;
}
.upload-video-dialog {
  width: min(94vw,980px);
  max-width: 980px;
  margin-inline: auto;
}
.upload-video-modal {
  max-height: calc(100dvh - 2rem);
}
.upload-video-body {
  display: grid;
  place-items: center;
  padding: clamp(.5rem,1.4vw,1rem) !important;
}
.upload-video-frame {
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  max-height: calc(100dvh - 8.5rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0 0 1rem 1rem;
  background: #000;
}
.upload-video-frame iframe, .upload-video-frame video {
  width: 100%;
  height: 100%;
  max-height: inherit;
  border: 0;
  display: block;
  object-fit: contain;
}
@media (max-width:767.98px) {
  .prepress-card-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .upload-video-dialog {
    width: calc(100vw - 1rem);
    max-width: none;
    margin: .5rem auto;
  }
  .upload-video-modal {
    max-height: calc(100dvh - 1rem);
    border-radius: 1rem !important;
  }
  .upload-video-frame {
    max-height: calc(100dvh - 7rem);
  }
}
@media (max-width:420px) {
  .prepress-card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .prepress-card-actions .prepress-video-btn, .prepress-card-actions .prepress-status {
    width: 100%;
  }
  .upload-video-body {
    padding: .35rem !important;
  }
}
.checkout-progress {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  border: 1px solid #d9e6f4;
  border-radius: 1.25rem;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 42px rgba(8,38,76,.08);
  overflow-x: auto;
}
.checkout-progress-step {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: #52657b;
  font-size: .86rem;
  font-weight: 850;
  white-space: nowrap;
}
.checkout-progress-step span {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid #cddbeb;
  background: #fff;
  color: #51657b;
  font-weight: 900;
}
.checkout-progress-step.is-done span {
  border-color: #16a34a;
  background: #16a34a;
  color: #fff;
  box-shadow: 0 8px 18px rgba(22, 163, 74, .22);
}
.checkout-progress-step.is-done strong {
  color: #166534;
}
.checkout-progress-step.is-active span {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.checkout-progress-step.is-active strong {
  color: #001b3f;
}
.checkout-progress-step.is-done + .checkout-progress-line {
  background: linear-gradient(90deg, #16a34a, #bbf7d0);
}
.checkout-progress-line {
  flex: 1 1 52px;
  min-width: 34px;
  height: 2px;
  border-radius: 999px;
  background: #d8e4f2;
}
.product-mobile-cta {
  position: fixed;
  left: .75rem;
  right: .75rem;
  bottom: .75rem;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  padding: .75rem;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 1.15rem;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 54px rgba(0,20,48,.22);
  backdrop-filter: blur(12px);
}
.product-mobile-cta small {
  display: block;
  color: #617187;
  font-size: .72rem;
  line-height: 1;
}
.product-mobile-cta strong {
  display: block;
  color: #e30613;
  font-size: 1.1rem;
  line-height: 1.1;
}
.product-mobile-cta .btn {
  min-width: 148px;
  font-weight: 900;
  border-radius: .85rem;
}
@media (max-width:575.98px) {
  .checkout-progress {
    gap: .55rem;
    padding: .75rem;
  }
  .checkout-progress-step {
    font-size: .78rem;
  }
  .checkout-progress-step span {
    width: 1.75rem;
    height: 1.75rem;
  }
  .product-mobile-cta {
    left: .5rem;
    right: .5rem;
    bottom: .5rem;
  }
  .product-mobile-cta .btn {
    min-width: 132px;
    padding-inline: .75rem;
  }
}
.prepress-preview-files {
  --preview-aspect: 1.78;
  align-items: start;
}
.prepress-preview-file {
  min-height: 0;
}
.prepress-canvas-wrap {
  aspect-ratio: var(--preview-aspect);
  background: #242424;
  border-radius: 12px;
  display: grid;
  min-height: 160px;
  overflow: hidden;
  padding: .65rem;
  place-items: center;
  width: 100%;
}
.prepress-canvas-status {
  align-self: center;
  color: #cbd5e1;
  font-size: .86rem;
  font-weight: 800;
  grid-area: 1 / 1;
  justify-self: center;
  text-align: center;
}
.prepress-pdf-canvas {
  display: block;
  grid-area: 1 / 1;
  height: auto !important;
  max-height: 100%;
  max-width: 100%;
  width: auto !important;
}
@media (max-width:767.98px) {
  .prepress-canvas-wrap {
    min-height: 140px;
  }
}
.prepress-upload-text {
  min-width: 0;
}
.prepress-file-progress {
  display: block;
  width: 100%;
  height: 7px;
  margin-top: .55rem;
  border-radius: 999px;
  background: #e8eef6;
  overflow: hidden;
}
.prepress-file-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,#0d6efd,#10b981);
  transition: width .18s ease;
}
.prepress-file-status {
  display: block;
  margin-top: .35rem;
  color: #64748b;
  font-weight: 800;
}
.prepress-upload-button.is-uploading {
  border-color: #0d6efd;
  box-shadow: 0 12px 28px rgba(13,110,253,.14);
}
.prepress-upload-button.is-uploaded {
  border-color: #22c55e;
  background: linear-gradient(135deg,#ffffff,#f0fdf4);
}
.prepress-upload-button.is-uploaded .prepress-file-status {
  color: #15803d;
}
.prepress-upload-button.is-error {
  border-color: #ef4444;
  background: #fff7f7;
}
.prepress-upload-button.is-error .prepress-file-status {
  color: #b91c1c;
}
.prepress-pdf-preview {
  background: #eef3f8 !important;
  background-image: none !important;
  padding: clamp(.65rem,1.35vw,1rem) !important;
}
.prepress-preview-files {
  gap: .75rem;
  max-width: 820px;
}
.prepress-preview-file {
  background: transparent !important;
  box-shadow: none !important;
  gap: .45rem;
  padding: .25rem;
}
.prepress-canvas-wrap {
  background: rgba(255,255,255,.42) !important;
  border: 1px solid #d9e3ef;
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
  min-height: 130px;
  padding: .42rem;
}
.prepress-pdf-canvas {
  background: #fff;
  box-shadow: 0 8px 18px rgba(15,23,42,.14);
}
@media (max-width:767.98px) {
  .prepress-pdf-preview {
    padding: .55rem !important;
  }
  .prepress-preview-files {
    gap: .65rem;
  }
  .prepress-canvas-wrap {
    min-height: 120px;
  }
}
.artwork-rule-grid, .artwork-mode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: .75rem;
}
.artwork-rule-card, .artwork-mode-option, .ready-model-choice {
  position: relative;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  height: 100%;
  border: 1px solid #d7e2f0;
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
  transition: border-color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.artwork-rule-card:hover, .artwork-mode-option:hover, .ready-model-choice:hover {
  border-color: #0d6efd;
  box-shadow: 0 12px 28px rgba(13,110,253,.1);
  transform: translateY(-1px);
}
.artwork-rule-card input, .artwork-mode-option input, .ready-model-choice input {
  margin-top: .25rem;
}
.artwork-rule-card strong, .artwork-mode-option strong, .ready-model-choice strong {
  display: block;
  color: #061b3a;
  font-size: .95rem;
}
.artwork-rule-card span, .artwork-mode-option span, .ready-model-choice span {
  display: block;
  color: #60718a;
  font-size: .82rem;
  line-height: 1.35;
}
.ready-model-lines {
  display: grid;
  gap: .85rem;
}
.ready-model-row {
  border: 1px solid #d7e2f0;
  border-radius: 18px;
  background: #fff;
  padding: 1rem;
}
.ready-model-row-removed {
  display: none;
}
.ready-model-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(170px,1fr));
  gap: .75rem;
}
.ready-model-choice {
  cursor: pointer;
  flex-direction: column;
  overflow: hidden;
}
.ready-model-choice input {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
}
.ready-model-choice:has(input:checked) {
  border-color: #0d6efd;
  box-shadow: 0 14px 32px rgba(13,110,253,.14);
}
.ready-model-choice-media {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  background: #f1f5f9;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ready-model-choice-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ready-model-choice-body {
  padding: .15rem .1rem 0;
}
.ready-model-choice-price {
  margin-top: .35rem;
  color: #0d6efd;
  font-weight: 900;
  font-size: .9rem;
}
.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #fff !important;
  font-size: .78rem;
  font-weight: 800;
  padding: .22rem .6rem;
  white-space: nowrap;
}
.footer-map-link:hover {
  background: rgba(255,255,255,.1);
}
.checkout-store-units {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: .65rem;
}
.checkout-store-unit {
  display: grid;
  gap: .25rem;
  border: 1px solid #d7e3f5;
  border-radius: 14px;
  background: #fff;
  padding: .8rem;
}
.checkout-store-unit strong {
  color: #061934;
  font-size: .9rem;
}
.checkout-store-unit span {
  color: #64748b;
  font-size: .86rem;
  line-height: 1.35;
}
.checkout-store-unit a {
  width: max-content;
  color: #0d6efd;
  font-size: .82rem;
  font-weight: 850;
}
@media (max-width:575.98px) {
  .checkout-store-units {
    grid-template-columns: 1fr;
  }
  .footer-address-line {
    align-items: flex-start !important;
    flex-direction: column;
  }
}
.checkout-store-unit {
  position: relative;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.checkout-store-unit.selected {
  border-color: #0d6efd;
  background: linear-gradient(180deg,#f8fbff 0%,#eef6ff 100%);
  box-shadow: inset 0 0 0 1px rgba(13,110,253,.18),0 10px 24px rgba(13,110,253,.10);
}
.checkout-store-unit .store-unit-check {
  position: absolute;
  top: .65rem;
  right: .65rem;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #e2e8f0;
  color: transparent;
  font-size: .78rem;
}
.checkout-store-unit.selected .store-unit-check {
  background: #0d6efd;
  color: #fff;
}
.checkout-store-unit strong,.checkout-store-unit span {
  padding-right: 1.9rem;
}
.launch-popup[hidden] {
  display: none !important;
}
.launch-popup {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: clamp(1rem,3vw,2rem);
}
.launch-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,10,25,.64);
  backdrop-filter: blur(4px);
}
.launch-popup-dialog {
  position: relative;
  width: min(920px,calc(100vw - 2rem));
  max-height: min(86vh,760px);
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(2,10,25,.35);
}
.launch-popup-close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(2,10,25,.78);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
}
.launch-popup-title {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  max-width: calc(100% - 5rem);
  border-radius: 999px;
  background: rgba(2,10,25,.72);
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .03em;
  padding: .42rem .85rem;
}
.launch-popup-link, .launch-popup-image {
  display: block;
}
.launch-popup-image {
  width: 100%;
  max-height: min(82vh,720px);
  object-fit: contain;
  background: #fff;
}
body.launch-popup-open {
  overflow: hidden;
}
@media (max-width:575.98px) {
  .launch-popup {
    padding: .75rem;
  }
  .launch-popup-dialog {
    width: calc(100vw - 1.5rem);
    border-radius: 18px;
  }
  .launch-popup-close {
    width: 34px;
    height: 34px;
  }
}
.art-help-panel {
  border: 1px solid #dce7f5;
  border-radius: .95rem;
  background: linear-gradient(180deg,#fff,#f8fbff);
  padding: .85rem;
}
.art-help-title {
  display: block;
  margin-bottom: .65rem;
  color: #061934;
  font-weight: 900;
  font-size: .9rem;
  line-height: 1.15;
}
.art-help-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: .45rem;
}
.art-help-button {
  min-width: 0;
  border: 1px solid #d7e5f6;
  border-radius: .8rem;
  background: #fff;
  color: #073673;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .28rem;
  min-height: 72px;
  padding: .55rem .35rem;
  font-weight: 850;
  font-size: .72rem;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 8px 18px rgba(15,23,42,.045);
  transition: transform .16s ease,border-color .16s ease,box-shadow .16s ease;
}
.art-help-button i,.art-help-custom-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #eef6ff;
  font-size: 1rem;
}
.art-help-custom-icon{object-fit:contain;padding:3px;background:#fff}
.art-help-button:hover,.art-help-button:focus {
  transform: translateY(-2px);
  border-color: #0d6efd;
  box-shadow: 0 12px 24px rgba(13,110,253,.12);
}
.art-template-download {
  margin-top: .65rem;
  border-radius: .8rem;
  background: #073673;
  color: #fff;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .55rem .75rem;
  font-size: .82rem;
  font-weight: 900;
}
.art-template-download:hover {
  color: #fff;
  background: #0d4fa4;
}
.art-facility-modal {
  border: 0;
  border-radius: 1.2rem;
  overflow: hidden;
}
.art-facility-image,.art-facility-empty {
  min-height: 220px;
  border-radius: 1rem;
  background: #f1f5f9;
  border: 1px solid #dce7f5;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.art-facility-image img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: contain;
}
.art-facility-empty i {
  font-size: 3rem;
  color: #0d6efd;
}

.art-facility-browser{border:1px solid #d9e5f4;border-radius:1rem;background:#f8fafc;overflow:hidden}.art-facility-browser-toolbar{min-height:48px;padding:.55rem .7rem;display:flex;align-items:center;justify-content:space-between;gap:.75rem;background:#fff;border-bottom:1px solid #e2e8f0}.art-facility-browser iframe{display:block;width:100%;height:min(62vh,620px);border:0;background:#fff}.art-facility-frame-help{padding:.45rem .7rem;font-size:.7rem;color:#64748b;background:#f8fafc;border-top:1px solid #e2e8f0}.art-facility-summary-compact{margin-top:.25rem}.art-facility-summary-compact .art-facility-image,.art-facility-summary-compact .art-facility-empty{min-height:120px}.art-facility-summary-compact .art-facility-image img{max-height:150px}@media(max-width:767.98px){.art-facility-browser iframe{height:58vh}.art-facility-browser-toolbar{align-items:flex-start;flex-direction:column}.art-facility-browser-toolbar .btn{width:100%}}
@media (max-width:1199.98px) {
  .art-help-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}
@media (max-width:991.98px) {
  .art-help-grid {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }
}
@media (max-width:575.98px) {
  .art-help-panel {
    padding: .75rem;
  }
  .art-help-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .art-help-button {
    min-height: 66px;
    font-size: .7rem;
  }
  .art-facility-image,.art-facility-empty {
    min-height: 170px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Galeria de imagens do produto */
.product-gallery-trigger{position:relative;width:100%;height:100%;min-height:295px;display:grid;place-items:center;border:0;background:#fff;padding:0;cursor:zoom-in}.product-gallery-trigger img{transition:opacity .2s ease,transform .25s ease}.product-gallery-trigger:hover img{transform:scale(1.015)}.product-gallery-trigger img.is-changing{opacity:.25}.product-gallery-hint{position:absolute;right:.65rem;bottom:.65rem;display:inline-flex;align-items:center;gap:.35rem;border-radius:999px;background:rgba(3,25,56,.82);color:#fff;padding:.42rem .72rem;font-size:.74rem;font-weight:850;box-shadow:0 8px 22px rgba(3,25,56,.2);pointer-events:none}.product-gallery-modal .modal-content{border:0;border-radius:1.25rem;overflow:hidden}.product-gallery-modal-main{display:grid;place-items:center;min-height:min(58vh,560px);border:1px solid #e2e8f0;border-radius:1rem;background:#f8fafc;overflow:hidden}.product-gallery-modal-main img{display:block;width:100%;height:min(58vh,560px);object-fit:contain;padding:.75rem}.product-gallery-modal-thumbs{display:flex;gap:.65rem;margin-top:.85rem;padding:.15rem .1rem .35rem;overflow-x:auto}.product-gallery-thumb{flex:0 0 88px;width:88px;height:88px;border:2px solid transparent;border-radius:.8rem;background:#fff;padding:.25rem;overflow:hidden}.product-gallery-thumb img{width:100%;height:100%;object-fit:contain}.product-gallery-thumb.is-active{border-color:#0d6efd;box-shadow:0 6px 16px rgba(13,110,253,.15)}@media(max-width:575.98px){.product-gallery-trigger{min-height:240px}.product-gallery-modal-main{min-height:48vh}.product-gallery-modal-main img{height:48vh}.product-gallery-thumb{flex-basis:72px;width:72px;height:72px}.product-gallery-hint{font-size:.68rem}}

/* Ferramentas "Como criar sua arte" - UI revisada */
.art-help-panel{
  padding:1rem;
  border-radius:1.1rem;
  background:linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
  box-shadow:0 12px 30px rgba(15,23,42,.05);
}
.art-help-title{
  margin-bottom:.8rem;
  font-size:.92rem;
  letter-spacing:-.01em;
}
.art-help-grid{gap:.6rem}
.art-help-button{
  min-height:78px;
  border-radius:.95rem;
  padding:.65rem .45rem;
  font-size:.73rem;
  background:linear-gradient(180deg,#fff,#fbfdff);
}
.art-help-button i,.art-help-custom-icon{
  width:34px;
  height:34px;
  font-size:1.08rem;
  box-shadow:inset 0 0 0 1px rgba(13,110,253,.08);
}
.art-help-button:focus-visible{
  outline:3px solid rgba(13,110,253,.2);
  outline-offset:2px;
}

.art-facility-modal{
  border:0;
  border-radius:1.25rem;
  overflow:hidden;
  box-shadow:0 28px 80px rgba(2,20,45,.24);
}
.art-facility-modal-header{
  padding:.85rem 1rem;
  border-bottom:1px solid #e7eef7;
  background:#fff;
}
.art-facility-modal-icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
  border-radius:.9rem;
  display:grid;
  place-items:center;
  background:#eef6ff;
  color:#0d6efd;
  overflow:hidden;
}
.art-facility-modal-icon img{
  width:28px;
  height:28px;
  object-fit:contain;
}
.art-facility-modal-icon i{font-size:1.2rem}
.art-facility-viewer{
  position:relative;
  min-height:420px;
  background:#f3f7fb;
}
.art-facility-browser{
  border:0;
  border-radius:0;
  background:#f8fafc;
  overflow:hidden;
}
.art-facility-browser-toolbar{
  min-height:48px;
  padding:.55rem .85rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  background:#fff;
  border-bottom:1px solid #e2e8f0;
}
.art-facility-browser iframe{
  display:block;
  width:100%;
  height:min(68vh,700px);
  border:0;
  background:#fff;
}
.art-facility-video{
  min-height:420px;
  padding:1rem;
  display:grid;
  place-items:center;
  background:#071426;
}
.art-facility-video video{
  width:100%;
  max-height:min(68vh,700px);
  border-radius:.9rem;
  background:#000;
}
.art-facility-placeholder{
  min-height:420px;
  padding:2rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  text-align:center;
  color:#64748b;
}
.art-facility-placeholder i{
  font-size:2.6rem;
  color:#0d6efd;
}
.art-facility-placeholder strong{color:#0f172a}
.art-facility-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.75rem 1rem;
  border-top:1px solid #e7eef7;
  background:#fff;
}
@media(max-width:767.98px){
  .art-facility-modal{border-radius:0}
  .art-facility-browser-toolbar{align-items:stretch;flex-direction:column}
  .art-facility-browser-toolbar .btn{width:100%}
  .art-facility-browser iframe{height:calc(100vh - 190px)}
  .art-facility-video{min-height:calc(100vh - 150px);padding:.75rem}
  .art-facility-video video{max-height:calc(100vh - 180px)}
  .art-facility-placeholder{min-height:calc(100vh - 180px)}
  .art-facility-footer{align-items:stretch;flex-direction:column}
  .art-facility-footer .btn{width:100%}
}


/* Correção robusta: o atributo HTML hidden deve sempre vencer os displays dos viewers. */
#artFacilityModal [hidden],
.art-facility-browser[hidden],
.art-facility-video[hidden],
.art-facility-placeholder[hidden],
[data-art-facility-external][hidden],
[data-art-facility-link][hidden] {
  display: none !important;
}

/* O conteúdo das ferramentas nunca pode vazar para trás/fora do modal. */
#artFacilityModal .modal-body,
#artFacilityModal .art-facility-viewer {
  overflow: hidden;
  contain: layout paint;
}
#artFacilityModal iframe,
#artFacilityModal video {
  max-width: 100%;
}


/* Produto marketplace: vídeo + galeria + oferta relâmpago */
.product-marketplace-media{position:relative;overflow:hidden;border-radius:1rem;background:#fff}
.product-video-stage{min-height:300px;background:#071a33;display:flex;align-items:center;justify-content:center;border-radius:1rem;overflow:hidden}
.product-video-stage video{width:100%;max-height:520px;display:block;background:#000}
.product-media-selector{display:flex;gap:.55rem;overflow-x:auto;padding:.2rem .1rem .45rem;scrollbar-width:thin}
.product-media-selector button{width:62px;height:62px;flex:0 0 62px;border:1px solid #dbe4ef;border-radius:.75rem;background:#fff;padding:.25rem;display:grid;place-items:center;color:#0d4fa4;font-size:.72rem;font-weight:800;overflow:hidden}
.product-media-selector button img{width:100%;height:100%;object-fit:cover;border-radius:.5rem}.product-media-selector button.is-active{border-color:#0d6efd;box-shadow:0 0 0 2px rgba(13,110,253,.12)}
.product-flash-badge{position:absolute;left:.75rem;top:.75rem;z-index:4;display:inline-flex;align-items:center;gap:.35rem;background:linear-gradient(135deg,#ffb000,#ff5a00);color:#fff;border-radius:999px;padding:.48rem .7rem;font-weight:900;font-size:.75rem;box-shadow:0 10px 24px rgba(255,106,0,.26)}
.product-regular-price{font-size:.9rem}.product-market-specs{background:#fff;border:1px solid #e5e7eb;border-radius:1.1rem;padding:1.25rem}
.product-spec-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));border:1px solid #e5e7eb;border-radius:.9rem;overflow:hidden}.product-spec-grid>div{display:flex;justify-content:space-between;gap:1rem;padding:.8rem 1rem;border-bottom:1px solid #eef2f7}.product-spec-grid>div:nth-last-child(-n+2){border-bottom:0}.product-spec-grid span{color:#64748b;font-size:.8rem}.product-spec-grid strong{font-size:.86rem;text-align:right}
@media(max-width:576px){.product-video-stage{min-height:220px}.product-spec-grid{grid-template-columns:1fr}.product-spec-grid>div{border-bottom:1px solid #eef2f7!important}.product-spec-grid>div:last-child{border-bottom:0!important}}

/* 2026-08-12 — produto: descrição principal e auditoria de campos */
.product-public-heading{background:#fff;border:1px solid #e5e7eb;border-radius:1.1rem;padding:1rem 1.15rem}
.product-public-heading .section-kicker{display:block;margin-bottom:.35rem}.product-public-summary{max-width:920px;line-height:1.55}
.product-spec-grid>div.product-spec-grid__wide{grid-column:1/-1}.product-spec-grid>div.product-spec-grid__wide strong{max-width:72%}
@media(max-width:576px){.product-public-heading{padding:.9rem}.product-spec-grid>div.product-spec-grid__wide{grid-column:auto}.product-spec-grid>div.product-spec-grid__wide strong{max-width:58%}}

/* Oferta Relâmpago - destaque principal da página do produto */
.product-flash-sale-banner{position:relative;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;overflow:hidden;border:1px solid rgba(255,115,0,.28);border-radius:1.15rem;padding:1.05rem 1.2rem;background:linear-gradient(110deg,#fff6e7 0%,#fff 46%,#fff3dc 100%);box-shadow:0 14px 34px rgba(238,103,0,.10)}
.product-flash-sale-banner:before{content:"";position:absolute;inset:0 auto 0 0;width:.38rem;background:linear-gradient(180deg,#ffb000,#ff5a00)}
.product-flash-sale-banner__identity{display:flex;align-items:center;gap:.9rem;min-width:0}
.product-flash-sale-banner__icon{display:grid;place-items:center;flex:0 0 auto;width:3.15rem;height:3.15rem;border-radius:1rem;background:linear-gradient(135deg,#ffb000,#ff5a00);color:#fff;font-size:1.45rem;box-shadow:0 10px 22px rgba(255,106,0,.26)}
.product-flash-sale-banner__eyebrow{display:block;color:#b84b00;text-transform:uppercase;letter-spacing:.08em;font-size:.7rem;font-weight:900;margin-bottom:.05rem}
.product-flash-sale-banner__discount{display:block;color:#7a2700;font-size:1.28rem;line-height:1.15;font-weight:950}
.product-flash-sale-banner__note{display:block;color:#8b5a3a;font-size:.82rem;margin-top:.25rem}
.product-flash-countdown{display:flex;flex-direction:column;align-items:flex-end;gap:.35rem;flex:0 0 auto}
.product-flash-countdown__label{color:#a04400;font-size:.72rem;font-weight:900;text-transform:uppercase;letter-spacing:.06em}
.product-flash-countdown__units{display:flex;align-items:flex-start;gap:.34rem}
.product-flash-countdown__units>b{color:#c3651c;font-size:1.25rem;line-height:2.15rem}
.product-flash-countdown__unit{display:grid;min-width:3.25rem;text-align:center}
.product-flash-countdown__unit strong{display:grid;place-items:center;min-height:2.15rem;padding:.22rem .45rem;border-radius:.65rem;background:#fff;color:#7b2900;font-size:1.13rem;font-weight:950;box-shadow:0 5px 14px rgba(147,67,12,.10);border:1px solid rgba(255,151,59,.24)}
.product-flash-countdown__unit span{margin-top:.18rem;color:#9b6847;font-size:.61rem;font-weight:800;text-transform:uppercase}
.product-flash-countdown--open strong{color:#7a2700;font-size:1rem}
.product-flash-sale-banner.is-ended{opacity:.72;filter:saturate(.65)}
@media(max-width:767.98px){.product-flash-sale-banner{align-items:flex-start;flex-direction:column;padding:1rem}.product-flash-countdown{align-items:flex-start;width:100%;padding-top:.75rem;border-top:1px solid rgba(255,137,32,.2)}.product-flash-countdown__units{width:100%;justify-content:space-between}.product-flash-countdown__unit{min-width:0;flex:1}.product-flash-sale-banner__discount{font-size:1.12rem}.product-flash-sale-banner__note{font-size:.76rem}}


/* Oferta Relâmpago integrada ao cabeçalho do produto */
.product-heading-promo-grid{
    display:block;
    width:100%;
}
.product-heading-promo-grid .product-public-heading{
    width:100%;
    min-width:0;
}
.product-heading-promo-grid.has-flash-sale{
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);
    gap:1.25rem;
    align-items:stretch;
}
.product-heading-promo-grid.has-flash-sale .product-public-heading{
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:100%;
    padding:1rem 1.15rem;
}
.product-flash-sale-banner--hero{
    width:100%;
    min-height:150px;
    margin:0;
    align-self:stretch;
    padding:1rem 1.1rem;
    border-width:1px;
    box-shadow:0 12px 30px rgba(238,103,0,.13);
}
.product-flash-sale-banner--hero .product-flash-sale-banner__discount{
    font-size:1.45rem;
}
.product-flash-sale-banner--hero .product-flash-sale-banner__note{
    max-width:250px;
}
.product-flash-sale-banner--hero .product-flash-countdown{
    flex:0 0 auto;
}
@media (max-width:1199.98px){
    .product-heading-promo-grid.has-flash-sale{
        grid-template-columns:minmax(0,1fr) minmax(380px,.9fr);
    }
    .product-flash-sale-banner--hero{gap:1rem;}
}
@media (max-width:991.98px){
    .product-heading-promo-grid.has-flash-sale{grid-template-columns:1fr;}
    .product-flash-sale-banner--hero{min-height:auto;}
}
@media (max-width:575.98px){
    .product-flash-sale-banner--hero{border-radius:1rem;padding:.9rem;}
    .product-flash-sale-banner--hero .product-flash-sale-banner__discount{font-size:1.2rem;}
}


/* Galeria compacta abaixo da imagem principal */
.product-media-selector{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.32rem;
    max-width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    padding:.18rem .12rem .38rem;
    scrollbar-width:thin;
    scroll-snap-type:x proximity;
}
.product-media-selector button{
    width:36px;
    height:36px;
    flex:0 0 36px;
    border:1px solid #dbe4ef;
    border-radius:.55rem;
    background:#fff;
    padding:.16rem;
    display:grid;
    place-items:center;
    color:#0d4fa4;
    font-size:.68rem;
    font-weight:800;
    overflow:hidden;
    scroll-snap-align:center;
}
.product-media-selector button img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:.38rem;
}
.product-media-selector button[data-media-kind="video"]{
    font-size:.9rem;
}
.product-media-selector button[data-media-kind="video"] span{
    display:none;
}
.product-media-selector button.is-active{
    border-color:#0d6efd;
    box-shadow:0 0 0 2px rgba(13,110,253,.11);
}
@media (max-width:575.98px){
    .product-media-selector{
        justify-content:flex-start;
        gap:.28rem;
    }
    .product-media-selector button{
        width:32px;
        height:32px;
        flex-basis:32px;
        border-radius:.48rem;
        padding:.12rem;
    }
}


/* Conversão comercial da home */
.home-sales-trust{background:#fff;border-bottom:1px solid #e5edf5}
.home-sales-trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.home-sales-trust-grid>div{display:flex;gap:.75rem;align-items:center;padding:1rem 1.1rem;border-right:1px solid #edf2f7}
.home-sales-trust-grid>div:last-child{border-right:0}
.home-sales-trust-grid i{width:38px;height:38px;border-radius:12px;display:grid;place-items:center;background:#edf5ff;color:#0d6efd;font-size:1.05rem;flex:0 0 auto}
.home-sales-trust-grid strong,.home-sales-trust-grid small{display:block}
.home-sales-trust-grid strong{font-size:.88rem}.home-sales-trust-grid small{font-size:.74rem;color:#6b7785;margin-top:.1rem}
.home-best-card{background:#fff;border:1px solid #dce5ef;border-radius:16px;overflow:hidden;display:flex;flex-direction:column}
.home-best-media{aspect-ratio:1/1;display:grid;place-items:center;background:#f7faff;overflow:hidden}
.home-best-media img{width:100%;height:100%;object-fit:contain;padding:.7rem}
.home-best-media i{font-size:2.4rem;color:#8ca4bf}.home-best-body{padding:1rem;display:flex;flex-direction:column;flex:1}
.home-best-body>small{color:#6c7b8c;font-size:.72rem}.home-best-body h3{font-size:.96rem;line-height:1.3;margin:.35rem 0 .8rem;min-height:2.5em}
.home-best-price{margin-top:auto;margin-bottom:.8rem}.home-best-price span,.home-best-price strong{display:block}.home-best-price span{font-size:.7rem;color:#788493}.home-best-price strong{font-size:1.3rem;color:#df1425}
@media(max-width:767.98px){.home-sales-trust-grid{grid-template-columns:1fr 1fr}.home-sales-trust-grid>div:nth-child(2){border-right:0}.home-sales-trust-grid>div:nth-child(-n+2){border-bottom:1px solid #edf2f7}.home-sales-trust-grid>div{padding:.85rem}.home-best-body{padding:.75rem}.home-best-body h3{font-size:.88rem}}


.product-rating-link{display:flex;align-items:center;gap:.45rem;width:max-content;max-width:100%;font-size:.82rem;color:#52657b;text-decoration:none}.product-rating-link strong{color:#0d1b2d}.product-review-summary{display:flex;align-items:center;gap:.45rem}.product-review-summary strong{font-size:1.8rem}.product-review-summary small{color:#748296}.product-review-card{background:#fff;border:1px solid #dce5ef;border-radius:16px;padding:1.1rem}.product-review-card p{color:#46576a}.product-review-card small{display:block;color:#198754;margin-top:.2rem}.product-review-form{background:#f8fbff;border:1px solid #dce8f5;border-radius:16px;padding:1rem}

/* Biblioteca exclusiva do painel de revendedor */
.client-reseller-library{
  position:relative;
  overflow:hidden;
  border-color:rgba(13,110,253,.2);
  background:
    radial-gradient(circle at 100% 0,rgba(13,110,253,.10),transparent 34%),
    linear-gradient(135deg,#fff,#f5f9ff);
}
.client-reseller-library__icon{
  width:52px;
  height:52px;
  flex:0 0 52px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:#e7f1ff;
  color:#0d6efd;
  font-size:1.3rem;
}

/* Biblioteca de artes exclusiva — categorias responsivas e arquivos privados */
.template-catalog-page .container{max-width:1180px}.reseller-category-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.reseller-category-card{position:relative;display:flex;align-items:center;gap:12px;min-width:0;padding:14px;border:1px solid #dde6ef;border-radius:16px;background:#fff;color:#132a45;text-decoration:none;box-shadow:0 7px 20px rgba(15,40,70,.045);transition:.16s ease}.reseller-category-card:hover{transform:translateY(-2px);border-color:#b8d2f2;box-shadow:0 12px 28px rgba(15,40,70,.08)}.reseller-category-card.active{border-color:#0d6efd;background:#f3f8ff;box-shadow:0 0 0 2px rgba(13,110,253,.08)}.reseller-category-card__icon,.reseller-category-card__media{width:48px;height:48px;flex:0 0 48px;border-radius:14px;overflow:hidden;display:grid;place-items:center;background:#eaf3ff;color:#0d6efd;font-size:1.15rem}.reseller-category-card__media img{width:100%;height:100%;object-fit:cover}.reseller-category-card__copy{display:block;min-width:0;flex:1}.reseller-category-card__copy strong,.reseller-category-card__copy small{display:block;overflow:hidden;text-overflow:ellipsis}.reseller-category-card__copy strong{font-size:.88rem;line-height:1.25;white-space:normal}.reseller-category-card__copy small{margin-top:3px;color:#738397;font-size:.68rem;white-space:nowrap}.reseller-category-card__arrow{flex:0 0 auto;color:#9aabbc;font-size:.78rem}.model-profession-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.model-profession-card{min-width:0!important;border-radius:16px!important}.model-profession-card strong,.model-profession-card small{overflow-wrap:anywhere}.reseller-resource-section{padding:18px;border:1px solid #dce6ef;border-radius:20px;background:#f8fbff}.reseller-resource-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.reseller-resource-card{display:flex;flex-direction:column;min-width:0;overflow:hidden;border:1px solid #dfe7ef;border-radius:16px;background:#fff;box-shadow:0 7px 20px rgba(15,40,70,.045)}.reseller-resource-card__preview{height:125px;display:grid;place-items:center;background:#f2f5f8;font-size:2.6rem}.reseller-resource-card__preview img{width:100%;height:100%;object-fit:cover}.reseller-resource-card__preview.pdf{color:#dc3545}.reseller-resource-card__preview.video{color:#15334f}.reseller-resource-card__body{display:flex;flex-direction:column;flex:1;padding:12px;min-width:0}.reseller-resource-card__body strong{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.85rem}.reseller-resource-card__body small{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;color:#748397;font-size:.7rem}.reseller-resource-type{font-size:.62rem;font-weight:900;letter-spacing:.07em;color:#0d6efd;margin-bottom:4px}@media(max-width:991.98px){.reseller-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.model-profession-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.reseller-resource-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:575.98px){.reseller-category-grid{gap:9px}.reseller-category-card{padding:10px;gap:9px;border-radius:14px}.reseller-category-card__icon,.reseller-category-card__media{width:40px;height:40px;flex-basis:40px;border-radius:11px}.reseller-category-card__copy strong{font-size:.78rem}.reseller-category-card__arrow{display:none}.model-profession-grid{grid-template-columns:1fr}.reseller-resource-grid{grid-template-columns:1fr 1fr;gap:9px}.reseller-resource-card__preview{height:100px}.reseller-resource-card__body{padding:10px}}@media(max-width:400px){.reseller-category-grid,.reseller-resource-grid{grid-template-columns:1fr}}

/* =========================================================
   Revendedor — visualização profissional de Artes/Modelos
   ========================================================= */
.template-detail-page .container,
.template-catalog-page .container{
  width:100%;
  max-width:1180px;
}

/* Segmentos/profissões */
.model-profession-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:14px!important;
  align-items:stretch;
}
.model-profession-card{
  position:relative;
  display:grid!important;
  grid-template-columns:58px minmax(0,1fr) 24px!important;
  align-items:center!important;
  gap:12px!important;
  min-width:0!important;
  min-height:86px!important;
  padding:13px!important;
  border:1px solid #dce6ef!important;
  border-radius:16px!important;
  background:#fff!important;
  color:#132a45!important;
  text-decoration:none!important;
  box-shadow:0 7px 20px rgba(15,40,70,.045)!important;
  overflow:hidden!important;
}
.model-profession-card>img,
.model-profession-card>.model-profession-icon{
  width:58px!important;
  height:58px!important;
  min-width:58px!important;
  max-width:58px!important;
  border-radius:13px!important;
  object-fit:contain!important;
  background:#f5f8fb!important;
  padding:4px!important;
}
.model-profession-card>.model-profession-icon{
  display:grid!important;
  place-items:center!important;
  padding:0!important;
  color:#0d6efd!important;
  font-size:1.15rem!important;
}
.model-profession-card>span{
  display:block!important;
  min-width:0!important;
}
.model-profession-card strong,
.model-profession-card small{
  display:block!important;
  max-width:100%!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  overflow-wrap:anywhere!important;
}
.model-profession-card strong{
  font-size:.86rem!important;
  line-height:1.25!important;
  white-space:normal!important;
}
.model-profession-card small{
  margin-top:3px!important;
  color:#758599!important;
  font-size:.68rem!important;
  line-height:1.3!important;
  white-space:normal!important;
}
.model-profession-card>i:last-child{
  justify-self:end!important;
  color:#9aadbf!important;
  font-size:.8rem!important;
}

/* Grade de artes */
.model-choice-grid{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:14px!important;
  width:100%!important;
  min-width:0!important;
}
.model-choice-card{
  position:relative!important;
  display:flex!important;
  flex-direction:column!important;
  min-width:0!important;
  overflow:hidden!important;
  border:1px solid #dce6ef!important;
  border-radius:16px!important;
  background:#fff!important;
  box-shadow:0 8px 22px rgba(15,40,70,.05)!important;
  transition:border-color .16s ease,box-shadow .16s ease,transform .16s ease!important;
}
.model-choice-card:hover{
  transform:translateY(-2px)!important;
  box-shadow:0 13px 28px rgba(15,40,70,.085)!important;
}
.model-choice-card.active{
  border-color:#0d6efd!important;
  box-shadow:0 0 0 2px rgba(13,110,253,.10),0 12px 28px rgba(15,40,70,.08)!important;
}
.model-choice-card__select{
  display:flex!important;
  flex-direction:column!important;
  flex:1!important;
  min-width:0!important;
  width:100%!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  color:inherit!important;
  text-align:left!important;
  cursor:pointer!important;
}
.model-choice-card__media{
  position:relative!important;
  display:grid!important;
  place-items:center!important;
  width:100%!important;
  height:160px!important;
  min-height:160px!important;
  max-height:160px!important;
  overflow:hidden!important;
  background:
    linear-gradient(45deg,#f6f8fb 25%,transparent 25%),
    linear-gradient(-45deg,#f6f8fb 25%,transparent 25%),
    linear-gradient(45deg,transparent 75%,#f6f8fb 75%),
    linear-gradient(-45deg,transparent 75%,#f6f8fb 75%)!important;
  background-size:18px 18px!important;
  background-position:0 0,0 9px,9px -9px,-9px 0!important;
}
.model-choice-card__media img{
  display:block!important;
  width:auto!important;
  height:auto!important;
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  object-position:center!important;
  padding:8px!important;
}
.model-choice-card__copy{
  display:block!important;
  min-width:0!important;
  padding:11px 12px 8px!important;
}
.model-choice-card__copy strong,
.model-choice-card__copy small{
  display:block!important;
  min-width:0!important;
  overflow:hidden!important;
  overflow-wrap:anywhere!important;
}
.model-choice-card__copy strong{
  color:#102943!important;
  font-size:.82rem!important;
  line-height:1.25!important;
}
.model-choice-card__copy small{
  display:-webkit-box!important;
  -webkit-box-orient:vertical!important;
  -webkit-line-clamp:2!important;
  margin-top:4px!important;
  color:#738397!important;
  font-size:.68rem!important;
  line-height:1.35!important;
}
.model-choice-card__check{
  position:absolute!important;
  top:9px!important;
  right:9px!important;
  z-index:3!important;
  display:grid!important;
  place-items:center!important;
  width:28px!important;
  height:28px!important;
  border-radius:50%!important;
  background:rgba(255,255,255,.94)!important;
  color:#c6d0dc!important;
  box-shadow:0 4px 12px rgba(15,40,70,.12)!important;
}
.model-choice-card.active .model-choice-card__check{
  color:#0d6efd!important;
}
.model-choice-card__preview{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:calc(100% - 20px)!important;
  min-height:34px!important;
  margin:0 10px 10px!important;
  padding:6px 10px!important;
  border:1px solid #cbd9e8!important;
  border-radius:10px!important;
  background:#f8fbff!important;
  color:#0d6efd!important;
  font-size:.72rem!important;
  font-weight:800!important;
  line-height:1!important;
}
.model-choice-card__preview:hover{
  background:#eaf3ff!important;
  border-color:#adc9e9!important;
}

/* Modal leve e sem estouro de tela */
.reseller-art-modal{
  --bs-modal-width:min(1100px,96vw);
}
.reseller-art-modal .modal-dialog{
  width:min(1100px,96vw)!important;
  max-width:min(1100px,96vw)!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.reseller-art-modal .modal-content{
  max-height:94vh!important;
  overflow:hidden!important;
  border:0!important;
  border-radius:18px!important;
  box-shadow:0 24px 70px rgba(6,25,48,.24)!important;
}
.reseller-art-modal .modal-header{
  flex:0 0 auto!important;
  padding:14px 18px!important;
  border-bottom:1px solid #e8eef4!important;
}
.reseller-art-modal .modal-body{
  display:flex!important;
  min-height:0!important;
  padding:12px!important;
  overflow:auto!important;
  background:#f5f7fa!important;
}
.reseller-art-modal__stage{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:100%!important;
  min-height:220px!important;
  max-height:74vh!important;
  overflow:auto!important;
  border:1px solid #e0e7ef!important;
  border-radius:14px!important;
  background:#fff!important;
}
.reseller-art-modal__stage img{
  display:block!important;
  width:auto!important;
  height:auto!important;
  max-width:100%!important;
  max-height:72vh!important;
  object-fit:contain!important;
  object-position:center!important;
  margin:auto!important;
}
.reseller-art-modal .modal-footer{
  flex:0 0 auto!important;
  gap:10px!important;
  padding:12px 18px!important;
  border-top:1px solid #e8eef4!important;
}
.reseller-art-modal .modal-footer small{
  max-width:70%!important;
}

@media(max-width:1199.98px){
  .model-choice-grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
}
@media(max-width:991.98px){
  .model-profession-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .model-choice-grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  .model-choice-card__media{
    height:145px!important;
    min-height:145px!important;
    max-height:145px!important;
  }
}
@media(max-width:767.98px){
  .model-choice-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
  }
  .model-choice-card__media{
    height:135px!important;
    min-height:135px!important;
    max-height:135px!important;
  }
  .reseller-art-modal{
    --bs-modal-width:calc(100vw - 14px);
  }
  .reseller-art-modal .modal-dialog{
    width:calc(100vw - 14px)!important;
    max-width:calc(100vw - 14px)!important;
    margin:.45rem auto!important;
  }
  .reseller-art-modal .modal-content{
    max-height:96vh!important;
    border-radius:14px!important;
  }
  .reseller-art-modal__stage{
    min-height:180px!important;
    max-height:76vh!important;
  }
  .reseller-art-modal__stage img{
    max-height:74vh!important;
  }
  .reseller-art-modal .modal-footer{
    align-items:stretch!important;
    flex-direction:column!important;
  }
  .reseller-art-modal .modal-footer small{
    max-width:100%!important;
  }
}
@media(max-width:575.98px){
  .model-profession-grid{
    grid-template-columns:1fr!important;
    gap:9px!important;
  }
  .model-profession-card{
    grid-template-columns:50px minmax(0,1fr) 20px!important;
    min-height:74px!important;
    padding:10px!important;
    gap:9px!important;
  }
  .model-profession-card>img,
  .model-profession-card>.model-profession-icon{
    width:50px!important;
    height:50px!important;
    min-width:50px!important;
    max-width:50px!important;
  }
  .model-choice-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:9px!important;
  }
  .model-choice-card__media{
    height:118px!important;
    min-height:118px!important;
    max-height:118px!important;
  }
  .model-choice-card__copy{
    padding:9px 9px 7px!important;
  }
  .model-choice-card__copy strong{
    font-size:.76rem!important;
  }
  .model-choice-card__preview{
    width:calc(100% - 16px)!important;
    margin:0 8px 8px!important;
    font-size:.68rem!important;
  }
}
@media(max-width:380px){
  .model-choice-grid{
    grid-template-columns:1fr!important;
  }
  .model-choice-card__media{
    height:150px!important;
    min-height:150px!important;
    max-height:150px!important;
  }
}
@media(prefers-reduced-motion:reduce){
  .model-choice-card{
    transition:none!important;
  }
  .reseller-art-modal.fade .modal-dialog{
    transition:none!important;
  }
}

/* =========================================================
   Revendedor — Biblioteca limpa de portfólio
   ========================================================= */
.reseller-portfolio-page{
  background:#fff;
}
.reseller-portfolio-head{
  max-width:720px;
}
.reseller-portfolio-head h1{
  color:#0c2340;
  font-size:clamp(1.75rem,3vw,2.45rem);
  font-weight:900;
  letter-spacing:-.035em;
}
.reseller-portfolio-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  align-items:start;
}
.reseller-portfolio-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  overflow:hidden;
  border:1px solid #dfe7ef;
  border-radius:16px;
  background:#fff;
  box-shadow:0 7px 20px rgba(15,40,70,.045);
  transition:transform .16s ease,border-color .16s ease,box-shadow .16s ease;
}
.reseller-portfolio-card:hover{
  transform:translateY(-2px);
  border-color:#bfd3e9;
  box-shadow:0 12px 28px rgba(15,40,70,.08);
}
.reseller-portfolio-card__open{
  display:flex;
  flex-direction:column;
  width:100%;
  min-width:0;
  padding:0;
  border:0;
  background:transparent;
  color:inherit;
  text-align:left;
}
.reseller-portfolio-card__media{
  position:relative;
  display:grid;
  place-items:center;
  width:100%;
  height:150px;
  overflow:hidden;
  background:#f4f7fa;
}
.reseller-portfolio-card__media.image{
  background:
    linear-gradient(45deg,#f6f8fa 25%,transparent 25%),
    linear-gradient(-45deg,#f6f8fa 25%,transparent 25%),
    linear-gradient(45deg,transparent 75%,#f6f8fa 75%),
    linear-gradient(-45deg,transparent 75%,#f6f8fa 75%);
  background-size:18px 18px;
  background-position:0 0,0 9px,9px -9px,-9px 0;
}
.reseller-portfolio-card__media img{
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  object-position:center;
  padding:8px;
}
.reseller-portfolio-card__media.pdf{
  color:#d83838;
}
.reseller-portfolio-card__media.video{
  color:#174b7c;
}
.reseller-portfolio-card__media.pdf>i,
.reseller-portfolio-card__media.video>i{
  font-size:2.65rem;
}
.reseller-portfolio-card__media>small{
  margin-top:-28px;
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.09em;
}
.reseller-portfolio-card__overlay{
  position:absolute;
  inset:auto 8px 8px 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  min-height:32px;
  border-radius:9px;
  background:rgba(6,31,61,.82);
  color:#fff;
  font-size:.7rem;
  font-weight:800;
  opacity:0;
  transform:translateY(4px);
  transition:.16s ease;
}
.reseller-portfolio-card:hover .reseller-portfolio-card__overlay,
.reseller-portfolio-card__open:focus-visible .reseller-portfolio-card__overlay{
  opacity:1;
  transform:none;
}
.reseller-portfolio-card__body{
  display:block;
  min-width:0;
  padding:11px 12px 10px;
}
.reseller-portfolio-card__type{
  display:block;
  margin-bottom:3px;
  color:#0d6efd;
  font-size:.61rem;
  font-weight:900;
  letter-spacing:.08em;
}
.reseller-portfolio-card__body strong{
  display:block;
  overflow:hidden;
  color:#102943;
  font-size:.82rem;
  line-height:1.25;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.reseller-portfolio-card__body small{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  margin-top:4px;
  color:#748397;
  font-size:.68rem;
  line-height:1.35;
}
.reseller-portfolio-card__download{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  min-height:34px;
  margin:0 10px 10px;
  border:1px solid #cddbea;
  border-radius:9px;
  background:#f8fbff;
  color:#0d6efd;
  font-size:.7rem;
  font-weight:800;
  text-decoration:none;
}
.reseller-portfolio-card__download:hover{
  background:#eaf3ff;
}
.reseller-portfolio-empty{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:220px;
  padding:28px;
  border:1px dashed #cbd7e4;
  border-radius:18px;
  background:#f8fafc;
  color:#6b7d90;
  text-align:center;
}
.reseller-portfolio-empty i{
  margin-bottom:10px;
  color:#8ba1b7;
  font-size:2rem;
}
.reseller-portfolio-empty strong{
  color:#31465d;
}
.reseller-portfolio-empty span{
  margin-top:4px;
  font-size:.78rem;
}

/* Modal universal: imagem / PDF / vídeo */
.reseller-portfolio-modal{
  --bs-modal-width:min(1120px,96vw);
}
.reseller-portfolio-modal .modal-dialog{
  width:min(1120px,96vw);
  max-width:min(1120px,96vw);
  margin-left:auto;
  margin-right:auto;
}
.reseller-portfolio-modal .modal-content{
  max-height:94vh;
  overflow:hidden;
  border:0;
  border-radius:18px;
  box-shadow:0 24px 70px rgba(6,25,48,.24);
}
.reseller-portfolio-modal .modal-header{
  padding:14px 18px;
  border-bottom:1px solid #e7edf4;
}
.reseller-portfolio-modal .modal-body{
  min-height:0;
  padding:12px;
  overflow:auto;
  background:#f3f6f9;
}
.reseller-portfolio-modal__stage{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:260px;
  max-height:76vh;
  overflow:auto;
  border:1px solid #e0e7ef;
  border-radius:14px;
  background:#fff;
}
.reseller-portfolio-modal__stage img{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:73vh;
  object-fit:contain;
  margin:auto;
}
.reseller-portfolio-modal__stage iframe{
  width:100%;
  height:72vh;
  min-height:420px;
  border:0;
  background:#fff;
}
.reseller-portfolio-modal__stage video{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:72vh;
  margin:auto;
  background:#000;
}
.reseller-portfolio-modal .modal-footer{
  padding:11px 18px;
  border-top:1px solid #e7edf4;
}

@media(max-width:1199.98px){
  .reseller-portfolio-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}
@media(max-width:991.98px){
  .reseller-portfolio-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .reseller-portfolio-card__media{
    height:140px;
  }
}
@media(max-width:767.98px){
  .reseller-portfolio-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }
  .reseller-portfolio-card__media{
    height:128px;
  }
  .reseller-portfolio-card__overlay{
    opacity:1;
    transform:none;
    background:rgba(6,31,61,.76);
  }
  .reseller-portfolio-modal .modal-dialog{
    width:calc(100vw - 14px);
    max-width:calc(100vw - 14px);
    margin:.45rem auto;
  }
  .reseller-portfolio-modal .modal-content{
    max-height:96vh;
    border-radius:14px;
  }
  .reseller-portfolio-modal__stage{
    max-height:78vh;
  }
  .reseller-portfolio-modal__stage img,
  .reseller-portfolio-modal__stage video{
    max-height:75vh;
  }
  .reseller-portfolio-modal__stage iframe{
    height:74vh;
    min-height:360px;
  }
}
@media(max-width:480px){
  .reseller-portfolio-card__media{
    height:112px;
  }
  .reseller-portfolio-card__body{
    padding:9px 9px 8px;
  }
  .reseller-portfolio-card__body strong{
    font-size:.76rem;
  }
  .reseller-portfolio-card__download{
    margin:0 8px 8px;
  }
}
@media(max-width:360px){
  .reseller-portfolio-grid{
    grid-template-columns:1fr;
  }
  .reseller-portfolio-card__media{
    height:155px;
  }
}
@media(prefers-reduced-motion:reduce){
  .reseller-portfolio-card,
  .reseller-portfolio-card__overlay{
    transition:none;
  }
}

/* =========================================================
   Revendedor — Biblioteca compacta / viewer adaptativo
   ========================================================= */
.reseller-portfolio-page{
  --portfolio-gap:12px;
}
.reseller-portfolio-page .container{
  max-width:1240px;
}
.reseller-portfolio-head{
  margin-bottom:1.1rem!important;
}
.reseller-portfolio-head h1{
  font-size:clamp(1.6rem,2.6vw,2.2rem);
}
.reseller-portfolio-head p{
  font-size:.86rem;
}

/* Mais modelos por linha, cards menores */
.reseller-portfolio-grid{
  grid-template-columns:repeat(6,minmax(0,1fr))!important;
  gap:var(--portfolio-gap)!important;
}
.reseller-portfolio-card{
  border-radius:14px!important;
  box-shadow:0 5px 16px rgba(15,40,70,.04)!important;
}
.reseller-portfolio-card:hover{
  transform:translateY(-1px)!important;
  box-shadow:0 9px 22px rgba(15,40,70,.07)!important;
}
.reseller-portfolio-card__media{
  height:112px!important;
}
.reseller-portfolio-card__media img{
  padding:6px!important;
}
.reseller-portfolio-card__media.pdf>i,
.reseller-portfolio-card__media.video>i{
  font-size:2.15rem!important;
}
.reseller-portfolio-card__overlay{
  inset:auto 6px 6px 6px!important;
  min-height:28px!important;
  border-radius:8px!important;
  font-size:.64rem!important;
}
.reseller-portfolio-card__body{
  padding:8px 9px 7px!important;
}
.reseller-portfolio-card__type{
  margin-bottom:2px!important;
  font-size:.55rem!important;
}
.reseller-portfolio-card__body strong{
  font-size:.72rem!important;
  line-height:1.2!important;
}
.reseller-portfolio-card__body small{
  margin-top:3px!important;
  font-size:.62rem!important;
  line-height:1.3!important;
  -webkit-line-clamp:1!important;
}
.reseller-portfolio-card__download{
  min-height:29px!important;
  margin:0 7px 7px!important;
  border-radius:8px!important;
  font-size:.63rem!important;
}

/* Viewer elegante e sempre dentro da viewport */
.reseller-portfolio-modal{
  --bs-modal-width:min(1180px,calc(100vw - 32px));
}
.reseller-portfolio-modal .modal-dialog{
  width:min(1180px,calc(100vw - 32px))!important;
  max-width:min(1180px,calc(100vw - 32px))!important;
  height:min(92vh,900px)!important;
  margin:4vh auto!important;
}
.reseller-portfolio-modal .modal-content{
  display:flex!important;
  flex-direction:column!important;
  width:100%!important;
  height:100%!important;
  max-height:92vh!important;
  overflow:hidden!important;
  border:1px solid rgba(210,222,234,.9)!important;
  border-radius:16px!important;
  background:#fff!important;
  box-shadow:0 22px 65px rgba(7,29,56,.22)!important;
}
.reseller-portfolio-modal .modal-header{
  flex:0 0 auto!important;
  min-height:58px!important;
  padding:11px 15px!important;
  background:#fff!important;
}
.reseller-portfolio-modal .modal-header .eyebrow{
  font-size:.58rem!important;
}
.reseller-portfolio-modal .modal-title{
  max-width:min(720px,70vw)!important;
  font-size:.93rem!important;
}
.reseller-portfolio-modal .modal-body{
  flex:1 1 auto!important;
  display:flex!important;
  min-height:0!important;
  padding:8px!important;
  overflow:hidden!important;
  background:#eef2f6!important;
}
.reseller-portfolio-modal__stage{
  position:relative!important;
  display:flex!important;
  flex:1 1 auto!important;
  align-items:center!important;
  justify-content:center!important;
  width:100%!important;
  height:100%!important;
  min-height:0!important;
  max-height:none!important;
  overflow:auto!important;
  border:0!important;
  border-radius:11px!important;
  background:#fff!important;
}
.reseller-portfolio-modal__stage img{
  display:block!important;
  width:auto!important;
  height:auto!important;
  max-width:100%!important;
  max-height:calc(92vh - 128px)!important;
  object-fit:contain!important;
  object-position:center!important;
  margin:auto!important;
}
.reseller-portfolio-modal__stage iframe{
  display:block!important;
  width:100%!important;
  height:100%!important;
  min-height:0!important;
  border:0!important;
  border-radius:9px!important;
  background:#fff!important;
}
.reseller-portfolio-modal__stage video{
  display:block!important;
  width:auto!important;
  height:auto!important;
  max-width:100%!important;
  max-height:calc(92vh - 128px)!important;
  object-fit:contain!important;
  margin:auto!important;
  background:#000!important;
}
.reseller-portfolio-modal .modal-footer{
  flex:0 0 auto!important;
  min-height:50px!important;
  padding:8px 14px!important;
  background:#fff!important;
}
.reseller-portfolio-modal .btn-close{
  flex:0 0 auto!important;
}
.reseller-portfolio-modal .modal-footer .btn{
  min-width:96px!important;
  padding:.42rem 1rem!important;
  font-size:.78rem!important;
}

/* Breakpoints — mantém densidade sem esmagar conteúdo */
@media(max-width:1399.98px){
  .reseller-portfolio-grid{
    grid-template-columns:repeat(5,minmax(0,1fr))!important;
  }
}
@media(max-width:1199.98px){
  .reseller-portfolio-grid{
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
  }
  .reseller-portfolio-card__media{
    height:108px!important;
  }
}
@media(max-width:991.98px){
  .reseller-portfolio-grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  .reseller-portfolio-card__media{
    height:115px!important;
  }
  .reseller-portfolio-modal{
    --bs-modal-width:calc(100vw - 20px);
  }
  .reseller-portfolio-modal .modal-dialog{
    width:calc(100vw - 20px)!important;
    max-width:calc(100vw - 20px)!important;
    height:calc(100dvh - 20px)!important;
    margin:10px auto!important;
  }
  .reseller-portfolio-modal .modal-content{
    max-height:calc(100dvh - 20px)!important;
  }
  .reseller-portfolio-modal__stage img,
  .reseller-portfolio-modal__stage video{
    max-height:calc(100dvh - 126px)!important;
  }
}
@media(max-width:767.98px){
  .reseller-portfolio-page{
    --portfolio-gap:9px;
  }
  .reseller-portfolio-grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  .reseller-portfolio-card__media{
    height:100px!important;
  }
  .reseller-portfolio-card__body strong{
    font-size:.69rem!important;
  }
  .reseller-portfolio-card__body small{
    display:none!important;
  }
  .reseller-portfolio-card__overlay{
    opacity:1!important;
    transform:none!important;
  }
  .reseller-portfolio-card__download span{
    display:none!important;
  }
  .reseller-portfolio-modal .modal-header{
    min-height:52px!important;
    padding:9px 12px!important;
  }
  .reseller-portfolio-modal .modal-footer{
    min-height:46px!important;
    padding:6px 10px!important;
  }
}
@media(max-width:575.98px){
  .reseller-portfolio-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .reseller-portfolio-card__media{
    height:118px!important;
  }
  .reseller-portfolio-modal .modal-dialog{
    width:calc(100vw - 10px)!important;
    max-width:calc(100vw - 10px)!important;
    height:calc(100dvh - 10px)!important;
    margin:5px auto!important;
  }
  .reseller-portfolio-modal .modal-content{
    max-height:calc(100dvh - 10px)!important;
    border-radius:12px!important;
  }
  .reseller-portfolio-modal .modal-title{
    max-width:68vw!important;
    font-size:.84rem!important;
  }
  .reseller-portfolio-modal__stage{
    border-radius:8px!important;
  }
  .reseller-portfolio-modal__stage img,
  .reseller-portfolio-modal__stage video{
    max-height:calc(100dvh - 112px)!important;
  }
  .reseller-portfolio-modal .modal-footer .btn{
    width:100%!important;
  }
}
@media(max-width:360px){
  .reseller-portfolio-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .reseller-portfolio-card__media{
    height:98px!important;
  }
}

/* Em telas muito baixas, reduz cabeçalho/rodapé do viewer */
@media(max-height:650px){
  .reseller-portfolio-modal .modal-dialog{
    height:calc(100dvh - 10px)!important;
    margin:5px auto!important;
  }
  .reseller-portfolio-modal .modal-header{
    min-height:46px!important;
    padding:7px 10px!important;
  }
  .reseller-portfolio-modal .modal-footer{
    min-height:42px!important;
    padding:5px 10px!important;
  }
  .reseller-portfolio-modal__stage img,
  .reseller-portfolio-modal__stage video{
    max-height:calc(100dvh - 100px)!important;
  }
}
.reseller-portfolio-modal[data-viewer-kind="pdf"] .reseller-portfolio-modal__stage{
  overflow:hidden!important;
}
.reseller-portfolio-modal[data-viewer-kind="pdf"] .modal-body{
  padding:6px!important;
}
.reseller-portfolio-modal[data-viewer-kind="video"] .reseller-portfolio-modal__stage{
  background:#080b0f!important;
}

/* =========================================================
   Viewer corrigido — um único tipo por vez + imagem 50% menor
   ========================================================= */
.reseller-portfolio-modal__stage [hidden]{
  display:none!important;
}
.reseller-portfolio-modal[data-viewer-kind="image"] .modal-dialog{
  width:min(820px,92vw)!important;
  max-width:min(820px,92vw)!important;
  height:min(78vh,720px)!important;
  margin:11vh auto!important;
}
.reseller-portfolio-modal[data-viewer-kind="image"] .modal-content{
  max-height:78vh!important;
}
.reseller-portfolio-modal[data-viewer-kind="image"] .reseller-portfolio-modal__stage{
  overflow:hidden!important;
  background:#f8fafc!important;
}
.reseller-portfolio-modal[data-viewer-kind="image"] .reseller-portfolio-modal__stage img:not([hidden]){
  display:block!important;
  width:auto!important;
  height:auto!important;
  max-width:50%!important;
  max-height:50%!important;
  object-fit:contain!important;
  margin:auto!important;
  border-radius:8px!important;
  box-shadow:0 8px 24px rgba(15,40,70,.08)!important;
}
.reseller-portfolio-modal[data-viewer-kind="pdf"] .reseller-portfolio-modal__stage iframe:not([hidden]){
  display:block!important;
}
.reseller-portfolio-modal[data-viewer-kind="video"] .reseller-portfolio-modal__stage video:not([hidden]){
  display:block!important;
}
/* Esconde explicitamente os tipos que não correspondem ao viewer atual. */
.reseller-portfolio-modal[data-viewer-kind="image"] iframe,
.reseller-portfolio-modal[data-viewer-kind="image"] video,
.reseller-portfolio-modal[data-viewer-kind="pdf"] img,
.reseller-portfolio-modal[data-viewer-kind="pdf"] video,
.reseller-portfolio-modal[data-viewer-kind="video"] img,
.reseller-portfolio-modal[data-viewer-kind="video"] iframe{
  display:none!important;
}
@media(max-width:991.98px){
  .reseller-portfolio-modal[data-viewer-kind="image"] .modal-dialog{
    width:min(720px,94vw)!important;
    max-width:min(720px,94vw)!important;
    height:min(76vh,680px)!important;
    margin:12vh auto!important;
  }
  .reseller-portfolio-modal[data-viewer-kind="image"] .modal-content{
    max-height:76vh!important;
  }
  .reseller-portfolio-modal[data-viewer-kind="image"] .reseller-portfolio-modal__stage img:not([hidden]){
    max-width:64%!important;
    max-height:64%!important;
  }
}
@media(max-width:575.98px){
  .reseller-portfolio-modal[data-viewer-kind="image"] .modal-dialog{
    width:calc(100vw - 16px)!important;
    max-width:calc(100vw - 16px)!important;
    height:calc(100dvh - 24px)!important;
    margin:12px auto!important;
  }
  .reseller-portfolio-modal[data-viewer-kind="image"] .modal-content{
    max-height:calc(100dvh - 24px)!important;
  }
  .reseller-portfolio-modal[data-viewer-kind="image"] .reseller-portfolio-modal__stage img:not([hidden]){
    max-width:88%!important;
    max-height:76%!important;
  }
}

/* === Commerce artwork workflow 2026-08 === */
.artwork-mode-grid--three{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,220px),1fr));gap:12px;width:100%}.artwork-mode-option{position:relative;display:flex;align-items:flex-start;gap:12px;width:100%;min-width:0;padding:16px;border:1px solid #dbe5f0;border-radius:16px;background:#fff;cursor:pointer;transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease}.artwork-mode-option:hover{border-color:#9fc2f4;transform:translateY(-1px)}.artwork-mode-option.is-active,.artwork-mode-option:has(input:checked){border-color:var(--ga-color-primary,#0b4a8b);box-shadow:0 0 0 3px rgba(13,110,253,.08)}.artwork-mode-option>input{position:absolute;opacity:0;pointer-events:none}.artwork-mode-option__icon{width:42px;height:42px;border-radius:12px;display:grid;place-items:center;flex:0 0 auto;background:#eef6ff;color:var(--ga-color-primary,#0b4a8b);font-size:1.15rem}.artwork-mode-option span:last-child{display:grid;gap:3px;min-width:0;width:100%}.artwork-mode-option strong,.artwork-mode-option small{overflow-wrap:normal;word-break:normal;hyphens:auto}.artwork-mode-option strong{font-size:.95rem;color:#09294b;line-height:1.25}.artwork-mode-option small{font-size:.78rem;color:#6b7c91;line-height:1.4}.artwork-mode-panel[hidden],.artwork-personalization[hidden]{display:none!important}.artwork-personalization{border-top:1px solid #e5ebf2;padding-top:20px}.ready-model-choice.is-active{border-color:var(--ga-color-primary,#0b4a8b);box-shadow:0 0 0 3px rgba(13,110,253,.08)}
.order-detail-page{padding:34px 0 56px}.order-progress-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.order-progress-step{display:flex;align-items:center;gap:9px;padding:11px 12px;border:1px solid #e1e8f0;border-radius:14px;color:#7a8797;background:#fff}.order-progress-step span{width:34px;height:34px;border-radius:10px;display:grid;place-items:center;background:#f1f5f9}.order-progress-step.is-done{color:#0c6b3f;border-color:#bfe5d1;background:#f6fffa}.order-progress-step.is-done span{background:#dcf7e8}.artwork-preview-box{border:1px solid #dbe5f0;border-radius:18px;padding:18px;background:#fbfdff}.artwork-preview-image{display:block;width:100%;max-height:560px;object-fit:contain;border-radius:12px;background:#fff;border:1px solid #e4eaf0}.artwork-preview-empty{min-height:230px;border:1px dashed #cbd8e6;border-radius:18px;display:grid;place-items:center;align-content:center;text-align:center;gap:6px;padding:28px;color:#718096;background:#fbfdff}.artwork-preview-empty i{font-size:2rem;color:#2d72c8}.artwork-preview-empty strong{color:#17324d}.artwork-order-meta{padding:12px 14px;border-radius:12px;background:#f7f9fc}.order-timeline{position:relative;display:grid;gap:0}.order-timeline-item{position:relative;display:grid;grid-template-columns:20px 1fr;gap:10px;padding:0 0 22px}.order-timeline-item:before{content:"";position:absolute;left:5px;top:12px;bottom:-3px;width:2px;background:#dde6ef}.order-timeline-item:last-child:before{display:none}.order-timeline-dot{width:12px;height:12px;border-radius:50%;background:var(--ga-color-primary,#0b4a8b);margin-top:5px;z-index:1}.approval-form{padding-top:4px}
@media(max-width:991.98px){.artwork-mode-grid--three{grid-template-columns:1fr}.order-progress-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:575.98px){.order-detail-page{padding:18px 0 90px}.order-progress-grid{grid-template-columns:1fr 1fr}.order-progress-step{padding:9px}.order-progress-step strong{font-size:.8rem}.artwork-mode-option{padding:13px}.artwork-mode-option__icon{width:38px;height:38px}.artwork-preview-box{padding:13px}.artwork-approval-actions .btn{min-height:46px}}


/* Catálogo público de artes prontas */
.ready-art-catalog{background:linear-gradient(180deg,#f8fbff 0,#fff 28rem)}
.ready-art-hero{display:flex;align-items:end;justify-content:space-between;gap:1.5rem;max-width:72rem}
.ready-art-hero p{max-width:48rem}
.ready-art-filter{background:rgba(255,255,255,.94)}
.ready-art-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}
.ready-art-card{min-width:0;background:#fff;border:1px solid var(--ga-color-border,#dce5f0);border-radius:1rem;overflow:hidden;box-shadow:0 10px 28px rgba(17,49,89,.07);transition:transform .18s ease,box-shadow .18s ease}
.ready-art-card:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(17,49,89,.12)}
.ready-art-card__media{display:flex;aspect-ratio:4/3;background:#f1f5f9;overflow:hidden;align-items:center;justify-content:center}
.ready-art-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .25s ease}
.ready-art-card:hover .ready-art-card__media img{transform:scale(1.025)}
.ready-art-card__media>span{font-size:2rem;color:#8ba1bd}
.ready-art-card__body{padding:1rem}
@media(max-width:991.98px){.ready-art-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.ready-art-hero{align-items:flex-start;flex-direction:column}}
@media(max-width:767.98px){.ready-art-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem}.ready-art-card__body{padding:.8rem}.ready-art-card__body .btn{min-height:44px;font-size:.82rem}}
@media(max-width:399.98px){.ready-art-grid{grid-template-columns:1fr}}


/* Landing pages por segmento */
.segment-commerce-page{background:#fff}
.segment-commerce-hero{max-width:58rem;padding:2rem 0 1rem}
.segment-commerce-hero .lead{max-width:50rem}
.segment-product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}
.segment-product-card{display:flex;flex-direction:column;overflow:hidden;border:1px solid var(--ga-color-border,#dce5f0);border-radius:1rem;background:#fff;text-decoration:none;color:inherit;box-shadow:0 9px 28px rgba(17,49,89,.06);transition:transform .18s ease,box-shadow .18s ease}
.segment-product-card:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(17,49,89,.11)}
.segment-product-card__media{display:flex;align-items:center;justify-content:center;aspect-ratio:16/10;background:#f4f7fb;overflow:hidden;font-size:2rem;color:#8298b4}
.segment-product-card__media img{width:100%;height:100%;object-fit:cover}
.segment-product-card__body{display:flex;flex-direction:column;gap:.35rem;padding:1rem}
.segment-product-card__body small{color:#65758b}.segment-product-card__body strong{font-size:1rem}.segment-product-card__body span{font-size:.85rem;color:#65758b}.segment-product-card__body b{color:var(--ga-color-primary,#073673)}
.product-faq-accordion{max-width:58rem}.product-faq-accordion .accordion-item{border-color:#dce5f0}.product-faq-accordion .accordion-button{font-weight:700}.product-faq-accordion .accordion-button:not(.collapsed){background:#f5f9ff;color:var(--ga-color-primary,#073673);box-shadow:none}
@media(max-width:991.98px){.segment-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:575.98px){.segment-commerce-hero{padding-top:.5rem}.segment-product-grid{gap:.75rem}.segment-product-card__body{padding:.8rem}.segment-commerce-hero .btn{width:100%}}

/* Artwork purchase flow: compact chooser + accessible Bootstrap modal */
.artwork-config-card{scroll-margin-top:110px}.artwork-upload-note{display:flex;align-items:flex-start;gap:12px;padding:14px 16px;border:1px solid #dbe5f0;border-radius:16px;background:#f8fbff}.artwork-upload-note__icon{width:42px;height:42px;flex:0 0 42px;display:grid;place-items:center;border-radius:12px;background:#eaf4ff;color:var(--ga-color-primary,#0b4a8b);font-size:1.1rem}.artwork-upload-note strong,.artwork-upload-note small{display:block}.artwork-upload-note small{margin-top:2px;color:#6b7c91;line-height:1.45}.artwork-selection-summary{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:12px;padding:14px;border:1px solid #dce7f3;border-radius:16px;background:linear-gradient(135deg,#f8fbff,#fff);box-shadow:0 8px 20px rgba(25,55,90,.05)}.artwork-selection-summary__icon{width:44px;height:44px;display:grid;place-items:center;border-radius:13px;background:#eaf4ff;color:var(--ga-color-primary,#0b4a8b);font-size:1.15rem}.artwork-selection-summary__copy{min-width:0}.artwork-selection-summary__copy small,.artwork-selection-summary__copy strong,.artwork-selection-summary__copy span{display:block}.artwork-selection-summary__copy small{color:#64748b;font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em}.artwork-selection-summary__copy strong{margin-top:2px;color:#0b2747;font-size:.95rem;line-height:1.3}.artwork-selection-summary__copy span{margin-top:2px;color:#66778c;font-size:.79rem;line-height:1.4}.artwork-selection-summary__action{white-space:nowrap;min-height:42px}.artwork-personalization-modal .modal-content{border:0;border-radius:22px;overflow:hidden;box-shadow:0 28px 80px rgba(5,31,60,.22)}.artwork-modal-header{align-items:flex-start;padding:20px 22px;border-bottom:1px solid #e7edf4;background:linear-gradient(135deg,#fff,#f5f9ff)}.artwork-modal-section{padding:20px 22px;border-bottom:1px solid #edf1f5}.artwork-modal-section:last-child{border-bottom:0}.artwork-modal-section__heading{display:flex;align-items:flex-start;gap:11px;margin-bottom:16px}.artwork-step-badge{width:30px;height:30px;flex:0 0 30px;display:grid;place-items:center;border-radius:50%;background:var(--ga-color-primary,#0b4a8b);color:#fff;font-weight:900;font-size:.82rem}.artwork-modal-footer{padding:14px 22px;border-top:1px solid #e7edf4;background:#fbfcfe}.artwork-personalization-modal .form-label{font-size:.82rem;font-weight:750;color:#17324f}.artwork-personalization-modal .form-control,.artwork-personalization-modal .form-select{min-height:44px;border-color:#d8e2ed;border-radius:11px}.artwork-personalization-modal textarea.form-control{min-height:88px}.artwork-personalization-modal .form-control:focus,.artwork-personalization-modal .form-select:focus{border-color:#7fb1ed;box-shadow:0 0 0 .2rem rgba(13,110,253,.09)}.artwork-personalization-modal .ready-model-choice-grid{grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:12px}.artwork-personalization-modal .ready-model-choice{padding:8px;border-radius:16px;gap:8px;background:#fff}.artwork-personalization-modal .ready-model-choice>input{position:absolute;opacity:0;pointer-events:none}.artwork-personalization-modal .ready-model-choice-media{position:relative;aspect-ratio:16/10;border-radius:11px}.ready-model-choice-check{position:absolute;right:8px;top:8px;width:28px;height:28px;display:grid!important;place-items:center;border-radius:50%;background:#fff;color:#7b8ca0;box-shadow:0 4px 14px rgba(15,42,73,.16);opacity:0;transform:scale(.8);transition:.18s ease}.ready-model-choice:has(input:checked) .ready-model-choice-check,.ready-model-choice.is-active .ready-model-choice-check{opacity:1;transform:scale(1);background:var(--ga-color-primary,#0b4a8b);color:#fff}.artwork-personalization-modal .ready-model-choice-body{display:block;width:100%;padding:2px 4px 4px}.artwork-personalization-modal .ready-model-choice-title{color:#0b2747;font-weight:800;font-size:.87rem;line-height:1.3}.artwork-personalization-modal .ready-model-choice-body small{margin-top:2px;color:#708096;font-size:.72rem}.artwork-personalization-modal .ready-model-choice-price{margin-top:4px;color:#0d6efd;font-size:.78rem}.artwork-personalization-modal [data-artwork-panel][hidden]{display:none}.artwork-personalization-modal .artwork-personalization{border-top:0;padding-top:20px}
@media(max-width:767.98px){.artwork-selection-summary{grid-template-columns:auto minmax(0,1fr);padding:12px}.artwork-selection-summary__action{grid-column:1/-1;width:100%}.artwork-personalization-modal .modal-dialog{margin:0;min-height:100%;max-width:none}.artwork-personalization-modal .modal-content{min-height:100vh;min-height:100dvh;border-radius:0}.artwork-modal-header,.artwork-modal-section{padding:16px}.artwork-modal-footer{position:sticky;bottom:0;z-index:4;padding:12px 16px;padding-bottom:calc(12px + env(safe-area-inset-bottom));background:rgba(255,255,255,.96);backdrop-filter:blur(10px)}.artwork-modal-footer .btn{min-height:46px;flex:1}.artwork-personalization-modal .ready-model-choice-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.artwork-personalization-modal .ready-model-choice-title{font-size:.8rem}}
@media(max-width:420px){.artwork-personalization-modal .ready-model-choice-grid{grid-template-columns:1fr}.artwork-personalization-modal .ready-model-choice{display:grid;grid-template-columns:112px minmax(0,1fr);align-items:center}.artwork-personalization-modal .ready-model-choice-media{aspect-ratio:4/3}.artwork-modal-footer{flex-wrap:nowrap}.artwork-modal-footer .btn{padding-left:10px;padding-right:10px;font-size:.85rem}}

/* === Artwork configurator responsive pattern 2026-08-13 ===
 * Component-driven responsiveness: the product configurator can be narrow even
 * on a desktop viewport, so layout decisions must follow the card width.
 */
.artwork-config-card {
  container-type: inline-size;
  container-name: artwork-config;
  min-width: 0;
}
.artwork-config-card *,
.artwork-config-card *::before,
.artwork-config-card *::after {
  box-sizing: border-box;
}
.artwork-mode-grid,
.artwork-mode-grid--three {
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.artwork-mode-option {
  min-width: 0;
  width: 100%;
  align-items: flex-start;
}
.artwork-mode-option > span:last-child {
  min-width: 0;
  width: 100%;
}
.artwork-mode-option strong,
.artwork-mode-option small,
.artwork-selection-summary__copy small,
.artwork-selection-summary__copy strong,
.artwork-selection-summary__copy span {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}
.artwork-selection-summary {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}
.artwork-selection-summary__action {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  justify-content: center;
  white-space: normal;
  line-height: 1.2;
}
.artwork-config-card .btn {
  max-width: 100%;
}
.artwork-config-card .btn i {
  flex: 0 0 auto;
}

@container artwork-config (max-width: 560px) {
  .artwork-mode-grid,
  .artwork-mode-grid--three {
    grid-template-columns: 1fr;
  }
  .artwork-mode-option {
    padding: 14px;
    gap: 11px;
  }
  .artwork-mode-option__icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .artwork-selection-summary {
    padding: 13px;
    gap: 10px;
  }
}

@container artwork-config (max-width: 340px) {
  .artwork-mode-option {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 12px;
  }
  .artwork-mode-option__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .artwork-mode-option strong {
    font-size: .9rem;
  }
  .artwork-mode-option small {
    font-size: .76rem;
  }
  .artwork-selection-summary {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 12px;
  }
  .artwork-selection-summary__icon {
    width: 38px;
    height: 38px;
  }
  .artwork-selection-summary__action {
    min-height: 46px;
    font-size: .88rem;
  }
}

/* Layering standard: page < sticky header (1030) < Bootstrap backdrop (1050) < modal (1055).
   Product sections must not create a z-index stacking context or they can trap modals below the backdrop. */
.store-unit-actions {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
  margin-top: .45rem;
}
.checkout-store-unit .store-unit-actions {
  padding-right: 1.9rem;
}
.store-unit-photo-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #fff;
  color: #0d6efd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(13,110,253,.12);
}
.store-unit-photo-btn:hover,
.store-unit-photo-btn:focus {
  background: #0d6efd;
  color: #fff;
}
.pickup-photo-modal {
  position: fixed;
  inset: 0;
  z-index: 1085;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px,4vw,40px);
  background: rgba(3,13,32,.72);
}
.pickup-photo-modal.is-open {
  display: flex;
}
.pickup-photo-dialog {
  width: min(94vw,860px);
  max-height: 90vh;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 26px 80px rgba(2,8,23,.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pickup-photo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  background: #061934;
  color: #fff;
}
.pickup-photo-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pickup-photo-body {
  padding: clamp(12px,2vw,20px);
  background: #f6f8fb;
  overflow: auto;
}
.pickup-photo-body img {
  display: block;
  max-width: 100%;
  max-height: 72vh;
  margin: auto;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
}
@media (max-width:575.98px) {
  .store-unit-actions {
    gap: .35rem;
  }
  .pickup-photo-dialog {
    width: 96vw;
    border-radius: 14px;
  }
  .pickup-photo-body img {
    max-height: 68vh;
  }
}
/* Checkout: fotos das unidades de retirada */
.checkout-store-unit {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  overflow: hidden;
  padding: .9rem 1rem;
}
.checkout-store-unit strong,
.checkout-store-unit > span:not(.store-unit-check):not(.store-unit-actions) {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.checkout-store-unit .store-unit-actions {
  display: flex !important;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
  width: 100%;
  margin-top: .5rem;
  padding-right: 2.15rem;
}
.checkout-store-unit .store-unit-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  line-height: 1;
}
.store-unit-photo-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  padding: 0;
  line-height: 1;
  position: static;
  z-index: 2;
}
.pickup-photo-modal {
  padding: clamp(12px, 3vw, 28px);
  background: rgba(2, 8, 23, .62);
}
.pickup-photo-dialog {
  width: min(92vw, 720px);
  max-height: 88vh;
  overflow: hidden;
}
.pickup-photo-body {
  max-height: calc(88vh - 62px);
  overflow: auto;
}
.pickup-photo-body img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(88vh - 110px);
  object-fit: contain;
}
@media (max-width: 767.98px) {
  .checkout-store-units {
    grid-template-columns: 1fr;
  }
  .checkout-store-unit {
    padding: .85rem;
  }
  .checkout-store-unit .store-unit-actions {
    padding-right: 1.9rem;
  }
  .pickup-photo-dialog {
    width: 96vw;
    max-height: 84vh;
    border-radius: 14px;
  }
  .pickup-photo-body,
  .pickup-photo-body img {
    max-height: calc(84vh - 90px);
  }
}

/* Checkout: alinhamento responsivo dos botoes de mapa/foto das unidades */
.checkout-store-unit,
.checkout-store-unit * {
  box-sizing: border-box;
}
.checkout-store-unit {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  padding: .9rem 1rem;
}
.checkout-store-unit strong,
.checkout-store-unit > span:not(.store-unit-check):not(.store-unit-actions) {
  max-width: 100%;
  padding-right: 2rem;
  overflow-wrap: anywhere;
}
.checkout-store-unit .store-unit-actions {
  display: flex !important;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin-top: .55rem;
  padding-right: 2rem;
}
.checkout-store-unit .store-unit-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  max-width: calc(100% - 36px);
  line-height: 1;
  white-space: nowrap;
}
.store-unit-photo-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  min-width: 28px;
  padding: 0;
  line-height: 1;
  position: static !important;
  z-index: 2;
}
.pickup-photo-modal {
  padding: clamp(12px, 3vw, 28px);
  background: rgba(2, 8, 23, .62);
}
.pickup-photo-dialog {
  width: min(92vw, 720px);
  max-height: 88vh;
  overflow: hidden;
}
.pickup-photo-body {
  max-height: calc(88vh - 62px);
  overflow: auto;
}
.pickup-photo-body img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(88vh - 110px);
  object-fit: contain;
}
@media (max-width: 767.98px) {
  .checkout-store-units {
    grid-template-columns: 1fr;
  }
  .checkout-store-unit {
    padding: .85rem;
  }
  .checkout-store-unit .store-unit-actions {
    padding-right: 1.8rem;
  }
  .pickup-photo-dialog {
    width: 96vw;
    max-height: 84vh;
    border-radius: 14px;
  }
  .pickup-photo-body,
  .pickup-photo-body img {
    max-height: calc(84vh - 90px);
  }
}
.client-sidebar-customer-code{display:block;margin-top:.22rem;color:#ffd84d;font-size:.72rem;font-weight:800;line-height:1.25;white-space:nowrap}.client-sidebar-customer-code b{color:#fff36a;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono",monospace;letter-spacing:.06em}.client-coupon-tabs-wrap{margin-top:.35rem}.client-coupon-tabs-scroll{overflow-x:auto;overflow-y:hidden;scrollbar-width:thin;-webkit-overflow-scrolling:touch;margin-bottom:1rem}.client-coupon-tabs{display:inline-flex;flex-wrap:nowrap;min-width:max-content;gap:0;padding:.22rem;border:1px solid #dbe5f2;border-radius:1rem;background:#fff;box-shadow:0 10px 28px rgba(15,23,42,.06)}.client-coupon-tabs .nav-link{display:inline-flex;align-items:center;justify-content:center;gap:.48rem;min-height:46px;padding:.7rem 1.15rem;border-radius:.8rem;color:#183150;font-size:.88rem;font-weight:850;white-space:nowrap}.client-coupon-tabs .nav-link:hover{background:#f3f7fc;color:#0d6efd}.client-coupon-tabs .nav-link.active{background:linear-gradient(135deg,#0d6efd,#0864df);color:#fff;box-shadow:0 8px 18px rgba(13,110,253,.22)}.client-coupon-tab-count{display:inline-grid;min-width:22px;height:22px;place-items:center;padding:0 .35rem;border-radius:999px;background:#edf3fa;color:#31506f;font-size:.7rem;font-weight:900}.client-coupon-tabs .nav-link.active .client-coupon-tab-count{background:rgba(255,255,255,.2);color:#fff}.client-coupon-tab-content>.tab-pane{min-height:160px}.client-coupon-table-wrap{border-radius:.8rem}@media (max-width:767.98px){.client-coupon-tabs-scroll{margin-inline:-.15rem;padding-bottom:.25rem}.client-coupon-tabs{width:max-content}.client-coupon-tabs .nav-link{min-height:43px;padding:.62rem .85rem;font-size:.82rem}.client-coupon-table-wrap{overflow:visible}.client-coupon-table-wrap table,.client-coupon-table-wrap thead,.client-coupon-table-wrap tbody,.client-coupon-table-wrap tr,.client-coupon-table-wrap td{display:block;width:100%}.client-coupon-table-wrap thead{display:none}.client-coupon-table-wrap tbody{display:grid;gap:.8rem}.client-coupon-table-wrap tr{border:1px solid #e0e8f2;border-radius:1rem;padding:.6rem .85rem;background:#fff;box-shadow:0 8px 22px rgba(15,23,42,.04)}.client-coupon-table-wrap td{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.5rem 0!important;border:0!important;border-bottom:1px dashed #edf1f6!important;text-align:right}.client-coupon-table-wrap td:last-child{border-bottom:0!important}.client-coupon-table-wrap td::before{content:attr(data-label);color:#64748b;font-size:.72rem;font-weight:850;text-transform:uppercase;letter-spacing:.03em;text-align:left}.client-coupon-table-wrap td[colspan]{display:block;text-align:center}.client-coupon-table-wrap td[colspan]::before{content:none}}
.reseller-commission-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}.reseller-commission-card{position:relative;display:flex;align-items:flex-start;gap:.95rem;min-width:0;min-height:150px;padding:1.25rem;border:1px solid #e1eaf5;border-radius:1.25rem;background:linear-gradient(145deg,#fff 0%,#f7faff 100%);box-shadow:0 12px 32px rgba(15,23,42,.07);overflow:hidden}.reseller-commission-card::after{content:"";position:absolute;right:-28px;bottom:-38px;width:100px;height:100px;border-radius:50%;background:rgba(13,110,253,.06)}.reseller-commission-icon{position:relative;z-index:1;flex:0 0 46px;display:grid;place-items:center;width:46px;height:46px;border-radius:.95rem;background:#eaf3ff;color:#0d6efd;font-size:1.2rem}.reseller-commission-content{position:relative;z-index:1;min-width:0;display:flex;flex-direction:column}.reseller-commission-content>span{color:#64748b;font-size:.76rem;font-weight:850;letter-spacing:.02em;text-transform:uppercase}.reseller-commission-content>strong{margin:.28rem 0 .32rem;color:#0b2447;font-size:clamp(1.35rem,2.1vw,2rem);line-height:1.05;letter-spacing:-.03em;overflow-wrap:anywhere}.reseller-commission-content>small{color:#728198;font-size:.77rem;line-height:1.4}@media(max-width:1199.98px){.reseller-commission-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:575.98px){.reseller-commission-grid{grid-template-columns:1fr;gap:.8rem}.reseller-commission-card{min-height:126px;padding:1rem;border-radius:1rem}.reseller-commission-icon{flex-basis:42px;width:42px;height:42px;border-radius:.8rem}.reseller-commission-content>strong{font-size:1.55rem}}
.transfer-tabs-wrap{max-width:100%}.transfer-tabs{display:flex;width:100%;min-width:0}.transfer-tabs .nav-link{flex:1 1 0;min-width:0;padding:.78rem 1rem;text-align:center}.transfer-tabs .nav-link span{overflow:hidden;text-overflow:ellipsis}@media (max-width:991.98px){.transfer-tabs{width:max-content;min-width:100%}.transfer-tabs .nav-link{flex:0 0 auto;min-width:180px}}@media (max-width:575.98px){.transfer-tabs-wrap{margin-inline:0}.transfer-tabs .nav-link{min-width:158px;padding:.68rem .8rem;font-size:.79rem}.transfer-tabs .nav-link i{font-size:.92rem}.client-panel-card{padding:1.15rem!important}.client-panel-card .row.g-4{--bs-gutter-y:1.25rem}.client-panel-card .form-check{padding:1rem!important}.client-panel-card .input-group .form-control{min-width:0}}
.transfer-attention{display:flex;gap:.9rem;align-items:flex-start;padding:1rem 1.05rem;border:1px solid #f3cf62;border-radius:1rem;background:linear-gradient(135deg,#fff8d7,#fff3b8);color:#5f4a00;box-shadow:0 8px 22px rgba(180,135,0,.08)}.transfer-attention__icon{flex:0 0 38px;display:grid;place-items:center;width:38px;height:38px;border-radius:.8rem;background:#ffc107;color:#5d4500;font-size:1rem;box-shadow:0 6px 14px rgba(255,193,7,.2)}.transfer-attention strong{display:block;margin-bottom:.28rem;color:#4f3a00;font-size:.82rem;text-transform:uppercase;letter-spacing:.05em}.transfer-attention p{margin:0;color:#6d570b;font-size:.86rem;line-height:1.45}.transfer-attention p+p{margin-top:.38rem;padding-top:.38rem;border-top:1px solid rgba(128,96,0,.12)}.transfer-account-summary{padding:.9rem 1rem;border:1px solid #dfe8f2;border-radius:1rem;background:#f8fafc;display:flex;flex-direction:column;gap:.2rem}.transfer-account-summary--pix{border-color:#d9e7ff;background:#f4f8ff}.transfer-account-summary__label{font-size:.68rem;font-weight:850;text-transform:uppercase;letter-spacing:.05em;color:#718096}.transfer-account-summary strong{color:#0b2447;font-size:.94rem;overflow-wrap:anywhere}.transfer-account-summary small{color:#6b7b90;line-height:1.4}.transfer-pix-icon{display:grid;place-items:center;width:34px;height:34px;border-radius:.75rem;background:#e9f3ff;color:#0d6efd}@media(max-width:991.98px){.transfer-attention{max-width:none}.transfer-account-summary{margin-top:1rem!important}}@media(max-width:575.98px){.transfer-attention{padding:.9rem;border-radius:.9rem;gap:.7rem}.transfer-attention__icon{flex-basis:34px;width:34px;height:34px}.transfer-attention p{font-size:.81rem}}
.transfer-account-actions{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.85rem;padding-top:.8rem;border-top:1px solid rgba(15,58,105,.09)}.transfer-account-actions form{margin:0}.transfer-account-actions .btn{display:inline-flex;align-items:center;justify-content:center;gap:.35rem;min-height:34px;padding:.35rem .7rem;border-radius:10px;font-weight:700;font-size:.78rem;line-height:1.1}.transfer-account-form-editing{padding:1rem;border-radius:16px;outline:2px solid rgba(13,110,253,.14);background:rgba(13,110,253,.025);transition:background .2s ease,outline-color .2s ease}@media (max-width:575.98px){.transfer-account-actions{display:grid;grid-template-columns:1fr 1fr}.transfer-account-actions form,.transfer-account-actions .btn{width:100%}}

/* Dashboard do revendedor: central de atalhos rápidos */
.client-quick-access{margin-top:1.4rem;padding:clamp(1rem,2.2vw,1.5rem);background:#fff;border:1px solid #dfe8f5;border-radius:22px;box-shadow:0 12px 30px rgba(15,53,96,.06)}.client-quick-access__heading{margin-bottom:1.1rem}.client-quick-access__heading h2{margin:.15rem 0 .25rem;font-size:clamp(1.25rem,2vw,1.55rem);font-weight:800;color:#0b2140}.client-quick-access__heading p{margin:0;color:#6c7b90;font-size:.94rem}.client-quick-access__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.9rem}.client-quick-card{min-width:0;min-height:104px;display:grid;grid-template-columns:48px minmax(0,1fr) 20px;align-items:center;gap:.8rem;padding:1rem;color:#10243f;text-decoration:none;background:#fbfdff;border:1px solid #dce7f5;border-radius:16px;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,background .18s ease}.client-quick-card:hover,.client-quick-card:focus-visible{color:#10243f;background:#fff;border-color:#9fc5ff;box-shadow:0 10px 24px rgba(20,91,184,.1);transform:translateY(-2px)}.client-quick-card:focus-visible{outline:3px solid rgba(13,110,253,.18);outline-offset:2px}.client-quick-card__icon{width:48px;height:48px;display:inline-flex;align-items:center;justify-content:center;border-radius:14px;background:#edf5ff;color:#0d6efd;font-size:1.25rem}.client-quick-card__body{min-width:0;display:flex;flex-direction:column;gap:.2rem}.client-quick-card__body strong{font-size:.98rem;line-height:1.2}.client-quick-card__body small{color:#6d7d91;font-size:.78rem;line-height:1.35}.client-quick-card__arrow{color:#9aabc0;font-size:.9rem;transition:transform .18s ease,color .18s ease}.client-quick-card:hover .client-quick-card__arrow,.client-quick-card:focus-visible .client-quick-card__arrow{color:#0d6efd;transform:translateX(2px)}@media(max-width:1199.98px){.client-quick-access__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:575.98px){.client-quick-access{margin-top:1rem;border-radius:16px;padding:.85rem}.client-quick-access__grid{grid-template-columns:1fr;gap:.65rem}.client-quick-card{min-height:86px;grid-template-columns:42px minmax(0,1fr) 18px;padding:.8rem;border-radius:14px}.client-quick-card__icon{width:42px;height:42px;border-radius:12px;font-size:1.05rem}.client-quick-card__body small{font-size:.75rem}}
    padding: .85rem;
  }
  .client-quick-access__grid { grid-template-columns: 1fr; gap: .65rem; }
  .client-quick-card {
    min-height: 86px;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    padding: .8rem;
    border-radius: 14px;
  }
  .client-quick-card__icon { width: 42px; height: 42px; border-radius: 12px; font-size: 1.05rem; }
  .client-quick-card__body small { font-size: .75rem; }
}

/* Painel do cliente/revendedor - tabela e ações de pedidos */
.client-orders-table-wrap{border:1px solid #e1e9f3;border-radius:18px;overflow:hidden;background:#fff}
.client-orders-table{margin-bottom:0;min-width:980px}
.client-orders-table thead th{padding:.9rem .8rem;background:#f7f9fc;border-bottom:1px solid #e3eaf2;color:#65758a;font-size:.72rem;font-weight:800;letter-spacing:.045em;text-transform:uppercase;white-space:nowrap}
.client-orders-table tbody td{padding:1rem .8rem;border-color:#edf1f5;vertical-align:middle}
.client-orders-table tbody tr:last-child td{border-bottom:0}
.client-order-code{color:#0d2746;white-space:nowrap}
.client-order-date{font-size:.84rem;line-height:1.35;color:#35465a;white-space:nowrap}
.client-order-status-badge{display:inline-flex;align-items:center;max-width:100%;padding:.42rem .62rem;border-radius:999px;font-size:.72rem;font-weight:750;line-height:1.15;white-space:normal;text-align:center}
.client-order-invoice-action{display:flex;align-items:center;justify-content:flex-start;min-width:0}
.client-order-actions-cell{text-align:right}
.client-order-actions{display:flex;align-items:center;justify-content:flex-end;gap:.45rem;min-width:0}
.client-order-action-form{display:flex;min-width:0}
.client-order-btn{display:inline-flex;align-items:center;justify-content:center;gap:.38rem;min-height:34px;padding:.38rem .7rem;border-radius:10px;font-size:.76rem;font-weight:750;line-height:1.1;white-space:nowrap;box-shadow:none!important;transition:transform .15s ease,box-shadow .15s ease,background-color .15s ease,border-color .15s ease}
.client-order-btn:hover{transform:translateY(-1px)}
.client-order-btn i{font-size:.85rem;line-height:1}
.client-order-btn--invoice{min-width:96px}

@media (max-width:1199.98px){
  .client-orders-table{min-width:900px}
  .client-order-actions{flex-direction:column;align-items:stretch;min-width:148px}
  .client-order-actions .client-order-btn,.client-order-action-form,.client-order-action-form .client-order-btn{width:100%}
}
@media (max-width:767.98px){
  .client-orders-table-wrap{border:0;background:transparent;overflow:visible}
  .client-orders-table{display:block;min-width:0;background:transparent}
  .client-orders-table thead{display:none}
  .client-orders-table tbody{display:grid;gap:.85rem}
  .client-orders-table tbody tr{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem .9rem;padding:1rem;border:1px solid #dfe8f2;border-radius:16px;background:#fff;box-shadow:0 8px 24px rgba(17,49,89,.055)}
  .client-orders-table tbody td{display:block;padding:0;border:0;min-width:0;text-align:left!important}
  .client-orders-table tbody td::before{content:attr(data-label);display:block;margin-bottom:.25rem;color:#718096;font-size:.66rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase}
  .client-orders-table tbody td:first-child{grid-column:1/-1;padding-bottom:.7rem;border-bottom:1px solid #edf2f7}
  .client-orders-table tbody td:first-child::before{display:none}
  .client-orders-table tbody td[data-label="Nota fiscal"],.client-orders-table tbody td[data-label="Ações"]{grid-column:1/-1}
  .client-order-invoice-action,.client-order-actions{justify-content:stretch}
  .client-order-invoice-action form,.client-order-invoice-action .client-order-btn{width:100%}
  .client-order-actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.5rem;min-width:0}
  .client-order-actions .client-order-btn,.client-order-action-form,.client-order-action-form .client-order-btn{width:100%}
  .client-order-btn{min-height:40px;padding:.48rem .65rem;border-radius:10px;font-size:.78rem}
  .client-orders-empty{display:block!important;padding:0!important}
  .client-orders-empty td{padding:1.25rem!important;border:1px solid #dfe8f2!important;border-radius:16px!important;background:#fff!important}
  .client-orders-empty td::before{display:none!important}
}
@media (max-width:420px){
  .client-orders-table tbody tr{grid-template-columns:1fr;padding:.9rem}
  .client-orders-table tbody td,.client-orders-table tbody td[data-label="Nota fiscal"],.client-orders-table tbody td[data-label="Ações"]{grid-column:1/-1}
  .client-order-actions{grid-template-columns:1fr}
}
.client-credit-tabs-wrap{max-width:100%}.client-credit-tabs-scroll{overflow-x:auto;scrollbar-width:thin;padding-bottom:.2rem}.client-credit-tabs{display:inline-flex;flex-wrap:nowrap;gap:.45rem;padding:.38rem;border:1px solid #dfe8f2;border-radius:1rem;background:#fff;box-shadow:0 8px 24px rgba(15,58,105,.05);min-width:min(100%,660px)}.client-credit-tabs .nav-link{display:inline-flex;align-items:center;justify-content:center;gap:.45rem;min-height:44px;padding:.62rem .95rem;border-radius:.8rem;color:#0b2447;font-size:.84rem;font-weight:800;white-space:nowrap;transition:.18s ease}.client-credit-tabs .nav-link:hover{background:#f2f7ff;color:#0d6efd}.client-credit-tabs .nav-link.active{background:#0d6efd;color:#fff;box-shadow:0 8px 18px rgba(13,110,253,.18)}.client-credit-tab-count{display:inline-grid;place-items:center;min-width:21px;height:21px;padding:0 .35rem;border-radius:999px;background:#edf3fb;color:#0b2447;font-size:.7rem;font-weight:900}.client-credit-tabs .nav-link.active .client-credit-tab-count{background:rgba(255,255,255,.2);color:#fff}.client-credit-panel-narrow{max-width:720px}.client-credit-buy-form{max-width:460px}.client-credit-actions{display:flex;justify-content:flex-end;flex-wrap:wrap;gap:.4rem}.client-credit-actions form{margin:0}.client-credit-actions .btn{display:inline-flex;align-items:center;justify-content:center;gap:.32rem;min-height:32px;padding:.34rem .62rem;border-radius:.65rem;font-size:.76rem;font-weight:750;line-height:1.1}@media(max-width:767.98px){.client-credit-tabs{width:max-content;min-width:100%}.client-credit-tabs .nav-link{padding:.58rem .78rem;font-size:.8rem}.client-credit-table-wrap{overflow:visible}.client-credit-table thead{display:none}.client-credit-table,.client-credit-table tbody,.client-credit-table tr,.client-credit-table td{display:block;width:100%}.client-credit-table tr{margin-bottom:.8rem;padding:.85rem;border:1px solid #e1e9f2;border-radius:1rem;background:#fff;box-shadow:0 5px 16px rgba(15,58,105,.04)}.client-credit-table td{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.42rem 0!important;border:0!important;text-align:right!important}.client-credit-table td::before{content:attr(data-label);color:#6a7a90;font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.04em;text-align:left}.client-credit-table td:last-child{display:block;padding-top:.7rem!important;margin-top:.3rem;border-top:1px solid #edf1f6!important}.client-credit-table td:last-child::before{display:none}.client-credit-actions{display:grid;grid-template-columns:1fr 1fr;width:100%}.client-credit-actions form,.client-credit-actions .btn{width:100%}}@media(max-width:420px){.client-credit-actions{grid-template-columns:1fr}.client-credit-tabs .nav-link{min-height:40px}}

/* === Hotfix hospedagem 2026-08-26: quantidade + vídeo de envio de arte === */
@media (max-width: 575.98px) {
  .product-config-section .quantity-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100%;
    gap: .35rem !important;
    overflow: visible !important;
  }
  .product-config-section .quantity-option {
    display: grid !important;
    grid-template-columns: 1.05rem minmax(0, 1fr) auto !important;
    grid-template-areas: "check name price" !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: .58rem .15rem !important;
    column-gap: .55rem !important;
  }
  .product-config-section .quantity-check { grid-area: check; }
  .product-config-section .quantity-name {
    grid-area: name;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
    line-height: 1.2;
  }
  .product-config-section .quantity-option strong {
    grid-area: price;
    justify-self: end;
    white-space: nowrap;
    font-size: .82rem !important;
  }
  .product-config-section .quantity-line { display: none !important; }
  .upload-video-dialog {
    width: auto !important;
    max-width: none !important;
    margin: .5rem !important;
  }
  .upload-video-modal {
    max-height: calc(100dvh - 1rem) !important;
    overflow: hidden;
  }
  .upload-video-body {
    display: block !important;
    overflow: auto;
  }
  .upload-video-frame {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    max-height: calc(100dvh - 9rem) !important;
    aspect-ratio: 16 / 9;
    border-radius: 0 !important;
  }
  .upload-video-frame iframe,
  .upload-video-frame video {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: calc(100dvh - 9rem) !important;
    object-fit: contain !important;
  }
  .upload-video-fallback {
    padding: .55rem;
    text-align: center;
    background: #111827;
  }
}
@media (max-width: 360px) {
  .product-config-section .quantity-option {
    grid-template-columns: 1rem minmax(0, 1fr) !important;
    grid-template-areas: "check name" ". price" !important;
    row-gap: .18rem !important;
  }
  .product-config-section .quantity-option strong { justify-self: start; }
}
