/* =========================
   RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --bg: #f0f2f5;          /* fundo estilo Facebook */
  --card: #ffffff;
  --text: #1c1e21;
  --muted: #65676b;
  --border: #e4e6eb;
  --blue: #1877f2;
  --bubble: #f0f2f5;
}

body {
  font-family: "Inter", system-ui, -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.4;
}

main.main-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px;
}

/* =========================
   MANTER SÓ VSL + COMENTÁRIOS
   (oculta o resto)
========================= */
#discountSection,
.footer,
.video-info-bar
 {
  display: none;
}

/* =========================
   VSL TOPO
========================= */
.video-section {
  margin-top: 10px;
}

.video-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* remove glow/efeitos */
.video-glow {
  display: none !important;
}

/* player responsivo */
.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container vturb-smartplayer {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

/* =========================
   COMENTÁRIOS ESTILO FACEBOOK
========================= */
.social-proof-section {
  margin-top: 18px;
}

.section-header {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 14px 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  margin-bottom: 12px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
}

.comments-meta {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* card do comentário */
.comment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

/* header: avatar + nome + tempo */
.comment-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-wrapper {
  width: 40px;
  height: 40px;
  position: relative;
  flex: 0 0 40px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.avatar-fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d8dadf;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #2b2f33;
  font-size: 13px;
}

.comment-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 700;
  font-size: 14px;
}

.comment-time {
  color: var(--muted);
  font-size: 12px;
}

/* badge verificado */
.verified-badge {
  margin-left: auto;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* corpo do comentário em “bolha” */
.comment-body {
  margin-top: 10px;
  background: var(--bubble);
  border-radius: 18px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text);
  margin-left: 50px; /* fica alinhado como comentário do FB */
}

/* footer com ações */
.comment-footer {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  margin-left: 50px;
}

.reaction-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: 0.15s ease;
}

.reaction-btn:hover {
  background: #eef0f3;
  color: var(--text);
}

.reaction-btn.active {
  color: var(--blue);
  background: rgba(24,119,242,0.12);
  border-color: rgba(24,119,242,0.18);
}

.reaction-btn svg {
  width: 16px;
  height: 16px;
}

/* melhor leitura no mobile */
@media (max-width: 520px) {
  main.main-container {
    padding: 12px;
  }

  .comment-body,
  .comment-footer {
    margin-left: 0;
  }
}

/* =========================
   DISCOUNT (SIMPLÃO E LIMPO)
========================= */

#discountSection .bb-section{
  background: #fff;
  border: 1px solid #e4e6eb;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

/* passos */
.bb-steps{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.bb-step{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0f2f5;
  color: #65676b;
  font-weight: 600;
}

.bb-step--active{
  background: rgba(24,119,242,0.12);
  color: #1877f2;
}

/* header */
.bb-section-header h3{
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.bb-divider{
  height: 1px;
  background: #e4e6eb;
  margin: 10px 0 14px;
}

/* cards */
.bb-packages{
  display: grid;
  gap: 12px;
}

.bb-card{
  border: 1px solid #e4e6eb;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.bb-card--best{
  border-color: rgba(24,119,242,0.35);
  box-shadow: 0 8px 22px rgba(24,119,242,0.10);
}

.bb-card-tag{
  padding: 10px 12px;
  font-weight: 800;
  font-size: 12px;
  background: #f7f7f8;
  border-bottom: 1px solid #e4e6eb;
}

.bb-card--best .bb-card-tag{
  background: rgba(24,119,242,0.10);
  color: #1877f2;
}

.bb-card-body{
  display: flex;
  gap: 12px;
  padding: 12px;
  align-items: center;
}

.bb-card-left{
  width: 45%;
  min-width: 140px;
}

.bb-card-right{
  width: 55%;
}

.bb-product-img{
  width: 100%;
  max-width: 190px;
  display: block;
  margin-top: 8px;
}
.bb-cards-img {
    max-width: 150px;
}

.bb-price{
  font-size: 22px;
  font-weight: 900;
}

.bb-save, .bb-label, .bb-supply, .bb-shipping, .bb-total{
  font-size: 13px;
  color: #65676b;
  margin-top: 6px;
}

.bb-total-old{
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 6px;
}

.bb-total-new{
  font-weight: 900;
  color: #1c1e21;
}

.bb-btn{
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 12px 14px;
  font-weight: 800;
  color: #fff;
  background: #1877f2;
}

.bb-btn:hover{
  filter: brightness(0.95);
}

.bb-btn span{
  display: inline-block;
}

.bb-guarantee{
    text-align: center;
    margin-top: 40px;
}
.bb-guarantee img{
    max-width: 100px;
}