/* Resetzinho leve */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: #000;              /* fundo preto */
  color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Wrapper centralizado em coluna */
.vsl-wrap {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;       /* centraliza o player na tela */
  gap: 12px;
  padding: 16px 12px 20px;
  text-align: center;
}

/* Avisos topo/rodapé */
.vsl-note {
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  opacity: 0.9;
  user-select: none;
}
.vsl-note--top   { margin-top: 6px; }
.vsl-note--bottom{ margin-bottom: 6px; }

/* Container do player em 9:16 */
.vsl-player {
  width: 100%;
  max-width: 460px;              /* largura máxima no desktop */
  aspect-ratio: 9 / 16;          /* mantém formato vertical */
  position: relative;
  background: #111;
  border-radius: 4px;
  overflow: hidden;
}

/* Iframe/Embed ocupa tudo */
.vsl-player iframe,
.vsl-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Placeholder (apague ao colocar o embed) */
.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 100% at 50% 0%, #1a1a1a 0%, #0b0b0b 70%);
}
.vsl-placeholder span {
  font-weight: 800;
  font-size: clamp(18px, 4vw, 26px);
  opacity: .8;
  border: 2px solid #444;
  padding: 10px 16px;
  border-radius: 8px;
}

/* Responsividade sutil (aperta um pouco as margens em telas bem pequenas) */
@media (max-width: 380px) {
  .vsl-wrap { padding: 12px 8px 16px; }
  .vsl-note { font-size: 10px; }
}
/* ===== COMMENTS ===== */
.fbc {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 16px;
  font-family: Arial, sans-serif;
}

.fbc__header {
  border-bottom: 1px solid #ddd;
  margin-bottom: 12px;
}

.fbc__count {
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

.fbc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fbc__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.fbc__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.fbc__body {
  flex: 1;
}

.fbc__name {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 2px;
  color: #365899;
}

.fbc__text {
  font-size: 14px;
  color: #1c1e21;
  margin-bottom: 4px;
  line-height: 1.4;
}

.fbc__meta {
  font-size: 12px;
  color: #65676b;
}

.fbc__replies {
  list-style: none;
  margin: 10px 0 0 50px;
  padding: 0;
}

.fbc__item--reply {
  margin-bottom: 12px;
}

.fbc__footer {
  font-size: 12px;
  color: #65676b;
  margin-top: 20px;
}
/* ====== COMMENTS (fundo claro próprio) ====== */
.fbc{
  --fbc-bg:#fff;
  --fbc-name:#1b74e4;
  --fbc-text:#1c1e21;
  --fbc-muted:#65676b;
  max-width: 740px;
  margin: 32px auto;
  padding: 16px;
  background: var(--fbc-bg);           /* evita herdar o fundo preto da página */
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.fbc__header{
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.fbc__count{
  font: 700 15px/1.2 Arial, sans-serif;
  color: #333;
  margin: 0;
}

.fbc__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.fbc__item{
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.fbc__avatar{
  width: 40px; height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  background: #e5e5e5;      /* placeholder quando a imagem não carregar */
  font-size: 0;             /* esconde o texto ALT quando a imagem falhar */
}

.fbc__body{ flex: 1; }

.fbc__name{
  font-weight: 700;
  font-size: 14px;
  color: var(--fbc-name);
  margin-bottom: 2px;
}

.fbc__text{
  font-size: 14px;
  color: var(--fbc-text);
  line-height: 1.45;
  margin-bottom: 4px;
}

.fbc__meta{
  font-size: 12px;
  color: var(--fbc-muted);
}

.fbc__replies{
  list-style: none;
  margin: 10px 0 0 50px;
  padding: 0 0 0 12px;
  border-left: 2px solid #f0f2f5;
}

.fbc__item--reply{ margin-bottom: 12px; }

.fbc__footer{
  font-size: 12px;
  color: var(--fbc-muted);
  margin-top: 18px;
}
