.contenido-estrello {
  font-family: 'Segoe UI', sans-serif;
  color: #000;
  background-color: #fff;
  padding: 2rem;
}

.contenido-estrello h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.columnas {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.columna {
  flex: 1 1 45%;
  min-width: 300px;
}

.bloque {
  margin-bottom: 2rem;
}

.bloque p {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}

.bloque img {
  float: left;
  width: 160px;
  height: auto;
  margin: 0 1rem 0.5rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Alternar imagen a la derecha en bloques pares */
.columna .bloque:nth-child(even) img {
  float: right;
  margin: 0 0 0.5rem 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .columnas {
    flex-direction: column;
  }

  .bloque img {
    float: none;
    display: block;
    margin: 0 auto 1rem auto;
  }
}