/**
 * Portuguese variant choice dialog (pt-BR vs pt-PT)
 * Shown on root page when browser language is generic "pt"
 */

#ls-pt-choice {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#ls-pt-choice.ls-visible {
  display: flex;
}

.ls-pt-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  max-width: 400px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ls-pt-box h2 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #0f172a;
}

.ls-pt-box p {
  margin: 0 0 20px;
  color: #64748b;
  font-size: 14px;
}

.ls-pt-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.ls-pt-btn {
  padding: 12px 24px;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  background: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.ls-pt-btn:hover {
  border-color: #2563eb;
  background: #eff6ff;
}

.ls-pt-btn:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
