html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
}

/* Aplica fundo só após carregamento */
body.loaded {
  background: url('https://bestchoiceclaim.shop/imagens/plano-de-fundo.webp') no-repeat center center/cover;
}
@media (max-width: 480px) {
  body.loaded {
    background-attachment: scroll;
  }
}

.popup {
  max-width: 380px;
  min-height: 620px;
  margin: 40px auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
  overflow: hidden;
  text-align: center;
}

.popup img {
  width: 100%;
  height: auto;
  display: block;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #eee;
  overflow: hidden;
}

.progress {
  width: 100%;
  height: 100%;
  background-color: #e60000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2s ease-in-out;
}

.content {
  padding: 20px;
  color: #333;
}

.headline {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-list {
  list-style: none;
  padding: 0;
  font-weight: bold;
  margin-top: 15px;
}

.feature-list li::before {
  content: "✅ ";
}

.btn {
  display: block;
  width: 90%;
  height: 50px;
  line-height: 50px;
  background-color: #e60000;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  margin: 20px auto;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #cc0000;
}

.disclaimer {
  max-width: 680px;
  margin: 40px auto;
  font-size: 13px;
  color: #555;
  padding: 20px;
  line-height: 1.5;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
}

@media (max-width: 480px) {
  .popup { margin: 20px 10px; width: calc(100% - 20px); }
  .disclaimer { font-size: 12px; padding: 15px; margin: 20px 10px; }
}
