body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

button {
  padding: 12px 20px;
  font-size: 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin: 10px;
}

/* ============================
   EMOCIONES EN CUADRÍCULA
============================ */

.emociones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.emocion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease-in-out;
}

.emocion-item:active {
  transform: scale(1.15);
}

.emocion-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* ============================
   BARRA SUPERIOR DE PASOS
============================ */

.barra-pasos {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  background: #111;
  border-bottom: 2px solid #333;
}

.paso-mini {
  width: 60px;
  height: 60px;
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
}

.paso-mini.paso-actual {
  opacity: 1;
  transform: scale(1.2);
  border: 3px solid #fff;
  border-radius: 10px;
}

/* ============================
   LAYOUT DE LA SECUENCIA
============================ */

.layout-secuencia {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start; /* TODO A LA IZQUIERDA */
  gap: 120px; /* MUCHO ESPACIO A LA DERECHA */
  margin-top: 40px;
  width: 100%;
}

/* LADO IZQUIERDO: IMAGEN + BOTONES */
.lado-izquierdo {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* PEGADO A LA IZQUIERDA */
  margin-left: 40px;
}

.img-grande {
  width: 320px;
  height: 320px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* BOTONES DEBAJO DE LA IMAGEN */
.botones-secuencia {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* LADO DERECHO: SOLO EL TEXTO */
.lado-derecho {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 40px;
  max-width: 500px;
}
