.high-tapete-container {
  position: relative;
  width: 100%;
  max-width: 80%; /* 🔧 Controla o tamanho visual */
  aspect-ratio: 1652 / 768; /* Proporção exata do tapete High */
  overflow: hidden;
  margin: 20px auto;
  border: 3px solid #333;
  border-radius: 12px;
}

.high-tapete {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

* {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

*:focus {
  outline: none !important;
}

.interface-central-high {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.btn-reset {
  background-color: #e74c3c;
  color: white;
  width: 100%;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-reset:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.high-tapete {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

* {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}


