:root {
  --laranja: #F57C00;
  --fundo: #111111;
  --texto: #FFFFFF;
  --linha: #2A2A2A;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--fundo);
  color: var(--texto);
  font-family: Arial, Helvetica, sans-serif;
  width: 100vw;
  height: 100vh;
}

.container {
  padding: 40px 60px;
}

.titulo {
  color: var(--laranja);
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 40px;
}

.lista {
  display: grid;
  height: calc(100vh - 180px);
  row-gap: 12px;
  column-gap: 60px;
}

.produto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--linha);
  padding: 0 10px;
}

.nome {
  font-size: clamp(26px, 2.6vh, 44px);
  font-weight: 500;
}

.preco {
  font-size: clamp(40px, 4.5vh, 72px);
  font-weight: 800;
  color: var(--laranja);
  white-space: nowrap;
}

.logo {
  position: absolute;
  top: 30px;
  right: 40px;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.logo img {
  height: 70px;
  width: auto;
}