/* style.css */
body {
  background: url('vista-wallpaper.jpg') no-repeat center fixed;
  background-size: cover;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Janela estilo Vista */
.window {
  width: 600px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* Barra de título transparente */
.title-bar {
  background: rgba(0, 60, 120, 0.7);
  color: white;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.window-controls button {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  margin-left: 5px;
}

/* Conteúdo principal */
.content {
  padding: 20px;
  color: #333;
}

/* Botão estilo Vista */
.vista-button {
  background: linear-gradient(to bottom, #4ca9ff, #0066cc);
  border: none;
  border-radius: 4px;
  color: white;
  padding: 8px 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vista-button:hover {
  background: linear-gradient(to bottom, #6cb9ff, #0088ff);
}
