/* ===========================
   SBHB — Hybrid Button Widget
   =========================== */

.sbhb-widget {
  width: 100%;
}

.sbhb-card {
  --sbhb-duration: 300ms;
  --sbhb-icon-size: 26px;
  --sbhb-offset-x: 0px;
  --sbhb-offset-y: 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none !important;
  cursor: pointer;
  transform-origin: center center;
  transition: transform var(--sbhb-duration) ease, box-shadow var(--sbhb-duration) ease;
}

.sbhb-bg,
.sbhb-overlay,
.sbhb-content,
.sbhb-icon-wrap {
  transition: all var(--sbhb-duration) ease;
}

.sbhb-bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.001);
}

.sbhb-card:hover .sbhb-bg {
  transform: scale(1.04);
}

.sbhb-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sbhb-content {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 100%);
  box-sizing: border-box;
}

.sbhb-title {
  display: block;
  width: 100%;
  text-align: center;
}

.sbhb-icon-wrap {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-style: solid;
  border-width: 1px;
  border-color: transparent;
  pointer-events: none;
}

.sbhb-icon-wrap i,
.sbhb-icon-wrap svg {
  width: var(--sbhb-icon-size);
  height: var(--sbhb-icon-size);
  font-size: var(--sbhb-icon-size);
}

.sbhb-card.is-top-left .sbhb-icon-wrap {
  top: calc(18px + var(--sbhb-offset-y));
  left: calc(18px + var(--sbhb-offset-x));
}

.sbhb-card.is-top-center .sbhb-icon-wrap {
  top: calc(18px + var(--sbhb-offset-y));
  left: calc(50% + var(--sbhb-offset-x));
  transform: translateX(-50%);
}

.sbhb-card.is-top-right .sbhb-icon-wrap {
  top: calc(18px + var(--sbhb-offset-y));
  right: calc(18px - var(--sbhb-offset-x));
}

.sbhb-card.is-center-left .sbhb-icon-wrap {
  top: calc(50% + var(--sbhb-offset-y));
  left: calc(18px + var(--sbhb-offset-x));
  transform: translateY(-50%);
}

.sbhb-card.is-center .sbhb-icon-wrap {
  top: calc(50% + var(--sbhb-offset-y));
  left: calc(50% + var(--sbhb-offset-x));
  transform: translate(-50%, -50%);
}

.sbhb-card.is-center-right .sbhb-icon-wrap {
  top: calc(50% + var(--sbhb-offset-y));
  right: calc(18px - var(--sbhb-offset-x));
  transform: translateY(-50%);
}

.sbhb-card.is-bottom-left .sbhb-icon-wrap {
  bottom: calc(18px - var(--sbhb-offset-y));
  left: calc(18px + var(--sbhb-offset-x));
}

.sbhb-card.is-bottom-center .sbhb-icon-wrap {
  bottom: calc(18px - var(--sbhb-offset-y));
  left: calc(50% + var(--sbhb-offset-x));
  transform: translateX(-50%);
}

.sbhb-card.is-bottom-right .sbhb-icon-wrap {
  bottom: calc(18px - var(--sbhb-offset-y));
  right: calc(18px - var(--sbhb-offset-x));
}

.sbhb-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.sbhb-modal.is-open {
  display: flex;
}

.sbhb-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
}

.sbhb-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px, calc((100vh - 80px) * 1.7777778));
  max-width: 1100px;
  margin: 0;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sbhb-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.sbhb-modal-frame iframe,
.sbhb-modal-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sbhb-modal-close {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 3;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.sbhb-modal-close:hover,
.sbhb-modal-close:focus-visible {
  background: transparent;
  color: #fff;
  opacity: .85;
  outline: none;
}

@media (max-width: 767px) {
  .sbhb-card.is-top-left .sbhb-icon-wrap,
  .sbhb-card.is-top-center .sbhb-icon-wrap,
  .sbhb-card.is-top-right .sbhb-icon-wrap {
    top: calc(12px + var(--sbhb-offset-y));
  }

  .sbhb-card.is-bottom-left .sbhb-icon-wrap,
  .sbhb-card.is-bottom-center .sbhb-icon-wrap,
  .sbhb-card.is-bottom-right .sbhb-icon-wrap {
    bottom: calc(12px - var(--sbhb-offset-y));
  }

  .sbhb-card.is-top-left .sbhb-icon-wrap,
  .sbhb-card.is-center-left .sbhb-icon-wrap,
  .sbhb-card.is-bottom-left .sbhb-icon-wrap {
    left: calc(12px + var(--sbhb-offset-x));
  }

  .sbhb-card.is-top-right .sbhb-icon-wrap,
  .sbhb-card.is-center-right .sbhb-icon-wrap,
  .sbhb-card.is-bottom-right .sbhb-icon-wrap {
    right: calc(12px - var(--sbhb-offset-x));
  }

  .sbhb-modal {
    padding: 28px 12px;
  }

  .sbhb-modal-dialog {
    width: min(94vw, calc((100vh - 72px) * 1.7777778));
    border-radius: 14px;
  }

  .sbhb-modal-close {
    top: 12px;
    right: 14px;
    font-size: 36px;
  }
}

/* ============================================================
   SNB — Seenbio Link Buttons (v1.2.0)
   Design Glass: thumbnail + título + subtítulo + badge + menu
   ============================================================ */

.snb-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    font-family: 'Space Grotesk', system-ui, sans-serif;
}

/* ---- Botão ---- */
.snb-btn {
    display: flex;
    align-items: stretch;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    overflow: visible;
    min-height: 80px;
    position: relative;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    box-sizing: border-box;
    width: 100%;
}

.snb-btn:hover {
    border-color: rgba(255,255,255,0.38);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
}

/* Hover claro só na área de texto, não afeta a thumbnail */
.snb-btn:hover .snb-body,
.snb-btn:hover .snb-actions {
    background: rgba(255,255,255,0.12);
}

/* ---- Thumbnail ---- */
.snb-thumb {
    width: 120px;
    min-width: 120px;
    background: rgba(255,255,255,0.05);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: inherit;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.snb-thumb::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.07);
}

.snb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.snb-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1e22, #2a2a30);
}

/* ---- Corpo (link clicável) ---- */
.snb-body {
    flex: 1;
    padding: 12px 10px 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

/* ---- Badge ---- */
.snb-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 2px;
    font-family: 'Space Grotesk', system-ui, sans-serif;
}

.snb-badge--live {
    color: oklch(0.72 0.2 145);
    background: rgba(40,200,100,0.1);
    border: 1px solid rgba(40,200,100,0.25);
}

.snb-badge--new {
    color: oklch(0.78 0.18 310);
    background: rgba(200,80,255,0.1);
    border: 1px solid rgba(200,80,255,0.2);
}

.snb-badge--custom {
    color: oklch(0.72 0.18 258);
    background: rgba(120,90,255,0.12);
    border: 1px solid rgba(120,90,255,0.2);
}

/* ---- Título e Subtítulo ---- */
.snb-title {
    font-size: 14px;
    font-weight: 600;
    color: #f0f0f2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    display: block;
}

.snb-subtitle {
    font-size: 11.5px;
    color: #6b6b73;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    display: block;
}

/* ---- Ações (3 pontinhos) ---- */
.snb-actions {
    display: flex;
    align-items: center;
    padding: 0 14px 0 4px;
    flex-shrink: 0;
    position: relative;
    transition: background 0.2s;
}

.snb-dot-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    color: #6b6b73;
    padding: 0;
}

.snb-dot-btn:hover {
    background: rgba(255,255,255,0.08);
    color: #f0f0f2;
}

/* ---- Popup de compartilhamento ---- */
.snb-popup {
    position: fixed; /* fixed em vez de absolute — sai completamente do fluxo e de qualquer stacking context */
    background: #222224;
    background-color: #222224 !important; /* sobrescreve qualquer herança */
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 6px;
    min-width: 200px;
    z-index: 2147483647; /* z-index máximo possível */
    display: none;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.8);
    /* Bloqueia qualquer backdrop-filter herdado */
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    /* Cria contexto de composição próprio e opaco */
    will-change: transform;
    transform: translateZ(0);
    opacity: 1 !important;
}

.snb-popup.snb-open {
    display: flex;
}

/* Garante que o popup fique acima do link do botão */
.snb-actions {
    position: relative;
    z-index: 10;
}

.snb-popup {
    /* sobrescreve qualquer herança de transparência */
    background-color: #222224 !important;
    opacity: 1 !important;
}

@keyframes snbPopIn {
    from { opacity: 0; transform: scale(0.92) translateY(-4px); }
    to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.snb-popup-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 13px;
    color: #f0f0f2;
    font-weight: 500;
    border: none;
    background: transparent;
    text-align: left;
    width: 100%;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    position: relative;
    z-index: 100001;
    pointer-events: all;
}

.snb-popup-item:hover {
    background: rgba(255,255,255,0.07);
}

.snb-popup-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}

.snb-popup-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 4px 0;
}

/* ---- Toast ---- */
.snb-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: #222224;
    border: 1px solid rgba(255,255,255,0.1);
    color: #f0f0f2;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 99px;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    font-family: 'Space Grotesk', system-ui, sans-serif;
}

.snb-toast.snb-toast--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   SNBF — Seenbio Followers Widget (v1.3.0)
   Contador total de seguidores com painel de detalhes
   ============================================================ */

/* ---- Trigger — faixa degradê ---- */
.snbf-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    transition: filter 0.2s, transform 0.15s;
    line-height: 1.2;
}

.snbf-trigger--band {
    /* background, radius, padding, color, font-size, font-weight
       são todos aplicados via inline style gerado pelo PHP
       com base nos controles do Elementor */
}

.snbf-trigger:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.snbf-band-text {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
}

.snbf-chevron {
    opacity: 0.85;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.snbf-trigger:hover .snbf-chevron {
    transform: translateY(2px);
}

/* ---- Backdrop + Sheet ---- */
.snbf-sheet {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.snbf-sheet.snbf-open {
    display: flex;
}

.snbf-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: snbfFadeIn 0.22s ease;
}

@keyframes snbfFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ---- Painel ---- */
.snbf-panel {
    position: relative;
    z-index: 2;
    width: min(100vw, 680px);
    max-height: 82vh;
    overflow-y: auto;
    background: #1c1c1e;
    border-radius: 24px 24px 0 0;
    padding: 12px 24px 40px;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
    animation: snbfSlideUp 0.28s cubic-bezier(0.32,0.72,0,1);
    scrollbar-width: none;
}

.snbf-panel::-webkit-scrollbar { display: none; }

@keyframes snbfSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

/* Handle de arraste visual */
.snbf-handle {
    width: 36px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 99px;
    margin: 0 auto 20px;
}

/* Total no topo do painel */
.snbf-panel-total {
    text-align: center;
    margin-bottom: 24px;
}

.snbf-panel-number {
    display: block;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.snbf-panel-suffix {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

/* ---- Lista de redes ---- */
.snbf-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 3;
}

.snbf-item {
    border-radius: 14px;
}

/* Hover gerenciado pelo snbf-item-inner (link ou div) */

/* Inner wrapper — pode ser <div> ou <a> dependendo se tem link */
.snbf-item-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 8px;
    text-decoration: none;
    color: inherit;
    width: 100%;
    box-sizing: border-box;
    border-radius: 14px;
    cursor: pointer;
}

a.snbf-item-inner {
    cursor: pointer !important;
    transition: background 0.15s;
}

a.snbf-item-inner:hover,
a.snbf-item-inner:focus {
    background: rgba(255,255,255,0.06);
    outline: none;
}

a.snbf-item-inner:hover .snbf-item-name {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Avatar com ícone da rede sobreposto */
.snbf-avatar-wrap {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    /* sem overflow:hidden — ícone da rede fica fora do círculo do avatar */
}

.snbf-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: #2c2c2e;
    clip-path: circle(50% at 50% 50%);
    flex-shrink: 0;
}

.snbf-avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c2c2e, #3a3a3c);
}

.snbf-net-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1c1c1e;
    font-size: 10px;
    color: #fff;
    line-height: 1;
}

.snbf-net-icon i {
    font-size: 10px;
    line-height: 1;
}

/* Texto da rede */
.snbf-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.snbf-item-name {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #f0f0f2;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.snbf-item-handle {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    display: block;
}

/* ============================================================
   SNBI — Seenbio Social Icons (v1.4.0)
   ============================================================ */

.snbi-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.snbi-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.snbi-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cc00ff;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s, opacity 0.2s;
    line-height: 1;
}

/* Cor individual via CSS custom property quando definida por ícone */
.snbi-link:hover {
    color: var(--snbi-hover, #ffffff);
    opacity: 1;
}

.snbi-link i,
.snbi-link svg {
    display: block;
    transition: inherit;
}

/* ============================================================
   SNBP — Seenbio Produtos (v1.4.0)
   ============================================================ */

/* Wrapper do carrossel — esconde o overflow lateral */
.snbp-carousel-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Trilho do carrossel — scroll horizontal suave */
.snbp-carousel {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 4px; /* evita corte de sombra no hover */
}

.snbp-carousel::-webkit-scrollbar {
    display: none;
}

.snbp-carousel.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.snbp-carousel-wrap:not(.is-dragging) .snbp-carousel {
    cursor: grab;
}

/* Cada card ocupa largura calculada via JS */
.snbp-carousel > .snbp-card {
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* ---- Card ---- */
.snbp-card {
    background: #111114;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.snbp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.18);
}

.snbp-card-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #1e1e22;
}

.snbp-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.snbp-card:hover .snbp-card-thumb img {
    transform: scale(1.04);
}

.snbp-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1e22, #2a2a30);
}

.snbp-card-body {
    padding: 10px 12px 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 10px;
    align-items: center;
}

.snbp-card-price {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ff2d9b;
    line-height: 1;
    white-space: nowrap;
}

.snbp-card-name {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.35;
    word-break: break-word;
}

/* ---- Modal / Lightbox ---- */
.snbp-modal {
    position: fixed;
    inset: 0;
    z-index: 1000100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.snbp-modal.snbp-open {
    display: flex;
}

.snbp-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: snbpFadeIn 0.22s ease;
}

@keyframes snbpFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.snbp-modal-box {
    position: relative;
    z-index: 1;
    background: #1a1a1e;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    width: min(92vw, 880px);
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    animation: snbpPopIn 0.28s cubic-bezier(0.32,0.72,0,1);
    scrollbar-width: none;
}

.snbp-modal-box::-webkit-scrollbar { display: none; }

@keyframes snbpPopIn {
    from { opacity: 0; transform: scale(0.94) translateY(12px); }
    to   { opacity: 1; transform: scale(1)    translateY(0); }
}

/* Botão fechar — fora do modal-box, fixo no canto */
.snbp-close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 99999999;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.15s, transform 0.15s;
}

.snbp-close:hover {
    color: #fff;
    transform: scale(1.15);
}

/* Galeria (coluna esquerda no desktop, topo no mobile) */
.snbp-gallery {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Carrossel de fotos grandes */
.snbp-gallery-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #111114;
}

.snbp-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.snbp-carousel-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.snbp-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Miniaturas */
.snbp-gallery-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.snbp-thumb-btn {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    background: #111114;
    transition: border-color 0.15s;
    flex-shrink: 0;
}

.snbp-thumb-btn.is-active {
    border-color: rgba(255,255,255,0.6);
}

.snbp-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Detalhes (coluna direita) */
.snbp-details {
    padding: 32px 28px 28px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.snbp-product-name {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #f0f0f2;
    margin: 0;
    line-height: 1.2;
}

.snbp-product-price {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ff2d9b;
    margin: 0;
    line-height: 1;
}

.snbp-product-desc {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.6;
}

/* Botão WhatsApp */
.snbp-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 10px;
    margin-top: 8px;
    transition: filter 0.2s, transform 0.15s;
}

.snbp-buy-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.snbp-wpp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 640px) {
    .snbp-modal-box {
        grid-template-columns: 1fr;
        width: min(96vw, 480px);
    }

    .snbp-details {
        padding: 0 20px 24px;
    }

    /* carrossel — colunas controladas via JS com data-col-mobile */
}

/* ---- Share button e toast no lightbox de produtos ---- */
.snbp-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.snbp-share-btn:hover {
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}

.snbp-share-toast {
    display: block;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-align: center;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.2s;
    margin-top: -4px;
}

.snbp-share-toast.snbp-toast-show {
    opacity: 1;
    height: auto;
}

/* ============================================================
   SNBE — Seenbio Eventos (v1.9.3)
   ============================================================ */

.snbe-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    border-radius: 8px;
    overflow: hidden;
}

/* Linha de evento */
.snbe-row {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    position: relative;
    transition: background 0.2s, transform 0.15s;
}

/* Divisória pontilhada apenas entre itens */
.snbe-row + .snbe-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-image: radial-gradient(circle, var(--snbe-divider, rgba(255,255,255,0.15)) 1px, transparent 1px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
}

.snbe-row:hover {
    background: rgba(255,255,255,0.04);
    transform: translateY(-1px);
}

/* Todos os elementos do row respondem ao hover */
.snbe-row:hover .snbe-date,
.snbe-row:hover .snbe-venue {
    color: #fff;
    filter: brightness(1.15);
}

.snbe-row:hover .snbe-date-icon,
.snbe-row:hover .snbe-location-icon {
    color: rgba(255,255,255,0.9);
}

.snbe-row:hover .snbe-location {
    color: rgba(255,255,255,0.7);
}

/* Coluna da data */
.snbe-date-col {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.snbe-date-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.snbe-date-icon svg {
    width: 20px;
    height: 20px;
}

.snbe-date {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* Coluna de info */
.snbe-info-col {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}

.snbe-location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    /* Centraliza verticalmente entre venue e location */
    align-self: center;
    margin-top: 0;
}

.snbe-location-icon svg {
    width: 20px;
    height: 20px;
}

.snbe-venue-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.snbe-venue {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.snbe-location {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Coluna do botão */
.snbe-btn-col {
    flex-shrink: 0;
}

.snbe-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1a56db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    min-width: 110px;
    overflow: hidden;
    transition: filter 0.2s, transform 0.15s;
    border: none;
}

.snbe-btn:not(.snbe-btn--sold):hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
}

.snbe-btn--sold {
    pointer-events: none;
    opacity: 0.75;
}

.snbe-btn--soon {
    pointer-events: none;
    background: #4b5563;
    opacity: 0.9;
    font-style: italic;
}

.snbe-btn-label {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
    width: 100%;
    text-align: center;
}

.snbe-sold-out {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    background: #8b0000;
    color: #fff;
    line-height: 1;
}

/* Responsivo mobile */
@media (max-width: 600px) {
    .snbe-row {
        /* 3 colunas: data | info | botão */
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto;
        gap: 0 10px;
        padding: 14px 12px;
        align-items: center;
    }

    .snbe-date-col {
        grid-column: 1;
        grid-row: 1;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    /* No mobile, data fica em coluna (ícone em cima, texto embaixo) */
    .snbe-date-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        min-width: 52px;
    }

    .snbe-date {
        font-size: 11px;
        text-align: center;
        white-space: normal;
        word-break: break-all;
        line-height: 1.2;
    }

    .snbe-info-col {
        grid-column: 2;
        grid-row: 1;
    }

    .snbe-btn-col {
        grid-column: 3;
        grid-row: 1;
        display: flex;
        align-items: center;
    }

    .snbe-venue {
        font-size: 12px;
        white-space: normal;      /* permite quebra de linha */
        overflow: visible;
        text-overflow: unset;
        line-height: 1.25;
    }
    .snbe-location { font-size: 11px; }

    .snbe-btn { min-width: 80px; }
    .snbe-btn-label { font-size: 10px; padding: 9px 10px; letter-spacing: 0.06em; }
}

/* Produtos — mobile (bottom sheet) */
@media (max-width: 640px) {
    .snbp-modal {
        align-items: flex-end;
        padding: 0;
    }

    .snbp-modal-box {
        grid-template-columns: 1fr;
        width: 100vw;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        animation: snbpSlideUpMobile 0.3s cubic-bezier(0.32,0.72,0,1);
    }

    @keyframes snbpSlideUpMobile {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
    }

    /* X fica sobreposto à imagem no mobile */
    .snbp-close {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 10;
        color: #fff;
        background: rgba(0,0,0,0.4);
        border-radius: 50%;
        width: 32px;
        height: 32px;
    }

    .snbp-gallery {
        padding: 0;
    }

    .snbp-gallery-carousel {
        border-radius: 20px 20px 0 0;
        aspect-ratio: 4 / 3;
    }

    .snbp-gallery-thumbs {
        padding: 10px 16px 0;
    }

    .snbp-thumb-btn {
        width: 52px;
        height: 52px;
    }

    .snbp-details {
        padding: 14px 20px 32px;
    }

    .snbp-product-name {
        font-size: 18px;
    }

    .snbp-product-price {
        font-size: 24px;
    }

    .snbp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sbhb-card.sbhb-no-zoom:hover { transform: none !important; }

/* ---- Badges de produto ---- */
.snbp-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    line-height: 1;
    white-space: nowrap;
}

.snbp-badge--prelancamento {
    background: linear-gradient(90deg, #6f5cff, #b535ff);
    color: #fff;
}

.snbp-badge--promocao {
    background: linear-gradient(90deg, #ff3a3a, #ff8c00);
    color: #fff;
}

.snbp-badge--novo {
    background: linear-gradient(90deg, #00c875, #00a99d);
    color: #fff;
}

.snbp-badge--custom {
    background: #333;
    color: #fff;
}

/* Badge no modal — mesmo tamanho compacto do card, não expande */
.snbp-badge--modal {
    position: static;
    margin-bottom: 8px;
    display: inline-flex;
    width: fit-content;
    align-self: flex-start;
}

/* Card precisa de position:relative para o badge absolute funcionar */
.snbp-card {
    position: relative;
}

/* ============================================================
   SNBI Share — Lightbox de Compartilhamento
   ============================================================ */

.snbi-share-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.snbi-share-modal {
    position: fixed;
    inset: 0;
    z-index: 1000050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.snbi-share-modal.snbi-share-open {
    display: flex;
}

.snbi-share-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: snbiShareFadeIn 0.2s ease;
}

@keyframes snbiShareFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.snbi-share-box {
    position: relative;
    z-index: 1;
    background: #1a1a1e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    width: min(92vw, 400px);
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    box-sizing: border-box;
    color: #f0f0f2;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    animation: snbiSharePop 0.25s cubic-bezier(0.32,0.72,0,1);
    scrollbar-width: none;
}

.snbi-share-box::-webkit-scrollbar { display: none; }

@keyframes snbiSharePop {
    from { opacity: 0; transform: scale(0.94) translateY(10px); }
    to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.snbi-share-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    padding: 0;
    border-radius: 50%;
    transition: color 0.15s, background 0.15s;
}

.snbi-share-close:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.snbi-share-title {
    font-size: 16px;
    font-weight: 700;
    color: #f0f0f2;
    margin: 0 0 16px;
    text-align: center;
    padding-right: 20px;
}

.snbi-share-card {
    border-radius: 14px;
    padding: 28px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.snbi-share-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.snbi-qr-container {
    width: 160px;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.snbi-qr-img {
    width: 160px;
    height: 160px;
    display: block;
    border-radius: 12px;
}

.snbi-qr-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: snbiQrPulse 1.5s ease infinite;
}

@keyframes snbiQrPulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 0.9; }
}

.snbi-share-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: block;
    text-align: center;
    margin-top: 4px;
}

.snbi-share-handle {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    display: block;
    text-align: center;
}

.snbi-share-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 4px;
}

.snbi-share-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #f0f0f2;
    font-family: inherit;
    padding: 0;
    transition: transform 0.15s;
}

.snbi-share-opt:hover {
    transform: translateY(-2px);
}

.snbi-share-opt-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    transition: background 0.15s, filter 0.15s;
}

.snbi-share-opt-icon--copy {
    background: rgba(255,255,255,0.12);
    color: #f0f0f2;
}

.snbi-share-opt:hover .snbi-share-opt-icon {
    filter: brightness(1.15);
}

.snbi-share-opt-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-align: center;
    line-height: 1.2;
}

.snbi-share-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: #f0f0f2;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 99px;
    z-index: 9999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    font-family: 'Space Grotesk', system-ui, sans-serif;
}

.snbi-share-toast.snbi-toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   SNBCTA — Seenbio CTA Block (v1.9.8)
   Identidade visual fixa: fundo escuro, grade, orbes animadas
   ============================================================ */

.snbcta-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0d0d1a;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    min-height: 220px;
    display: flex;
    align-items: stretch;
}

/* --- Fundo: grade pontilhada --- */
.snbcta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.snbcta-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(180,180,220,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180,180,220,0.07) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* --- Orbes animadas --- */
.snbcta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
}

.snbcta-orb--1 {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
    top: -80px;
    left: -60px;
    animation: snbcta-float1 8s ease-in-out infinite;
}

.snbcta-orb--2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #be185d 0%, transparent 70%);
    bottom: -60px;
    left: 30%;
    animation: snbcta-float2 10s ease-in-out infinite;
}

.snbcta-orb--3 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #1d4ed8 0%, transparent 70%);
    top: 20px;
    right: 80px;
    animation: snbcta-float3 7s ease-in-out infinite;
}

@keyframes snbcta-float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(20px, 15px) scale(1.06); }
    66%       { transform: translate(-10px, 25px) scale(0.96); }
}

@keyframes snbcta-float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(-25px, -18px) scale(1.08); }
    70%       { transform: translate(15px, -10px) scale(0.94); }
}

@keyframes snbcta-float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(18px, 20px) scale(1.05); }
}

/* --- Layout do conteúdo --- */
.snbcta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 40px 40px 40px 44px;
    width: 100%;
    /* Borda interna sutil */
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
    border-radius: 16px;
}

/* Texto */
.snbcta-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
}

.snbcta-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.01em;
}

.snbcta-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Botão — estilo igual ao snb-btn mas com identidade Seenbio */
.snbcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 8px;
    width: fit-content;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.snbcta-btn:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.38);
    transform: translateY(-2px);
}

.snbcta-btn svg {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.snbcta-btn:hover svg {
    transform: translateX(3px);
}

/* Imagem à direita */
.snbcta-image {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.snbcta-image img {
    max-width: 200px;
    max-height: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

/* Mobile */
@media (max-width: 640px) {
    .snbcta-content {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 24px;
    }

    .snbcta-image {
        width: 100%;
        justify-content: center;
        order: -1; /* imagem vai pro topo no mobile */
    }

    .snbcta-image img {
        max-height: 180px;
    }

    .snbcta-title {
        font-size: 22px;
    }

    .snbcta-orb--1 { width: 200px; height: 200px; }
    .snbcta-orb--2 { width: 180px; height: 180px; }
    .snbcta-orb--3 { width: 150px; height: 150px; }
}
