:root {
  --sc-bg: #111216;
  --sc-bg-elevated: #18191f;
  --sc-bg-card: #1f2027;
  --sc-accent: #d62839;
  --sc-accent-soft: #ffb347;
  --sc-text: #f5f5f5;
  --sc-text-muted: #ffffff;
  --sc-border-subtle: #2a2b33;
  --sc-radius-lg: 14px;
  --sc-radius-md: 10px;
  --sc-shadow-soft: 0 12px 30px rgba(0,0,0,0.45);
  --sc-header-height: 60px;
  --sc-topcats-height: 44px;
}
 


*,
*::before,
*::after {
  box-sizing: border-box;
}

body.sc-body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--sc-bg);
  color: var(--sc-text);
}

.sc-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============ HEADER ============ */

.sc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--sc-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: linear-gradient(90deg, #b71c1c, #d62839 45%, #b71c1c 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.sc-header-left,
.sc-header-center,
.sc-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sc-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  letter-spacing: .03em;
}

.sc-logo-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--sc-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.sc-logo-text {
  text-transform: uppercase;
  font-size: 15px;
}

.sc-burger {
  display: none;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.sc-header-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.sc-dot-live {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #00e676;
  box-shadow: 0 0 0 6px rgba(0,230,118,0.35);
}

.sc-search {
  position: relative;
  min-width: 260px;
  max-width: 540px;
  flex: 1;
}

/* form pra ocupar tudo */
.sc-search form {
  margin: 0;
}

/* INPUT estilo Stripchat */
.sc-search input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.35);
  padding: 8px 14px 8px 34px; /* espaço pra lupa à esquerda */
  font-size: 14px;
  outline: none;
  background: rgba(0,0,0,0.18);        /* fundo levemente mais escuro */
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.sc-search input::placeholder {
  color: rgba(255,255,255,.45);        /* mais apagado, igual da print 1 */
}

/* Lupa dentro do campo */
.sc-search::before {
  content: "🔍";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  opacity: 0.7;
  pointer-events: none;
}

.sc-header-btn {
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.sc-header-btn--primary {
  background: #fff;
  border-color: #fff;
  color: #000;
  font-weight: 600;
}

.sc-header-btn--primary:hover {
  background: #f3f3f3;
}

.sc-header-btn--ghost:hover {
  background: rgba(0,0,0,0.14);
}

/* ============ LAYOUT PRINCIPAL ============ */

.sc-main-layout {
  display: grid;
  grid-template-columns: 240px minmax(0,1fr);
  align-items: flex-start;
}

/* ============ SIDEBAR ============ */

.sc-sidebar {
  min-height: calc(100vh - var(--sc-header-height));
  background: #15161b;
  border-right: 1px solid var(--sc-border-subtle);
  padding: 14px 10px 24px;
  position: sticky;
  top: var(--sc-header-height);
  overflow-y: auto;
}

.sc-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sc-nav-section {
  border-radius: var(--sc-radius-md);
  padding: 8px 8px 10px;
  background: rgba(255,255,255,0.02);
}

.sc-nav-title {
  margin: 0 0 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sc-text-muted);
}

.sc-nav-link {
  display: block;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
  text-decoration: none;
  color: var(--sc-text-muted);
  margin-top: 2px;
  transition: background .15s, color .15s;
}

.sc-nav-link:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.sc-nav-link--active {
  background: var(--sc-accent);
  color: #fff;
}

/* mobile sidebar aberto */
.sc-sidebar.is-open {
  display: block;
}

/* ============ CONTEÚDO CENTRAL ============ */

.sc-content {
  padding: 14px 20px 40px;
}

/* BARRA PROMO */

.sc-promo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px;
  border-radius: var(--sc-radius-lg);
  background: linear-gradient(90deg, #222 0%, #2a1b2f 40%, #301b1b 100%);
  box-shadow: var(--sc-shadow-soft);
  margin-bottom: 26px;
}

.sc-promo-gift {
  font-size: 28px;
}

.sc-promo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}

.sc-promo-text strong {
  font-size: 14px;
}

.sc-promo-btn {
  border: none;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: var(--sc-accent-soft);
  color: #2b1511;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0,0,0,.4);
  text-decoration: none;
}

/* SEÇÕES & GRID */

.sc-section {
  margin-bottom: 30px;
}

.sc-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.sc-section-title {
  margin: 0;
  font-size: 18px;
}

.sc-section-link {
  font-size: 13px;
  color: var(--sc-text-muted);
  text-decoration: none;
}

.sc-section-link:hover {
  color: #fff;
}

.sc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}

/* ============ CARD ============ */

.sc-card {
  background: var(--sc-bg-card);
  border-radius: var(--sc-radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.sc-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.sc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.55);
  background: #252733;
}

.sc-card-thumb {
  position: relative;
  overflow: hidden;
}

.sc-card-thumb img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.sc-tag-live {
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  background: #e53935;
  color: #fff;
}

.sc-card-info {
  padding: 7px 9px 9px;
}

.sc-card-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.sc-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--sc-text-muted);
  gap: 6px;
}

.sc-card-city {
  opacity: .9;
}

.sc-card-category {
  opacity: .75;
}

/* mensagem de vazio */
.sc-empty {
  margin-top: 30px;
  font-size: 14px;
  color: var(--sc-text-muted);
}

/* ============ RESPONSIVO ============ */

@media (max-width: 960px) {
  .sc-main-layout {
    grid-template-columns: minmax(0,1fr);
  }

  .sc-sidebar {
    display: none;
    position: fixed;
    left: 0;
    top: var(--sc-header-height);
    width: 260px;
    max-width: 75%;
    height: calc(100vh - var(--sc-header-height));
    z-index: 60;
  }

  .sc-burger {
    display: inline-flex;
  }

  .sc-header-center {
    flex: 1;
  }

  .sc-search {
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .sc-header {
    padding: 0 10px;
  }

  .sc-promo-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sc-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

/* Lista de cidades ativas */

.sc-nav-section-cities .sc-city-list {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
  margin-top: 4px;
}

.sc-city-link {
  display: block;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  text-decoration: none;
  color: var(--sc-text-muted);
  margin-top: 3px;
  transition: background .15s, color .15s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.sc-city-link:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}


/* ============ RODAPÉ COMPLETO ============ */

.sc-footer {
  background: #111216;
  border-top: 1px solid #22232c;
  color: var(--sc-text-muted);
  padding: 24px 28px 18px;
  font-size: 13px;
}

.sc-footer-main {
  max-width: 1200px;
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 40px;
}

/* bloco texto esquerdo */

.sc-footer-intro p {
  margin: 10px 0 0;
  line-height: 1.5;
  font-size: 12px;
}

.sc-footer-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sc-footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-footer-lang {
  border-radius: 999px;
  border: 1px solid #3a3b45;
  padding: 6px 14px;
  font-size: 12px;
  background: #181921;
  color: #f5f5f5;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* colunas de links */

.sc-footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.sc-footer-col h4 {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #e0e0e0;
}

.sc-footer-col a {
  display: block;
  font-size: 12px;
  color: var(--sc-text-muted);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.sc-footer-col a:hover {
  color: #ffffff;
  border-bottom-color: #333542;
}

/* linha inferior */

.sc-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #22232c;
  padding-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 4fr) auto;
  align-items: center;
  gap: 20px;
  font-size: 11px;
}

.sc-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sc-footer-badge {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #2d2f3a;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sc-footer-legal {
  text-align: center;
}

.sc-footer-age {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #3a3b45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* responsivo rodapé */

@media (max-width: 980px) {
  .sc-footer-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .sc-footer-bottom {
    grid-template-columns: minmax(0,1fr);
    text-align: left;
  }

  .sc-footer-legal {
    text-align: left;
  }

  .sc-footer-age {
    justify-self: flex-start;
  }
}

@media (max-width: 600px) {
  .sc-footer {
    padding: 20px 16px 16px;
  }
}

.showcam-chat-item-private {
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid #ffb300;
}

.showcam-chat-item-private .showcam-chat-message::before {
  content: '🔒 ';
}

.showcam-private-btn.is-offline {
  opacity: .7;
  cursor: not-allowed;
}

.showcam-private-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== Scrollbar discreta (só aparece no hover) ===== */
.sc-nav-section-cities .sc-city-list{
  max-height: 260px;
  overflow-y: auto;
  padding-right: 6px;

  /* Firefox */
  scrollbar-width: none;                 /* escondida */
  scrollbar-color: rgba(255,255,255,.28) transparent;
}

/* Firefox: mostra quando passar o mouse */
.sc-nav-section-cities .sc-city-list:hover{
  scrollbar-width: thin;
}

/* Chrome/Edge/Safari */
.sc-nav-section-cities .sc-city-list::-webkit-scrollbar{
  width: 0;                              /* escondida */
}

.sc-nav-section-cities .sc-city-list:hover::-webkit-scrollbar{
  width: 8px;                             /* aparece no hover */
}

.sc-nav-section-cities .sc-city-list::-webkit-scrollbar-track{
  background: transparent;
}

.sc-nav-section-cities .sc-city-list::-webkit-scrollbar-thumb{
  background: transparent;                /* invisível */
  border-radius: 999px;
}

.sc-nav-section-cities .sc-city-list:hover::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.26);      /* discreta */
}

.sc-nav-section-cities .sc-city-list:hover::-webkit-scrollbar-thumb:hover{
  background: rgba(255,255,255,.38);      /* um pouco mais visível ao “mirar” */
}

.sc-pill{
  margin-left:auto;
  font-size:12px;
  line-height:1;
  padding:6px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.85);
}
.sc-nav-link{
  display:flex;
  gap:10px;
  align-items:center;
}

/* link em linha (não afeta os links normais do menu) */
.sc-link-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.sc-link-label{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* bolinha/contador (igual ao filtro) */
.sc-pill{
  margin-left:auto;
  min-width:34px;
  height:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
  font-size:12px;
}

/* ===== Bloco de páginas (estilo lista com divisórias) ===== */
.sc-nav-section-pages .sc-pages-list{
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.sc-page-link{
  display:block;
  padding: 10px 2px;
  font-size: 13px;
  color: rgba(255,255,255,.70);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.sc-page-link:hover{
  color:#fff;
}

/* ===== Scrollbar discreta e só aparece no hover ===== */
.sc-scroll-hover{
  max-height: 320px;
  overflow-y: auto;
  padding-right: 8px;

  /* Firefox: escondida */
  scrollbar-width: none;
}

.sc-scroll-hover::-webkit-scrollbar{
  width: 0;
}

/* aparece no hover (e também se navegar pelo teclado) */
.sc-scroll-hover:hover,
.sc-scroll-hover:focus-within{
  scrollbar-width: thin; /* Firefox */
}

.sc-scroll-hover:hover::-webkit-scrollbar,
.sc-scroll-hover:focus-within::-webkit-scrollbar{
  width: 8px;
}

.sc-scroll-hover::-webkit-scrollbar-track{
  background: transparent;
}

.sc-scroll-hover::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.25);
}

.sc-scroll-hover::-webkit-scrollbar-thumb:hover{
  background: rgba(255,255,255,.34);
}

.sc-topcats{
  position: sticky;
  top: var(--sc-header-height);
  z-index: 49;
  height: var(--sc-topcats-height);
  background: #2b2c33;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.sc-topcats-inner{
  height: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 18px;
  overflow-x: auto;
  overflow-y: hidden;

  /* scrollbar escondida (pode deixar assim) */
  scrollbar-width: none;
}
.sc-topcats-inner::-webkit-scrollbar{ height: 0; }

.sc-topcats-tab{
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 0 2px;
}

.sc-topcats-tab:hover{ color:#fff; }

.sc-topcats-tab::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  background: transparent;
  border-radius: 3px 3px 0 0;
}

.sc-topcats-tab.is-active{
  color:#fff;
}
.sc-topcats-tab.is-active::after{
  background: var(--sc-accent);
}

.sc-sidebar{
  top: calc(var(--sc-header-height) + var(--sc-topcats-height));
  min-height: calc(100vh - var(--sc-header-height) - var(--sc-topcats-height));
}

@media (max-width: 960px){
  .sc-sidebar{
    top: calc(var(--sc-header-height) + var(--sc-topcats-height));
    height: calc(100vh - var(--sc-header-height) - var(--sc-topcats-height));
  }
}

/* ===== Banner promo topo (estilo Stripchat) ===== */
.sc-promo-bar{
  position: relative;
  display:flex;
  align-items:center;
  gap: 14px;

  padding: 14px 56px 14px 16px; /* espaço pro X */
  border-radius: 10px;
  background: linear-gradient(90deg, #2a0d10 0%, #6f1017 45%, #8a141c 100%);
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
  margin-bottom: 22px;
  overflow:hidden;
}

.sc-promo-left{
  display:flex;
  align-items:center;
  gap: 10px;
  white-space: nowrap;
}

.sc-promo-gift{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
}

.sc-promo-label{
  font-weight: 800;
  color: #fff;
  font-size: 16px;
}

.sc-promo-center{
  flex: 1;
  text-align:center;
  min-width: 0;
}

.sc-promo-center-text{
  color: rgba(255,255,255,.92);
  font-size: 14px;
}

.sc-promo-center-text b{
  color: #ffd54a;
}

.sc-promo-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  white-space: nowrap;
}

.sc-promo-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  text-decoration:none;
  background: #ffb347;
  color: #2b1511;
  box-shadow: 0 10px 18px rgba(0,0,0,.35);
}

/* X fechar (igual ao deles, no canto direito) */
.sc-promo-close{
  position:absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.9);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: .75;
}

.sc-promo-close:hover{
  opacity: 1;
  background: rgba(0,0,0,.28);
}

/* animação ao fechar */
.sc-promo-bar.is-closing{
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}

/* responsivo */
@media (max-width: 700px){
  .sc-promo-bar{
    flex-wrap: wrap;
    padding-right: 56px;
  }
  .sc-promo-center{
    text-align:left;
    width: 100%;
  }
}
.sc-link-row.is-active{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding-left: 10px;
  padding-right: 10px;
}

.sc-link-row.is-active .sc-link-label{
  color: #fff;
  font-weight: 700;
}

.sc-link-row.is-active .sc-pill{
  background: rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.18);
}

/* wrapper da faixa cinza */
.sc-topcats-inner{
  height: 100%;
  display:flex;
  align-items:center;
  gap: 16px;
  padding: 0 16px;
}

/* abas ficam com scroll e não empurram o breadcrumb */
.sc-topcats-tabs{
  display:flex;
  align-items:center;
  gap: 26px;
  min-width: 0;
  flex: 1;
  overflow-x:auto;
  overflow-y:hidden;
  scrollbar-width:none;
}
.sc-topcats-tabs::-webkit-scrollbar{ height:0; }

/* lado direito */
.sc-topcats-meta{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-shrink:0;
  white-space: nowrap;
}

/* breadcrumb */
.sc-breadcrumbs{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.75);
}
.sc-bc-link{
  color: rgba(255,255,255,.78);
  text-decoration:none;
}
.sc-bc-link:hover{ color:#fff; }

.sc-bc-sep{
  opacity: .5;
}

.sc-bc-current{
  color: rgba(255,255,255,.92);
  font-weight: 700;
}

/* limpar filtros */
.sc-clear-filters{
  display:inline-flex;
  align-items:center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 800;
  text-decoration:none;
}
.sc-clear-filters:hover{
  background: rgba(0,0,0,.30);
}

/* mobile: deixa breadcrumb menor */
@media (max-width: 760px){
  .sc-breadcrumbs{ display:none; } /* opcional: some pra não apertar */
}

.sc-nav-link.is-active{
  background: rgba(255,255,255,.08);
  border-radius: 12px;
}

.sc-card-thumb{ position: relative; }

.sc-fav-btn{
  position:absolute;
  top:10px; right:10px;
  width:34px; height:34px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.75);
  font-size:18px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.sc-fav-btn.is-on{
  background: rgba(255,255,255,.14);
  color:#fff;
  border-color: rgba(255,255,255,.30);
}
.sc-fav-btn:hover{ background: rgba(0,0,0,.5); }

.sc-header-hello{
  color:#fff;
  font-weight:900;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.18);
}
/* ===== Top buttons (Entrar / Criar conta) ===== */
.sc-header-right a.sc-header-btn{
  -webkit-tap-highlight-color: transparent;
  text-decoration: none !important;
  outline: none;
}

/* base */
.sc-header-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 14px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  letter-spacing:.2px;
  line-height:1;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, border-color .12s ease, color .12s ease;
}

/* "Entrar" (ghost) */
.sc-header-btn--ghost{
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.35);
}

.sc-header-btn--ghost:hover{
  background: rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}

/* "Criar conta" (primary) */
.sc-header-btn--primary{
  color:#111;
  background:#fff;
  border: 1px solid rgba(255,255,255,.85);
}

.sc-header-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}

/* foco acessível (tab) */
.sc-header-btn:focus-visible{
  box-shadow: 0 0 0 3px rgba(255,255,255,.25), 0 0 0 6px rgba(0,0,0,.15);
}

/* espaço entre botões */
.sc-header-right{
  display:flex;
  align-items:center;
  gap:10px;
}

.sc-header-right{
  display:flex;
  align-items:center;
  gap:10px;
}
.sc-header-btn--logout{
  opacity:.95;
}
.sc-header-btn--logout:hover{
  opacity:1;
}

/* garante alinhamento perfeito dos 2 botões */
.sc-header-right{
  display:flex;
  align-items:center;      /* centraliza na mesma linha */
  gap:10px;
}

.sc-header-right .sc-header-btn{
  height:36px;             /* mesma altura pros dois */
  padding:0 16px;
  line-height:36px;        /* evita “subir/descer” texto */
  box-sizing:border-box;   /* borda não muda altura */
}

/* remove qualquer margin/padding estranho de tema */
.sc-header-right a.sc-header-btn{
  margin:0 !important;
  vertical-align:middle;
}

/* ================= MOBILE HEADER (Stripchat-like) ================= */
.sc-mob-toggle{
  display:none;
  width:42px;height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.18);
  cursor:pointer;
  align-items:center; justify-content:center;
  gap:4px;
}
.sc-mob-toggle span{
  display:block;
  width:18px;height:2px;
  background:#fff;
  border-radius:3px;
  opacity:.9;
}

.sc-mob-actions{ display:none; align-items:center; gap:10px; }
.sc-mob-search{
  width:42px;height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.18);
  color:#fff;
  cursor:pointer;
}
.sc-mob-join{
  height:42px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:#fff;
  color:#111;
  font-weight:900;
  cursor:pointer;
}

/* Sua busca normal no desktop */
.sc-top-search{ display:block; }

/* ---- Mobile break ---- */
@media (max-width: 860px){
  /* Mostra hamburger + ações do mobile */
  .sc-mob-toggle{ display:flex; }
  .sc-mob-actions{ display:flex; }

  /* Esconde TUDO que atrapalha no topo (Entrar/Criar conta, contadores, etc.) */
  .sc-header-right{ display:none !important; }  /* (seu bloco Entrar/Criar conta / Olá/Sair) */
  
  /* Se tiver outros blocos no topo além da logo/busca, esconda aqui também (ajuste se necessário) */
  .sc-header-left .sc-live,
  .sc-header-left .sc-icons{ display:none !important; }

  /* Busca: no mobile fica “drop” (fechada por padrão) */
  .sc-top-search{
    display:none;
    position:absolute;
    left:12px; right:12px;
    top: calc(100% + 10px);
    z-index: 50;
    padding:10px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(0,0,0,.55);
    backdrop-filter: blur(10px);
  }
  body.sc-search-open .sc-top-search{ display:block; }
}

/* ================= SIDEBAR DRAWER (mobile) ================= */
@media (max-width: 860px){
  .sc-sidebar{
    position:fixed;
    top:0; left:0; bottom:0;
    width: 290px;
    max-width: 86vw;
    z-index: 10020;
    transform: translateX(-110%);
    transition: .18s ease;
    background: rgba(20,20,22,.96);
    border-right: 1px solid rgba(255,255,255,.10);
    overflow:auto;
    -webkit-overflow-scrolling: touch;
  }
  body.sc-side-open .sc-sidebar{ transform: translateX(0); }

  .sc-side-overlay{
    position:fixed; inset:0;
    z-index: 10010;
    background: rgba(0,0,0,.55);
    opacity:0;
    pointer-events:none;
    transition: .18s ease;
  }
  body.sc-side-open .sc-side-overlay{
    opacity:1;
    pointer-events:auto;
  }
}


/* Overlay NÃO pode afetar layout quando fechado */
.sc-side-overlay{ display:none !important; }

body.sc-side-open .sc-side-overlay{
  display:block !important;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:10010;
}

/* Desktop: mobile actions escondidas */
.sc-mob-toggle{ display:none; }
.sc-mob-actions{ display:none; }

/* MOBILE header igual referência Stripchat */
@media (max-width: 860px){
  .sc-header{
    display:grid !important;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:10px;
    padding:10px 12px;
  }

  .sc-header-left{ display:flex; align-items:center; gap:10px; min-width:0; }

  /* some AO VIVO no topo */
  .sc-header-live{ display:none !important; }

  /* some auth desktop */
  .sc-header-right{ display:none !important; }

  /* aparece hambúrguer + ações mobile */
  .sc-mob-toggle{ display:flex !important; }
  .sc-mob-actions{ display:flex !important; align-items:center; gap:10px; justify-self:end; }

  /* visual do hambúrguer */
  .sc-mob-toggle{
    width:40px;height:40px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(0,0,0,.18);
    cursor:pointer;
    align-items:center; justify-content:center;
    gap:4px;
  }
  .sc-mob-toggle span{
    display:block;
    width:18px;height:2px;
    background:#fff;
    border-radius:3px;
    opacity:.95;
  }

  .sc-mob-search{
    width:40px;height:40px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(0,0,0,.18);
    color:#fff;
    cursor:pointer;
  }

  .sc-mob-join{
    height:26px;
    padding:0 14px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.18);
    background:#fff;
    color:#111;
    font-weight:600;
    cursor:pointer;
    white-space:nowrap;
  }

  /* busca vira drop no mobile */
  .sc-header-center{ display:none !important; }
  body.sc-search-open .sc-header-center{
    display:block !important;
    grid-column:1 / -1;
    margin-top:10px;
  }
  body.sc-search-open #sc-top-search{
    padding:10px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(0,0,0,.55);
    backdrop-filter: blur(10px);
  }
}

.sc-mob-logout{
  height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.18);
  color:#fff;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  white-space:nowrap;
}

 .logoshow{
	margin-top: -7px;
	height: 60px;
	width: auto;
	display: block;  
  }
  
 /* ===== MOBILE SIDEBAR DRAWER (fix definitivo) ===== */
@media (max-width: 860px){

  /* Sidebar SEMPRE visível como elemento (não display:none) e por cima do overlay */
  .sc-sidebar{
    display:block !important;
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    bottom:0 !important;
    width:290px !important;
    max-width:86vw !important;
    overflow:auto !important;
    -webkit-overflow-scrolling:touch;
    transform: translateX(-110%) !important;
    transition: transform .18s ease !important;
    z-index: 10030 !important;
    background: rgba(20,20,22,.96) !important;
    border-right: 1px solid rgba(255,255,255,.10) !important;
  }
  body.sc-side-open .sc-sidebar{
    transform: translateX(0) !important;
  }

  /* Overlay escondido por padrão (não pode afetar anúncios) */
  .sc-side-overlay{
    display:none !important;
  }
  body.sc-side-open .sc-side-overlay{
    display:block !important;
    position:fixed !important;
    inset:0 !important;
    background: rgba(0,0,0,.55) !important;
    z-index: 10020 !important; /* abaixo do sidebar */
  }

  /* trava scroll ao abrir */
  body.sc-side-open{ overflow:hidden; }
  
  .logoshow{
	margin-top: -7px;
	height: 40px;
	width: auto;
	display: block;  
  }
}



/* =========================
   FOOTER: GRID + SEPARADORES
   ========================= */

/* container das 4 colunas */
.sc-footer-columns{
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 48px;
  align-items: start;
}

/* título da coluna */
.sc-footer-col-title{
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}
.sc-footer-col-title::after{
  content:"";
  display:block;
  height: 1px;
  margin-top: 10px;
  background: rgba(255,255,255,.08);
}

/* lista de links */
.sc-footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.sc-footer-item{
  margin: 0 0 10px;
}
.sc-footer-link{
  display: inline-block;
  color: inherit;
  text-decoration: none;
  opacity: .95;
}
.sc-footer-link:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 1;
}

/* ===== Desktop: separadores verticais discretos ===== */
@media (min-width: 961px){
  .sc-footer-col{
    position: relative;
    padding-left: 22px;
  }
  .sc-footer-col::before{
    content:"";
    position:absolute;
    left:0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(255,255,255,.08);
  }
  .sc-footer-col:first-child{
    padding-left: 0;
  }
  .sc-footer-col:first-child::before{
    display:none;
  }
}

/* ===== Tablet: 2 colunas + separador vertical e linha entre blocos ===== */
@media (max-width: 960px){
  .sc-footer-columns{
    grid-template-columns: repeat(2, minmax(170px, 1fr));
    gap: 28px 28px;
  }

  .sc-footer-col{
    position: relative;
    padding: 18px 0;
  }

  /* linha vertical apenas na coluna da direita (2,4) */
  .sc-footer-col:nth-child(2n){
    padding-left: 22px;
  }
  .sc-footer-col:nth-child(2n)::before{
    content:"";
    position:absolute;
    left:0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(255,255,255,.08);
  }

  /* linha horizontal separando o bloco de baixo (colunas 3 e 4) */
  .sc-footer-col:nth-child(n+3){
    border-top: 1px solid rgba(255,255,255,.10);
  }
}

/* ===== Mobile: 1 coluna e divisor por seção ===== */
@media (max-width: 560px){
  .sc-footer-columns{
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 10px;
  }

  .sc-footer-col{
    padding: 18px 0;
  }

  /* divisor entre seções */
  .sc-footer-col + .sc-footer-col{
    border-top: 1px solid rgba(255,255,255,.10);
  }

  /* remove a linha vertical no mobile */
  .sc-footer-col::before{ display:none !important; }
  .sc-footer-col:nth-child(2n){ padding-left: 0; }
}

.sc-card-thumb{ position:relative; }

.sc-tag-online{
  position:absolute;
  top:10px;
  left:10px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.55);
  color:#fff;
  font-weight:800;
  font-size:12px;
  letter-spacing:.6px;
  text-transform:uppercase;
}

.sc-dot-online{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#1ee27a;
  box-shadow:0 0 0 3px rgba(30,226,122,.18);
}

 
 /* SAFIRA HOME - corrigir fotos cortadas nos cards */
.sc-grid .sc-card {
    height: auto !important;
    overflow: hidden !important;
}

.sc-grid .sc-card > a {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    text-decoration: none !important;
}

.sc-grid .sc-card .sc-card-thumb {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    background: #101114 !important;
    display: block !important;
}

.sc-grid .sc-card .sc-card-thumb img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
}

/* remove corte vindo de pseudo-elementos ou estilos antigos */
.sc-grid .sc-card .sc-card-thumb::before,
.sc-grid .sc-card .sc-card-thumb::after {
    display: none !important;
}

/* SAFIRA HOME - imagens do mesmo tamanho sem cortar */
.sc-grid .sc-card {
    height: auto !important;
    overflow: hidden !important;
}

.sc-grid .sc-card > a {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    text-decoration: none !important;
}

.sc-grid .sc-card .sc-card-thumb {
    width: 100% !important;
    height: 260px !important;
    background: #101114 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
}

.sc-grid .sc-card .sc-card-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
}

/* mantém a área de texto alinhada */
.sc-grid .sc-card .sc-card-info {
    min-height: 78px !important;
}

/* Mobile */
@media (max-width: 767px) {
    .sc-grid .sc-card .sc-card-thumb {
        height: 230px !important;
    }

    .sc-grid .sc-card .sc-card-info {
        min-height: 70px !important;
    }
}

/* =========================================================
   SAFIRA HOME 2026 - Bloco de destaque + largura controlada
   ========================================================= */

@media (min-width: 961px) {
  .home .sc-main-layout {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
  }

  .home .sc-content {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

.home .sc-section-header {
  margin-bottom: 14px !important;
}

.home .sc-section-title {
  font-size: 20px !important;
  font-weight: 900 !important;
  letter-spacing: -.02em;
}

.home .sc-featured-section {
  position: relative;
  overflow: hidden;
  padding: 22px;
  margin-bottom: 28px;
  border-radius: 24px;
  border: 1px solid rgba(216, 173, 104, .24);
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 173, 104, .18), transparent 30%),
    linear-gradient(135deg, rgba(19, 20, 27, .96), rgba(10, 10, 13, .98));
  box-shadow: 0 24px 55px rgba(0, 0, 0, .34);
}

.home .sc-featured-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(216, 173, 104, .08), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 40%);
}

.home .sc-featured-section > * {
  position: relative;
  z-index: 1;
}

.home .sc-featured-header {
  align-items: flex-end !important;
}

.home .sc-featured-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(216, 173, 104, .12);
  border: 1px solid rgba(216, 173, 104, .28);
  color: #d8ad68;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.home .sc-featured-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.home .sc-featured-grid .sc-card {
  border-radius: 20px !important;
  border: 1px solid rgba(216, 173, 104, .28) !important;
  background: linear-gradient(180deg, #1e2028, #14151b) !important;
  box-shadow: 0 20px 38px rgba(0,0,0,.35) !important;
}

.home .sc-featured-grid .sc-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(216, 173, 104, .58) !important;
  box-shadow: 0 28px 52px rgba(0,0,0,.48) !important;
}

.home .sc-featured-grid .sc-card-thumb {
  height: 330px !important;
  min-height: 330px !important;
  border-radius: 20px 20px 0 0 !important;
  background: #101114 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.home .sc-featured-grid .sc-card-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.home .sc-featured-grid .sc-card-info {
  min-height: 86px !important;
  padding: 13px 15px 15px !important;
}

.home .sc-featured-grid .sc-card-name {
  font-size: 16px !important;
  font-weight: 900 !important;
}

.home .sc-featured-grid .sc-card-meta {
  font-size: 12px !important;
}

.home .sc-regular-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 16px !important;
}

.home .sc-regular-grid .sc-card {
  border-radius: 16px !important;
}

.home .sc-regular-grid .sc-card-thumb {
  height: 235px !important;
  min-height: 235px !important;
  background: #101114 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.home .sc-regular-grid .sc-card-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.home .sc-regular-grid .sc-card-info {
  min-height: 76px !important;
}

@media (max-width: 1280px) {
  .home .sc-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home .sc-featured-grid .sc-card-thumb {
    height: 300px !important;
    min-height: 300px !important;
  }
}

@media (max-width: 767px) {
  .home .sc-content {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .home .sc-featured-section {
    padding: 15px;
    border-radius: 18px;
  }

  .home .sc-featured-grid,
  .home .sc-regular-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .home .sc-featured-grid .sc-card-thumb,
  .home .sc-regular-grid .sc-card-thumb {
    height: 270px !important;
    min-height: 270px !important;
  }
}

@media (max-width: 420px) {
  .home .sc-featured-grid .sc-card-thumb,
  .home .sc-regular-grid .sc-card-thumb {
    height: 240px !important;
    min-height: 240px !important;
  }
}


/* Safira - chamada premium para anunciar */
.sc-content .safira-home-ad-alert {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	gap: 16px !important;
	width: 100% !important;
	margin: 0 0 18px 0 !important;
	padding: 16px 58px 16px 18px !important;
	border-radius: 18px !important;
	background:
		radial-gradient(circle at 12% 50%, rgba(216, 173, 104, .24), transparent 34%),
		linear-gradient(135deg, rgba(28, 28, 34, .98), rgba(12, 12, 15, .98)) !important;
	border: 1px solid rgba(216, 173, 104, .35) !important;
	box-shadow: 0 18px 42px rgba(0, 0, 0, .32) !important;
	color: #fff !important;
	overflow: hidden !important;
}

.sc-content .safira-home-ad-alert::after {
	content: "" !important;
	position: absolute !important;
	right: -80px !important;
	top: -90px !important;
	width: 220px !important;
	height: 220px !important;
	border-radius: 50% !important;
	background: rgba(213, 31, 109, .16) !important;
	pointer-events: none !important;
}

.sc-content .safira-home-ad-alert__icon {
	position: relative !important;
	z-index: 2 !important;
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 14px !important;
	background: linear-gradient(135deg, #d8ad68, #a97532) !important;
	color: #141418 !important;
	font-size: 20px !important;
	font-weight: 900 !important;
	box-shadow: 0 10px 24px rgba(216, 173, 104, .24) !important;
}

.sc-content .safira-home-ad-alert__content {
	position: relative !important;
	z-index: 2 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 3px !important;
	flex: 1 !important;
	min-width: 0 !important;
}

.sc-content .safira-home-ad-alert__content strong {
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
}

.sc-content .safira-home-ad-alert__content span {
	color: rgba(255, 255, 255, .72) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
}

.sc-content .safira-home-ad-alert__btn {
	position: relative !important;
	z-index: 2 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 40px !important;
	padding: 0 20px !important;
	border-radius: 999px !important;
	background: linear-gradient(135deg, #d51f6d, #b9155a) !important;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	text-transform: uppercase !important;
	letter-spacing: .04em !important;
	white-space: nowrap !important;
	box-shadow: 0 12px 26px rgba(213, 31, 109, .28) !important;
}

.sc-content .safira-home-ad-alert__btn:hover {
	filter: brightness(1.08) !important;
	transform: translateY(-1px) !important;
}

.sc-content .safira-home-ad-alert__close {
	position: absolute !important;
	top: 50% !important;
	right: 16px !important;
	z-index: 3 !important;
	width: 30px !important;
	height: 30px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transform: translateY(-50%) !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, .08) !important;
	color: #fff !important;
	font-size: 21px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	cursor: pointer !important;
	padding: 0 !important;
}

.sc-content .safira-home-ad-alert__close:hover {
	background: rgba(255, 255, 255, .16) !important;
	color: #d8ad68 !important;
}

@media (max-width: 767px) {
	.sc-content .safira-home-ad-alert {
		align-items: flex-start !important;
		padding: 15px 48px 15px 15px !important;
		border-radius: 16px !important;
		gap: 12px !important;
	}

	.sc-content .safira-home-ad-alert__icon {
		width: 36px !important;
		height: 36px !important;
		min-width: 36px !important;
		border-radius: 12px !important;
		font-size: 17px !important;
	}

	.sc-content .safira-home-ad-alert__content strong {
		font-size: 14px !important;
	}

	.sc-content .safira-home-ad-alert__content span {
		font-size: 12px !important;
	}

	.sc-content .safira-home-ad-alert__btn {
		position: absolute !important;
		left: 63px !important;
		bottom: 12px !important;
		min-height: 34px !important;
		padding: 0 15px !important;
		font-size: 11px !important;
	}

	.sc-content .safira-home-ad-alert {
		padding-bottom: 58px !important;
	}
}
