/* =====================================================
   RESET / BASE
   ===================================================== */

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(0, 210, 106, .16), transparent 32%),
    linear-gradient(180deg, #06110d 0%, #0b1120 60%, #050505 100%);
  color: #fff;
}

/* =====================================================
   PRESSELL / COMPORTAMENTO COM TELA INICIAL
   ===================================================== */

body.has-presell {
  overflow: hidden;
}

/*
  Importante:
  Não usar display:none na .page quando a presell estiver ativa.
  Assim o preview pode carregar/tocar por trás da presell sem depender
  diretamente do clique no botão Entrar.
*/
body.has-presell #pixModal {
  display: none !important;
}

body.has-presell .page {
  display: flex !important;
  opacity: 0.01 !important;
  pointer-events: none !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
}

body.presell-entered .page {
  position: relative !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: auto !important;
}

/* =====================================================
   LAYOUT PRINCIPAL
   ===================================================== */

.page {
  width: 100%;
  min-height: 100dvh;
  padding: 14px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #c7ffe3;
  background: rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 700;
}

h1,
.hero h1 {
  margin: 6px 0 6px;
  font-size: 22px;
  line-height: 1.1;
  color: #fff;
}

.subtitle {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  line-height: 1.3;
}

.safe-note {
  max-width: 360px;
  margin: 12px auto 0;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  line-height: 1.35;
}

.safe-note.success,
.success {
  color: #38ff8c;
}

/* =====================================================
   CONTAINER DO VÍDEO
   ===================================================== */

.video-card {
  position: relative;
  width: 100%;
  max-width: 390px;
  aspect-ratio: 9 / 16;
  height: auto;
  min-height: auto;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 18px 55px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.08);
  isolation: isolate;
  contain: paint;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  clip-path: inset(0 round 22px);
  -webkit-clip-path: inset(0 round 22px);
}

/* Preview bloqueado em MP4 */
.locked-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: cover;
  filter: blur(16px);
  transform: scale(1.08) translateZ(0);
  -webkit-transform: scale(1.08) translateZ(0);
  background: #000;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

/* Vídeo pago liberado */
.main-video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Caso ainda exista algum fallback com imagem */
.locked-video {
  width: 100%;
  height: 100%;
  display: block;
  background-position: center;
  background-size: cover;
  filter: blur(16px);
  transform: scale(1.08);
  background-color: #000;
}

/* =====================================================
   CAMADA DE BLOQUEIO
   ===================================================== */

.lock-layer {
  position: absolute;
  inset: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.78));
}

.lock-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  font-size: 25px;
}

.lock-layer h2 {
  margin: 0 0 6px;
  font-size: 23px;
  line-height: 1.1;
}

.lock-layer p {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
}

.price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 16px;
}

.old-price {
  color: rgba(255,255,255,0.68);
  text-decoration: line-through;
  font-size: 14px;
}

.new-price {
  margin-top: 3px;
  color: #25ff9a;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

/* =====================================================
   BOTÕES
   ===================================================== */

.primary-btn,
.secondary-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .15s ease, opacity .15s ease;
}

.primary-btn {
  width: auto;
  max-width: 100%;
  padding: 14px 22px;
  background: linear-gradient(180deg, #43ff95, #00c95f);
  color: #06210f;
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(0, 255, 128, 0.28);
}

.secondary-btn {
  padding: 13px 18px;
  background: #111827;
  color: #fff;
  font-size: 15px;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-1px);
}

.primary-btn:active,
.secondary-btn:active {
  transform: scale(0.97);
}

.primary-btn:disabled,
.secondary-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

.full,
.primary-btn.full,
.secondary-btn.full {
  width: 100%;
}

.pulse {
  animation: pulseBtn 1.35s infinite;
}

@keyframes pulseBtn {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(67, 255, 149, 0.45);
  }

  70% {
    transform: scale(1.035);
    box-shadow: 0 0 0 16px rgba(67, 255, 149, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(67, 255, 149, 0);
  }
}

/* =====================================================
   CONTROLES DO VÍDEO PAGO
   ===================================================== */

.custom-video-controls {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  z-index: 40;
  display: flex;
  gap: 10px;
  justify-content: center;
  pointer-events: auto;
}

.custom-video-controls button {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.custom-video-controls button:active {
  transform: scale(.96);
}

/* =====================================================
   COMENTÁRIOS ESTILO LIVE
   ===================================================== */

.live-comments {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 18px;
  z-index: 30;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.live-comment {
  width: fit-content;
  max-width: 88%;
  padding: 8px 11px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
  text-align: left;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  animation: commentFloat 5.2s ease forwards;
}

.live-comment strong {
  display: block;
  margin-bottom: 2px;
  color: #38ff8c;
  font-weight: 800;
}

@keyframes commentFloat {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(.96);
  }

  12% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  78% {
    opacity: 1;
    transform: translateY(-8px) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-24px) scale(.98);
  }
}

/* =====================================================
   MODAL PIX
   ===================================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
}

.modal.open,
.modal.is-open,
.modal[aria-hidden="false"] {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
}

.modal-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 24px 18px 18px;
  border-radius: 26px;
  background: #fff;
  color: #111827;
  text-align: center;
  box-shadow: 0 -12px 45px rgba(0,0,0,0.35);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #eef2f7;
  color: #111827;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.modal-box h2 {
  margin: 8px 0 8px;
  font-size: 24px;
}

.modal-intro {
  margin: 0 0 16px;
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
}

.field-label {
  display: block;
  margin: 12px 0 7px;
  text-align: left;
  color: #222;
  font-size: 13px;
  font-weight: 700;
}

.input,
.textarea {
  width: 100%;
  border: 1px solid #d2d8e2;
  background: #fff;
  color: #111827;
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 16px;
  outline: none;
}

.input:focus,
.textarea:focus {
  border-color: #00b95f;
  box-shadow: 0 0 0 4px rgba(0, 185, 95, .13);
}

.textarea {
  min-height: 92px;
  resize: none;
  font-size: 13px;
}

.pix-area {
  display: none;
  margin-top: 18px;
}

.pix-area.open,
.pix-area.active {
  display: block;
}

.qr-img {
  display: block;
  width: 220px;
  max-width: 78%;
  height: auto;
  margin: 10px auto 16px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.status {
  margin: 12px 0 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.4;
}

.error-box {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: #fff1f2;
  color: #be123c;
  text-align: left;
  font-size: 14px;
  line-height: 1.4;
}

.error-box.open,
.error-box.active {
  display: block;
}

/* =====================================================
   RESPONSIVO
   ===================================================== */

@media (max-width: 640px) {
  .hero {
    max-width: 100%;
  }

  .video-card {
    max-width: min(390px, 100%);
  }

  .lock-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .primary-btn,
  .secondary-btn {
    padding: 14px 18px;
    font-size: 16px;
  }

  .live-comments {
    left: 9px;
    right: 9px;
    bottom: 14px;
    gap: 6px;
  }

  .live-comment {
    max-width: 92%;
    padding: 7px 9px;
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .page {
    padding: 10px 8px;
  }

  .video-card {
    max-width: 340px;
    border-radius: 20px;
    clip-path: inset(0 round 20px);
    -webkit-clip-path: inset(0 round 20px);
  }

  .hero h1,
  h1 {
    font-size: 20px;
  }

  .subtitle {
    font-size: 11px;
  }

  .lock-layer {
    padding: 18px;
  }

  .lock-layer h2 {
    font-size: 21px;
  }

  .new-price {
    font-size: 26px;
  }

  .primary-btn {
    padding: 13px 18px;
    font-size: 14px;
  }

  .modal-box {
    padding: 22px 15px 15px;
  }
}

@media (min-width: 768px) {
  .page {
    align-items: center;
    padding: 32px 18px;
  }

  .hero {
    max-width: 460px;
  }

  .video-card {
    max-width: 405px;
  }

  .modal {
    align-items: center;
  }

  .modal-box {
    border-radius: 26px;
  }
}

.pix-copy-box {
  margin: 14px 0 18px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.38);
}

.pix-alert-strip {
  width: 100%;
  padding: 13px 14px;
  background: linear-gradient(180deg, #ff174d, #b8002e);
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  animation: pixBlinkRed 0.85s infinite;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

@keyframes pixBlinkRed {
  0%, 100% {
    filter: brightness(1);
    transform: scale(1);
  }

  50% {
    filter: brightness(1.35);
    transform: scale(1.015);
  }
}

.pix-copy-content {
  padding: 16px 16px 18px;
  text-align: center;
}

.pix-copy-content p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.45;
}

.pix-discreet-badge {
  margin: 12px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(0, 255, 117, 0.13);
  border: 1px solid rgba(0, 255, 117, 0.32);
  color: #d9ffe9;
  font-size: 13px;
  font-weight: 800;
}

.pix-copy-small {
  margin-top: 10px !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 12px !important;
}

/* =====================================================
   DUAS OPÇÕES DE OFERTA — LIVE / LIVE PRIVADA
   ===================================================== */

.offer-options {
  width: 100%;
  max-width: 335px;
  margin: 4px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-btn,
.primary-btn.offer-btn {
  width: 100%;
  min-height: 64px;
  padding: 12px 14px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  line-height: 1.15;
  white-space: normal;
}

.offer-btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.offer-btn-title {
  display: block;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-btn-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.82;
}

.offer-btn-price {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
  font-size: 17px;
  font-weight: 950;
  white-space: nowrap;
}

.offer-btn.live,
.primary-btn.offer-btn.live {
  background: linear-gradient(180deg, #43ff95, #00c95f);
  color: #06210f;
}

.offer-btn.private,
.primary-btn.offer-btn.private {
  background: linear-gradient(180deg, #ff174d, #b8002e);
  color: #fff;
}

.offer-btn.private .offer-btn-price {
  background: rgba(255, 255, 255, 0.18);
}

.offer-btn.live .offer-btn-price {
  background: rgba(0, 0, 0, 0.13);
}

.offer-helper-text {
  width: 100%;
  max-width: 330px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.35;
}

/* =====================================================
   DUAS OPÇÕES DE OFERTA — LIVE / LIVE PRIVADA
   ===================================================== */

.offer-options {
  width: 100%;
  max-width: 335px;
  margin: 4px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-btn,
.primary-btn.offer-btn {
  width: 100%;
  min-height: 64px;
  padding: 12px 14px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  line-height: 1.15;
  white-space: normal;
}

.offer-btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.offer-btn-title {
  display: block;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-btn-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.82;
}

.offer-btn-price {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
  font-size: 17px;
  font-weight: 950;
  white-space: nowrap;
}

.offer-btn.live,
.primary-btn.offer-btn.live {
  background: linear-gradient(180deg, #43ff95, #00c95f);
  color: #06210f;
}

.offer-btn.private,
.primary-btn.offer-btn.private {
  background: linear-gradient(180deg, #ff174d, #b8002e);
  color: #fff;
}

.offer-btn.private .offer-btn-price {
  background: rgba(255, 255, 255, 0.18);
}

.offer-btn.live .offer-btn-price {
  background: rgba(0, 0, 0, 0.13);
}

.offer-helper-text {
  width: 100%;
  max-width: 330px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.35;
}

/* =====================================================
   PIX GERADO — ESCONDE TEXTO E SOBE QR CODE
   ===================================================== */

.pix-copy-box.is-hidden {
  display: none !important;
}

.pix-success-top {
  display: none;
  margin: 4px 0 12px;
  text-align: center;
}

.pix-area.open .pix-success-top,
.pix-area.active .pix-success-top {
  display: block;
}

.pix-discreet-badge-light {
  background: rgba(0, 185, 95, 0.10) !important;
  border: 1px solid rgba(0, 185, 95, 0.28) !important;
  color: #047857 !important;
}

.pix-ready-text {
  margin: 10px 0 8px;
  color: #334155;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.pix-area.open,
.pix-area.active {
  margin-top: 8px;
}

.qr-img {
  margin-top: 8px !important;
}

/* =====================================================
   UPGRADE PARA LIVE PRIVADA
   ===================================================== */

.private-upgrade-box {
  width: 100%;
  max-width: 390px;
  margin: 16px auto 0;
  padding: 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 23, 77, 0.20), rgba(0, 0, 0, 0.54)),
    radial-gradient(circle at top, rgba(255, 211, 106, 0.18), transparent 46%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.private-upgrade-box h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
}

.private-upgrade-box p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
}

.private-upgrade,
.primary-btn.private-upgrade,
.offer-btn.private-upgrade,
.primary-btn.offer-btn.private-upgrade {
  width: 100%;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #ff174d, #b8002e);
  color: #fff;
  box-shadow:
    0 0 0 0 rgba(255, 23, 77, 0.48),
    0 14px 34px rgba(255, 0, 65, 0.34);
}

.private-upgrade .offer-btn-price {
  background: rgba(255, 255, 255, 0.18);
}

/* =====================================================
   MODO LIVE PRIVADA / VISUAL PREMIUM
   ===================================================== */

body.private-mode {
  background:
    radial-gradient(circle at top, rgba(255, 23, 77, .22), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(255, 215, 0, .12), transparent 28%),
    linear-gradient(180deg, #13000b 0%, #0b0713 58%, #030303 100%);
}

body.private-mode .video-card {
  border: 1px solid rgba(255, 211, 106, 0.34);
  box-shadow:
    0 22px 65px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 211, 106, 0.16),
    0 0 38px rgba(255, 23, 77, 0.22);
}

.private-live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 23, 77, .96), rgba(145, 0, 38, .96));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .5px;
  box-shadow: 0 10px 28px rgba(255, 23, 77, .34);
  backdrop-filter: blur(10px);
}

.private-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00ff75;
  box-shadow: 0 0 12px #00ff75;
  animation: privateLivePulse 1s infinite;
}

@keyframes privateLivePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .45;
    transform: scale(.76);
  }
}

/* =====================================================
   CAMPO DE MENSAGEM TEMPORÁRIO DA LIVE PRIVADA
   ===================================================== */

.private-chat-panel {
  width: 100%;
  max-width: 390px;
  margin: 16px auto 0;
  padding: 15px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(255,23,77,.20), rgba(0,0,0,.38));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 18px 45px rgba(0,0,0,.44),
    inset 0 1px 0 rgba(255,255,255,.10);
  text-align: left;
}

.private-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.private-chat-kicker {
  display: block;
  margin-bottom: 3px;
  color: #ffd36a;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .8px;
}

.private-chat-header h2 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.15;
}

.private-chat-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(0, 255, 117, .12);
  color: #caffdf;
  border: 1px solid rgba(0, 255, 117, .26);
  font-size: 11px;
  font-weight: 850;
}

.private-chat-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00ff75;
  box-shadow: 0 0 10px #00ff75;
}

.private-chat-messages {
  min-height: 92px;
  max-height: 160px;
  overflow-y: auto;
  padding: 10px;
  border-radius: 16px;
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.10);
}

.private-system-message {
  width: fit-content;
  max-width: 92%;
  margin-bottom: 8px;
  padding: 8px 10px;
  border-radius: 13px;
  background: rgba(255, 211, 106, .12);
  color: rgba(255,255,255,.84);
  border: 1px solid rgba(255, 211, 106, .18);
  font-size: 12px;
  line-height: 1.35;
}

.private-user-message {
  width: fit-content;
  max-width: 88%;
  margin: 8px 0 0 auto;
  padding: 9px 11px;
  border-radius: 14px 14px 4px 14px;
  background: linear-gradient(180deg, #ff174d, #b8002e);
  color: #fff;
  font-size: 13px;
  line-height: 1.32;
  box-shadow: 0 10px 22px rgba(255, 23, 77, .22);
  word-break: break-word;
}

.private-chat-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.private-chat-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.42);
  color: #fff;
  border-radius: 999px;
  padding: 12px 13px;
  outline: none;
  font-size: 14px;
}

.private-chat-form input::placeholder {
  color: rgba(255,255,255,.48);
}

.private-chat-form input:focus {
  border-color: rgba(255, 23, 77, .7);
  box-shadow: 0 0 0 4px rgba(255, 23, 77, .16);
}

.private-chat-form button {
  flex: 0 0 auto;
  border: none;
  border-radius: 999px;
  padding: 0 15px;
  background: linear-gradient(180deg, #ffd36a, #c58a00);
  color: #251300;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.private-chat-form button:active {
  transform: scale(.97);
}

.private-chat-note {
  margin: 9px 2px 0;
  color: rgba(255,255,255,.52);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

/* =====================================================
   AJUSTE RESPONSIVO DO UPGRADE / PRIVADO
   ===================================================== */

@media (max-width: 480px) {
  .private-upgrade-box,
  .private-chat-panel {
    max-width: 100%;
    padding: 14px;
    border-radius: 20px;
  }

  .private-chat-header h2 {
    font-size: 17px;
  }

  .private-chat-form {
    gap: 7px;
  }

  .private-chat-form input {
    padding: 11px 12px;
    font-size: 13px;
  }

  .private-chat-form button {
    padding: 0 13px;
    font-size: 12px;
  }
}