/* Teléfono */
.telefono {
  position: relative;
  width: 220px;
  height: 440px;
  background: #111;
  border-radius: 30px;
  border: 4px solid #333;
  box-shadow: 0 0 15px rgba(0,0,0,0.8);
  overflow: hidden;
}
.pantalla {
  position: absolute;
  top: 40px;
  left: 10px;
  right: 10px;
  bottom: 60px;
  background: #000;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}
.camara {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  background: #333;
  border-radius: 50%;
}
.altavoz {
  position: absolute;
  top: 10px; left: calc(50% - 35px);
  width: 70px; height: 6px;
  background: #444;
  border-radius: 3px;
}
.boton {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 20px;
  background: #333;
  border-radius: 10px;
}

/* Laptop */
.laptop {
  position: relative;
  width: 260px;
  height: 180px;
  background: #111;
  border: 4px solid #333;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.8);
}
.pantalla-laptop {
  width: 100%;
  height: 100%;
  background: #000;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 20px;
}
.base {
  position: absolute;
  bottom: -40px;
  left: -10px;
  width: calc(100% + 20px);
  height: 40px;
  background: #222;
  border: 4px solid #333;
  border-radius: 0 0 12px 12px;
}

/* Apps (simples con triángulos) */
.app {
  width: 80px; height: 80px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 15px;
  overflow: hidden;
}
.app div { width: 50%; height: 50%; }

/* WhatsApp */
.whatsapp div:nth-child(1) { background: #25d366; clip-path: polygon(0 0, 100% 0, 0 100%); }
.whatsapp div:nth-child(2) { background: #128c7e; clip-path: polygon(100% 0, 100% 100%, 0 100%); }
.whatsapp div:nth-child(3) { background: #075e54; clip-path: polygon(0 0, 100% 100%, 0 100%); }
.whatsapp div:nth-child(4) { background: #34b7f1; clip-path: polygon(0 0, 100% 0, 100% 100%); }

/* Facebook */
.facebook div:nth-child(1) { background: #1877f2; clip-path: polygon(0 0, 100% 0, 0 100%); }
.facebook div:nth-child(2) { background: #145dbf; clip-path: polygon(100% 0, 100% 100%, 0 100%); }
.facebook div:nth-child(3) { background: #3b5998; clip-path: polygon(0 0, 100% 100%, 0 100%); }
.facebook div:nth-child(4) { background: #8b9dc3; clip-path: polygon(0 0, 100% 0, 100% 100%); }

/* Instagram */
.instagram div:nth-child(1) { background: #f58529; clip-path: polygon(0 0, 100% 0, 0 100%); }
.instagram div:nth-child(2) { background: #dd2a7b; clip-path: polygon(100% 0, 100% 100%, 0 100%); }
.instagram div:nth-child(3) { background: #8134af; clip-path: polygon(0 0, 100% 100%, 0 100%); }
.instagram div:nth-child(4) { background: #515bd4; clip-path: polygon(0 0, 100% 0, 100% 100%); }

/* YouTube */
.youtube div:nth-child(1) { background: #ff0000; clip-path: polygon(0 0, 100% 0, 0 100%); }
.youtube div:nth-child(2) { background: #cc0000; clip-path: polygon(100% 0, 100% 100%, 0 100%); }
.youtube div:nth-child(3) { background: #a60000; clip-path: polygon(0 0, 100% 100%, 0 100%); }
.youtube div:nth-child(4) { background: #ff4d4d; clip-path: polygon(0 0, 100% 0, 100% 100%); }


