.high-tapete-container {
    position: relative;
    width: 100%;
    max-width: 80%;
    aspect-ratio: 1652 / 768;
    overflow: hidden;
    margin: 20px auto;
    border: 3px solid #333;
    border-radius: 12px;
    /* Isola o container do Bootstrap */
    padding: 0 !important;
    box-sizing: border-box !important;
}

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

/* Impede seleção de texto em toda a página */
* {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Impede que qualquer elemento fique com contorno ao ser clicado */
*:focus {
    outline: none !important;
}

/* Isolamento total do wrapper de missões interativas —
   garante que top/left em % dos filhos sejam relativos ao tapete,
   não ao layout Bootstrap */
#missoes-interativas-high {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !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);
}
