body {
  margin: 0;
  font-family: Tahoma, sans-serif;
  background: linear-gradient(#ffd6f6, #e0c3fc);
}

/* escritorio */
#desktop {
  padding: 20px;
  display: flex;
  gap: 15px;
}

.icon {
  width: 80px;
  text-align: center;
  cursor: pointer;
  border-radius: 10px;
}

.icon:hover {
  background: rgba(255,255,255,0.3);
}

/* 🪟 ventana */
.ventana {
  position: absolute;
  width: 400px;
  height: 300px;
  background: #fff0f6;
  border: 2px solid #ff8ac6;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* barra */
.barra {
  background: linear-gradient(#ff9ed1, #ff4da6);
  color: white;
  padding: 6px;
  display: flex;
  justify-content: space-between;
  cursor: move;
  font-weight: bold;
}

/* contenido */
.contenido {
  flex: 1;
  padding: 5px;
  overflow: auto;
}

/* inputs */
textarea {
  width: 100%;
  height: 100%;
  resize: none;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================= */
/* 🌸 BARRA TIPO XP */
/* ========================= */
#barra {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(#ff9ed1, #ff4da6);
  display: flex;
  align-items: center;
  padding: 0 5px;
  gap: 5px;
}

/* ========================= */
/* 💖 BOTÓN INICIO XP ROSA */
/* ========================= */
#barra button:first-child {
  background: linear-gradient(#ffb3dd, #ff4da6);
  color: white;
  border: 1px solid #cc2f7a;
  border-radius: 20px;
  padding: 5px 18px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: inset 0 1px 0 #ffd6f0, 0 2px 3px rgba(0,0,0,0.3);
  cursor: pointer;
}

/* hover estilo XP */
#barra button:first-child:hover {
  background: linear-gradient(#ffc2e6, #ff66b2);
}

/* click */
#barra button:first-child:active {
  background: linear-gradient(#ff4da6, #ff1a8c);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}

/* botones de ventanas minimizadas */
#barra button {
  background: #ff66b2;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
}

/* ========================= */
/* 📂 MENÚ INICIO */
/* ========================= */
#menu {
  position: fixed;
  bottom: 40px;
  left: 5px;
  width: 180px;
  background: linear-gradient(#ffe6f5, #ffb3dd);
  border: 2px solid #ff4da6;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

#menu div {
  padding: 8px;
  cursor: pointer;
  border-radius: 6px;
}

#menu div:hover {
  background: #ff99cc;
}

/* oculto */
.hidden {
  display: none;
}