@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f0f0f0;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #c655e9;
  color: white;
  padding: 20px;
  text-align: center;
}

.ambiente-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.moedas-info {
    position: absolute;
    top: 130px; /* distância a partir do topo */
    left: 20px; /* distância da lateral esquerda */
    font-size: 18px;
}

.quarto {
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  width: 80%;
  max-width: 600px;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.avatar img {
  width: 200px; /* aumenta o tamanho da imagem */
  height: auto;
}

.decoracoes {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
}

.decoracoes img {
  height: 150px;
}

.botao-loja {
  background-color: #c655e9;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.botao-loja:hover {
  background-color: #8414a7;
}

footer {
  background-color: #eee;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #777;
}

.planta-baixo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  height: 100px;
}

/* Inventário */

.botao-inventario {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
}

.inventario {
    position: fixed;
    top: 0;
    right: -300px; /* começa escondido */
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 9;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.inventario.aberto {
    right: 0;
}

.fechar-inventario {
    margin-top: 20px;
    padding: 8px 16px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.dar-comida {
    margin-top: 10px;
    background-color: #c655e9;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.dar-comida:hover {
    background-color: #8414a7;
}

.botao-pomodoro {
    display: inline-block;
    margin: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    color: white;
    background-color: #FF5722; /* laranja avermelhado */
}

.botao-pomodoro:hover {
    background-color: #e64a19;
}

.botao-voltar {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 15px 0 10px 20px;
    background-color: #c655e9;
    color: white;
    text-decoration: none;
    border-radius: 50%; /* deixa redondo */
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.botao-voltar:hover {
    background-color: #d32f2f;
    transform: scale(1.05); /* pequeno efeito de zoom ao passar o mouse */
}
